diff --git a/IntelFrameworkPkg/Include/Framework/BootScript.h b/IntelFrameworkPkg/Include/Framework/BootScript.h deleted file mode 100644 index 9a16d722e..000000000 --- a/IntelFrameworkPkg/Include/Framework/BootScript.h +++ /dev/null @@ -1,47 +0,0 @@ -/** @file - This file contains the boot script defintions that are shared between the - Boot Script Executor PPI and the Boot Script Save Protocol. - -Copyright (c) 2009 - 2010, Intel Corporation. All rights reserved.
-This program and the accompanying materials are licensed and made available under -the terms and conditions of the BSD License that accompanies this distribution. -The full text of the license may be found at -http://opensource.org/licenses/bsd-license.php. - -THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, -WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. - -**/ - -#ifndef _BOOT_SCRIPT_H_ -#define _BOOT_SCRIPT_H_ - -#include -/// -/// The framework implementation defines follow opcode that are different from the PI specification: -/// Add FRAMEWORK_ prefix to avoid naming conflict. -/// -/// S3 Boot Script Table identifier. -/// -#define FRAMEWORK_EFI_ACPI_S3_RESUME_SCRIPT_TABLE 0x00 -/// -/// The opcode is used to add a record for memory reads of the memory location and continues when the -/// exit criteria is satisfied, or after a defined duration. -/// -#define FRAMEWORK_EFI_BOOT_SCRIPT_MEM_POLL_OPCODE 0x09 -/// -/// The opcode is used to add a record for dispatching specified arbitrary code into a specified -/// boot script table. -/// -#define FRAMEWORK_EFI_BOOT_SCRIPT_DISPATCH_2_OPCODE 0x0D -/// -/// The opcode indicates the start of the boot script table. -/// -#define FRAMEWORK_EFI_BOOT_SCRIPT_TABLE_OPCODE 0xAA -/// -/// The opcode indicates the end of the boot script table. -/// -#define FRAMEWORK_EFI_BOOT_SCRIPT_TERMINATE_OPCODE 0xFF - - -#endif diff --git a/IntelFrameworkPkg/Include/Framework/DxeCis.h b/IntelFrameworkPkg/Include/Framework/DxeCis.h deleted file mode 100644 index 0f1b737ac..000000000 --- a/IntelFrameworkPkg/Include/Framework/DxeCis.h +++ /dev/null @@ -1,176 +0,0 @@ -/** @file - Include file for definitions in the Intel Platform Innovation Framework for EFI - Driver Execution Environment Core Interface Specification (DXE CIS) Version 0.91. - -Copyright (c) 2007 - 2010, Intel Corporation. All rights reserved.
-This program and the accompanying materials are licensed and made available under -the terms and conditions of the BSD License that accompanies this distribution. -The full text of the license may be found at -http://opensource.org/licenses/bsd-license.php. - -THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, -WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. - -**/ - -#ifndef _DXECIS_H_ -#define _DXECIS_H_ - -#include - -/** - Functions of this type are used with the Framework MP Services Protocol and - the SMM Services Table to execute a procedure on enabled APs. The context - the AP should use durng execution is specified by Buffer. - - @param[in] Buffer The pointer to the procedure's argument. - -**/ -typedef -VOID -(EFIAPI *FRAMEWORK_EFI_AP_PROCEDURE)( - IN VOID *Buffer - ); - -/// -/// The Framework EFI Runtime Services Table as an extension to the EFI 1.10 Runtime Services Table. -/// -typedef struct { - // - // Table header for the Framework EFI Runtime Services Table - // - EFI_TABLE_HEADER Hdr; - // - // Time services - // - EFI_GET_TIME GetTime; - EFI_SET_TIME SetTime; - EFI_GET_WAKEUP_TIME GetWakeupTime; - EFI_SET_WAKEUP_TIME SetWakeupTime; - // - // Virtual memory services - // - EFI_SET_VIRTUAL_ADDRESS_MAP SetVirtualAddressMap; - EFI_CONVERT_POINTER ConvertPointer; - // - // Variable services - // - EFI_GET_VARIABLE GetVariable; - EFI_GET_NEXT_VARIABLE_NAME GetNextVariableName; - EFI_SET_VARIABLE SetVariable; - // - // Misc - // - EFI_GET_NEXT_HIGH_MONO_COUNT GetNextHighMonotonicCount; - EFI_RESET_SYSTEM ResetSystem; - /// - /// A Framework extension to the EFI 1.10 runtime table. - /// It was moved to a protocol to avoid conflict with UEFI 2.0. - /// - EFI_REPORT_STATUS_CODE ReportStatusCode; -} FRAMEWORK_EFI_RUNTIME_SERVICES; - -/// -/// The Framework EFI Boot Services Table. Complies with the DxeCis specification. -/// -typedef struct { - /// - /// The table header for the EFI Boot Services Table. - /// - EFI_TABLE_HEADER Hdr; - - // - // Task Priority Services - // - EFI_RAISE_TPL RaiseTPL; - EFI_RESTORE_TPL RestoreTPL; - - // - // Memory Services - // - EFI_ALLOCATE_PAGES AllocatePages; - EFI_FREE_PAGES FreePages; - EFI_GET_MEMORY_MAP GetMemoryMap; - EFI_ALLOCATE_POOL AllocatePool; - EFI_FREE_POOL FreePool; - - // - // Event & Timer Services - // - EFI_CREATE_EVENT CreateEvent; - EFI_SET_TIMER SetTimer; - EFI_WAIT_FOR_EVENT WaitForEvent; - EFI_SIGNAL_EVENT SignalEvent; - EFI_CLOSE_EVENT CloseEvent; - EFI_CHECK_EVENT CheckEvent; - - // - // Protocol Handler Services - // - EFI_INSTALL_PROTOCOL_INTERFACE InstallProtocolInterface; - EFI_REINSTALL_PROTOCOL_INTERFACE ReinstallProtocolInterface; - EFI_UNINSTALL_PROTOCOL_INTERFACE UninstallProtocolInterface; - EFI_HANDLE_PROTOCOL HandleProtocol; - EFI_HANDLE_PROTOCOL PcHandleProtocol; - EFI_REGISTER_PROTOCOL_NOTIFY RegisterProtocolNotify; - EFI_LOCATE_HANDLE LocateHandle; - EFI_LOCATE_DEVICE_PATH LocateDevicePath; - EFI_INSTALL_CONFIGURATION_TABLE InstallConfigurationTable; - - // - // Image Services - // - EFI_IMAGE_LOAD LoadImage; - EFI_IMAGE_START StartImage; - EFI_EXIT Exit; - EFI_IMAGE_UNLOAD UnloadImage; - EFI_EXIT_BOOT_SERVICES ExitBootServices; - - // - // Miscellaneous Services - // - EFI_GET_NEXT_MONOTONIC_COUNT GetNextMonotonicCount; - EFI_STALL Stall; - EFI_SET_WATCHDOG_TIMER SetWatchdogTimer; - - // - // DriverSupport Services - // - EFI_CONNECT_CONTROLLER ConnectController; - EFI_DISCONNECT_CONTROLLER DisconnectController; - - // - // Open and Close Protocol Services - // - EFI_OPEN_PROTOCOL OpenProtocol; - EFI_CLOSE_PROTOCOL CloseProtocol; - EFI_OPEN_PROTOCOL_INFORMATION OpenProtocolInformation; - - // - // Library Services - // - EFI_PROTOCOLS_PER_HANDLE ProtocolsPerHandle; - EFI_LOCATE_HANDLE_BUFFER LocateHandleBuffer; - EFI_LOCATE_PROTOCOL LocateProtocol; - EFI_INSTALL_MULTIPLE_PROTOCOL_INTERFACES InstallMultipleProtocolInterfaces; - EFI_UNINSTALL_MULTIPLE_PROTOCOL_INTERFACES UninstallMultipleProtocolInterfaces; - - // - // 32-bit CRC Services - // - EFI_CALCULATE_CRC32 CalculateCrc32; - - // - // Miscellaneous Services - // - EFI_COPY_MEM CopyMem; - EFI_SET_MEM SetMem; -} FRAMEWORK_EFI_BOOT_SERVICES; - -#define EFI_EVENT_RUNTIME_CONTEXT 0x20000000 -#define EFI_EVENT_NOTIFY_SIGNAL_ALL 0x00000400 -#define EFI_EVENT_SIGNAL_READY_TO_BOOT 0x00000203 -#define EFI_EVENT_SIGNAL_LEGACY_BOOT 0x00000204 - -#endif - diff --git a/IntelFrameworkPkg/Include/Framework/FirmwareVolumeHeader.h b/IntelFrameworkPkg/Include/Framework/FirmwareVolumeHeader.h deleted file mode 100644 index 7b471f1c7..000000000 --- a/IntelFrameworkPkg/Include/Framework/FirmwareVolumeHeader.h +++ /dev/null @@ -1,85 +0,0 @@ -/** @file - Defines the data structure that is the volume header found at the beginning of - all firmware volumes that are either memory mapped or have an - associated FirmwareVolumeBlock protocol. - -Copyright (c) 2006 - 2010, Intel Corporation. All rights reserved.
-This program and the accompanying materials are licensed and made available under -the terms and conditions of the BSD License that accompanies this distribution. -The full text of the license may be found at -http://opensource.org/licenses/bsd-license.php. - -THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, -WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. - - @par Revision Reference: - These definitions are from the Firmware Volume Block Spec 0.9. - -**/ - -#ifndef __EFI_FIRMWARE_VOLUME_HEADER_H__ -#define __EFI_FIRMWARE_VOLUME_HEADER_H__ - -/// -/// Firmware Volume Block Attributes bit definitions. -///@{ -#define EFI_FVB_READ_DISABLED_CAP 0x00000001 -#define EFI_FVB_READ_ENABLED_CAP 0x00000002 -#define EFI_FVB_READ_STATUS 0x00000004 - -#define EFI_FVB_WRITE_DISABLED_CAP 0x00000008 -#define EFI_FVB_WRITE_ENABLED_CAP 0x00000010 -#define EFI_FVB_WRITE_STATUS 0x00000020 - -#define EFI_FVB_LOCK_CAP 0x00000040 -#define EFI_FVB_LOCK_STATUS 0x00000080 - -#define EFI_FVB_STICKY_WRITE 0x00000200 -#define EFI_FVB_MEMORY_MAPPED 0x00000400 -#define EFI_FVB_ERASE_POLARITY 0x00000800 - -#define EFI_FVB_ALIGNMENT_CAP 0x00008000 -#define EFI_FVB_ALIGNMENT_2 0x00010000 -#define EFI_FVB_ALIGNMENT_4 0x00020000 -#define EFI_FVB_ALIGNMENT_8 0x00040000 -#define EFI_FVB_ALIGNMENT_16 0x00080000 -#define EFI_FVB_ALIGNMENT_32 0x00100000 -#define EFI_FVB_ALIGNMENT_64 0x00200000 -#define EFI_FVB_ALIGNMENT_128 0x00400000 -#define EFI_FVB_ALIGNMENT_256 0x00800000 -#define EFI_FVB_ALIGNMENT_512 0x01000000 -#define EFI_FVB_ALIGNMENT_1K 0x02000000 -#define EFI_FVB_ALIGNMENT_2K 0x04000000 -#define EFI_FVB_ALIGNMENT_4K 0x08000000 -#define EFI_FVB_ALIGNMENT_8K 0x10000000 -#define EFI_FVB_ALIGNMENT_16K 0x20000000 -#define EFI_FVB_ALIGNMENT_32K 0x40000000 -#define EFI_FVB_ALIGNMENT_64K 0x80000000 -///@} - -/// This is a simple macro defined as the set of all FV Block Attributes signifying capabilities. -#define EFI_FVB_CAPABILITIES ( EFI_FVB_READ_DISABLED_CAP | \ - EFI_FVB_READ_ENABLED_CAP | \ - EFI_FVB_WRITE_DISABLED_CAP | \ - EFI_FVB_WRITE_ENABLED_CAP | \ - EFI_FVB_LOCK_CAP \ - ) - -/** A parameterized macro defining a boolean expression that tests the state of a particular bit. - * - * @param FvbAttributes Indicates a test for CLEAR if EFI_FVB_ERASE_POLARITY is 1, else test for SET. - * - * @param TestAttributes The set of bits to test. - * - * @param Bit A value indicating the bit(s) to test. - * If multiple bits are set, the logical OR of their tests is the expression's value. -**/ -#define EFI_TEST_FFS_ATTRIBUTES_BIT( FvbAttributes, TestAttributes, Bit) \ - ((BOOLEAN) \ - ((FvbAttributes & EFI_FVB_ERASE_POLARITY) ? (((~TestAttributes) & Bit) == Bit) : ((TestAttributes & Bit) == Bit)) \ - ) - -/// A simple macro defined as the set of all FV Block Attribute bits that indicate status. -#define EFI_FVB_STATUS (EFI_FVB_READ_STATUS | EFI_FVB_WRITE_STATUS | EFI_FVB_LOCK_STATUS) - -#endif /* __EFI_FIRMWARE_VOLUME_HEADER_H__ */ diff --git a/IntelFrameworkPkg/Include/Framework/FirmwareVolumeImageFormat.h b/IntelFrameworkPkg/Include/Framework/FirmwareVolumeImageFormat.h deleted file mode 100644 index 81a9045e6..000000000 --- a/IntelFrameworkPkg/Include/Framework/FirmwareVolumeImageFormat.h +++ /dev/null @@ -1,38 +0,0 @@ -/** @file - This file defines the data structures that are architecturally defined for file - images loaded via the FirmwareVolume protocol. The Firmware Volume specification - is the basis for these definitions. - -Copyright (c) 2006 - 2010, Intel Corporation. All rights reserved.
-This program and the accompanying materials are licensed and made available under -the terms and conditions of the BSD License that accompanies this distribution. -The full text of the license may be found at -http://opensource.org/licenses/bsd-license.php. - -THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, -WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. - - @par Revision Reference: - These definitions are from the Firmware Volume Spec 0.9. - -**/ - -#ifndef __FIRMWARE_VOLUME_IMAGE_FORMAT_H__ -#define __FIRMWARE_VOLUME_IMAGE_FORMAT_H__ - -// -// Bit values for AuthenticationStatus -// -#define EFI_AGGREGATE_AUTH_STATUS_PLATFORM_OVERRIDE 0x000001 -#define EFI_AGGREGATE_AUTH_STATUS_IMAGE_SIGNED 0x000002 -#define EFI_AGGREGATE_AUTH_STATUS_NOT_TESTED 0x000004 -#define EFI_AGGREGATE_AUTH_STATUS_TEST_FAILED 0x000008 -#define EFI_AGGREGATE_AUTH_STATUS_ALL 0x00000f - -#define EFI_LOCAL_AUTH_STATUS_PLATFORM_OVERRIDE 0x010000 -#define EFI_LOCAL_AUTH_STATUS_IMAGE_SIGNED 0x020000 -#define EFI_LOCAL_AUTH_STATUS_NOT_TESTED 0x040000 -#define EFI_LOCAL_AUTH_STATUS_TEST_FAILED 0x080000 -#define EFI_LOCAL_AUTH_STATUS_ALL 0x0f0000 - -#endif diff --git a/IntelFrameworkPkg/Include/Framework/FrameworkInternalFormRepresentation.h b/IntelFrameworkPkg/Include/Framework/FrameworkInternalFormRepresentation.h deleted file mode 100644 index 61d020ec3..000000000 --- a/IntelFrameworkPkg/Include/Framework/FrameworkInternalFormRepresentation.h +++ /dev/null @@ -1,403 +0,0 @@ -/** @file - This file defines the encoding for the VFR (Visual Form Representation) language. - Framework IFR is primarily consumed by the EFI presentation engine, and produced by EFI - internal application and drivers as well as all add-in card option-ROM drivers - -Copyright (c) 2007 - 2010, Intel Corporation. All rights reserved.
-This program and the accompanying materials are licensed and made available under -the terms and conditions of the BSD License that accompanies this distribution. -The full text of the license may be found at -http://opensource.org/licenses/bsd-license.php. - -THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, -WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. - - @par Revision Reference: - These definitions are from the Framework Specification HII 0.92. - -**/ - -#ifndef __FRAMEWORK_INTERNAL_FORMREPRESENTATION_H__ -#define __FRAMEWORK_INTERNAL_FORMREPRESENTATION_H__ - -typedef UINT16 STRING_REF; - -// -// IFR Op codes -// -#define FRAMEWORK_EFI_IFR_FORM_OP 0x01 -#define FRAMEWORK_EFI_IFR_SUBTITLE_OP 0x02 -#define FRAMEWORK_EFI_IFR_TEXT_OP 0x03 -#define EFI_IFR_GRAPHIC_OP 0x04 -#define FRAMEWORK_EFI_IFR_ONE_OF_OP 0x05 -#define FRAMEWORK_EFI_IFR_CHECKBOX_OP 0x06 -#define FRAMEWORK_EFI_IFR_NUMERIC_OP 0x07 -#define FRAMEWORK_EFI_IFR_PASSWORD_OP 0x08 -#define FRAMEWORK_EFI_IFR_ONE_OF_OPTION_OP 0x09 ///< ONEOF OPTION field. -#define FRAMEWORK_EFI_IFR_SUPPRESS_IF_OP 0x0A -#define EFI_IFR_END_FORM_OP 0x0B -#define EFI_IFR_HIDDEN_OP 0x0C -#define EFI_IFR_END_FORM_SET_OP 0x0D -#define FRAMEWORK_EFI_IFR_FORM_SET_OP 0x0E -#define FRAMEWORK_EFI_IFR_REF_OP 0x0F -#define EFI_IFR_END_ONE_OF_OP 0x10 -#define FRAMEWORK_EFI_IFR_END_OP EFI_IFR_END_ONE_OF_OP -#define FRAMEWORK_EFI_IFR_INCONSISTENT_IF_OP 0x11 -#define FRAMEWORK_EFI_IFR_EQ_ID_VAL_OP 0x12 -#define FRAMEWORK_EFI_IFR_EQ_ID_ID_OP 0x13 -#define FRAMEWORK_EFI_IFR_EQ_ID_LIST_OP 0x14 -#define FRAMEWORK_EFI_IFR_AND_OP 0x15 -#define FRAMEWORK_EFI_IFR_OR_OP 0x16 -#define FRAMEWORK_EFI_IFR_NOT_OP 0x17 -#define EFI_IFR_END_IF_OP 0x18 ///< For endif of inconsistentif, suppressif, grayoutif. -#define EFI_IFR_GRAYOUT_IF_OP 0x19 -#define FRAMEWORK_EFI_IFR_DATE_OP 0x1A -#define FRAMEWORK_EFI_IFR_TIME_OP 0x1B -#define FRAMEWORK_EFI_IFR_STRING_OP 0x1C -#define EFI_IFR_LABEL_OP 0x1D -#define EFI_IFR_SAVE_DEFAULTS_OP 0x1E -#define EFI_IFR_RESTORE_DEFAULTS_OP 0x1F -#define EFI_IFR_BANNER_OP 0x20 -#define EFI_IFR_INVENTORY_OP 0x21 -#define EFI_IFR_EQ_VAR_VAL_OP 0x22 -#define FRAMEWORK_EFI_IFR_ORDERED_LIST_OP 0x23 -#define FRAMEWORK_EFI_IFR_VARSTORE_OP 0x24 -#define EFI_IFR_VARSTORE_SELECT_OP 0x25 -#define EFI_IFR_VARSTORE_SELECT_PAIR_OP 0x26 -#define EFI_IFR_LAST_OPCODE EFI_IFR_VARSTORE_SELECT_PAIR_OP -#define EFI_IFR_OEM_OP 0xFE -#define EFI_IFR_NV_ACCESS_COMMAND 0xFF - -// -// Define values for the flags fields in some VFR opcodes. These are -// bitmasks. -// -#define EFI_IFR_FLAG_DEFAULT 0x01 -#define EFI_IFR_FLAG_MANUFACTURING 0x02 -#define EFI_IFR_FLAG_INTERACTIVE 0x04 -#define EFI_IFR_FLAG_NV_ACCESS 0x08 -#define EFI_IFR_FLAG_RESET_REQUIRED 0x10 -#define EFI_IFR_FLAG_LATE_CHECK 0x20 - -#define EFI_NON_DEVICE_CLASS 0x00 ///< Useful when you do not want something in the Device Manager. -#define EFI_DISK_DEVICE_CLASS 0x01 -#define EFI_VIDEO_DEVICE_CLASS 0x02 -#define EFI_NETWORK_DEVICE_CLASS 0x04 -#define EFI_INPUT_DEVICE_CLASS 0x08 -#define EFI_ON_BOARD_DEVICE_CLASS 0x10 -#define EFI_OTHER_DEVICE_CLASS 0x20 - -#define EFI_SETUP_APPLICATION_SUBCLASS 0x00 -#define EFI_GENERAL_APPLICATION_SUBCLASS 0x01 -#define EFI_FRONT_PAGE_SUBCLASS 0x02 -#define EFI_SINGLE_USE_SUBCLASS 0x03 ///< Used to display a single entity ,and then exit. - -/// -/// Used to flag dynamically created op-codes. This is meaningful to the IFR Library set -/// and the browser because we need to distinguish between compiled NV map data and created data. -/// We do not allow new entries to be created in the NV map dynamically, but we do need -/// to display this information correctly. To dynamically create op-codes and assume that their -/// data will be saved, ensure that the NV starting location they refer to is pre-defined in the -/// NV map. -/// -#define EFI_IFR_FLAG_CREATED 128 - - -#pragma pack(1) -// -// IFR Structure definitions -// -typedef struct { - UINT8 OpCode; - UINT8 Length; -} FRAMEWORK_EFI_IFR_OP_HEADER; - -typedef struct { - FRAMEWORK_EFI_IFR_OP_HEADER Header; - EFI_GUID Guid; - STRING_REF FormSetTitle; - STRING_REF Help; - EFI_PHYSICAL_ADDRESS CallbackHandle; - UINT16 Class; - UINT16 SubClass; - UINT16 NvDataSize; ///< Set once; the size of the NV data as defined in the script. -} FRAMEWORK_EFI_IFR_FORM_SET; - -typedef struct { - FRAMEWORK_EFI_IFR_OP_HEADER Header; - UINT16 FormId; - STRING_REF FormTitle; -} FRAMEWORK_EFI_IFR_FORM; - -typedef struct { - FRAMEWORK_EFI_IFR_OP_HEADER Header; - UINT16 LabelId; -} EFI_IFR_LABEL; - -typedef struct { - FRAMEWORK_EFI_IFR_OP_HEADER Header; - STRING_REF SubTitle; -} FRAMEWORK_EFI_IFR_SUBTITLE; - -typedef struct { - FRAMEWORK_EFI_IFR_OP_HEADER Header; - STRING_REF Help; - STRING_REF Text; - STRING_REF TextTwo; - UINT8 Flags; ///< This is included solely for purposes of interactive/dynamic support. - UINT16 Key; ///< The value to be passed to the caller to identify this particular op-code. -} FRAMEWORK_EFI_IFR_TEXT; - -// -// goto -// -typedef struct { - FRAMEWORK_EFI_IFR_OP_HEADER Header; - UINT16 FormId; - STRING_REF Prompt; - STRING_REF Help; ///< The string Token for the context-help. - UINT8 Flags; ///< This is included solely for purposes of interactive/dynamic support. - UINT16 Key; ///< The value to be passed to the caller to identify this particular op-code. -} FRAMEWORK_EFI_IFR_REF; - -typedef struct { - FRAMEWORK_EFI_IFR_OP_HEADER Header; -} EFI_IFR_END_FORM; - -typedef struct { - FRAMEWORK_EFI_IFR_OP_HEADER Header; -} EFI_IFR_END_FORM_SET; - -// -// Also notice that the IFR_ONE_OF and IFR_CHECK_BOX are identical in structure...... -// code assumes this to be true, if this ever changes we need to revisit the InitializeTagStructures code -// -typedef struct { - FRAMEWORK_EFI_IFR_OP_HEADER Header; - UINT16 QuestionId; ///< The ID designating what the question is about... - UINT8 Width; ///< The Size of the Data being saved. - STRING_REF Prompt; ///< The String Token for the Prompt. - STRING_REF Help; ///< The string Token for the context-help. -} FRAMEWORK_EFI_IFR_ONE_OF; - -typedef struct { - FRAMEWORK_EFI_IFR_OP_HEADER Header; - UINT16 QuestionId; ///< The offset in NV for storage of the data. - UINT8 MaxEntries; ///< The maximum number of options in the ordered list (=size of NVStore). - STRING_REF Prompt; ///< The string token for the prompt. - STRING_REF Help; ///< The string token for the context-help. -} FRAMEWORK_EFI_IFR_ORDERED_LIST; - -typedef struct { - FRAMEWORK_EFI_IFR_OP_HEADER Header; - UINT16 QuestionId; ///< The ID designating what the question is about... - UINT8 Width; ///< The Size of the Data being saved. - STRING_REF Prompt; ///< The String Token for the Prompt. - STRING_REF Help; ///< The string Token for the context-help. - UINT8 Flags; ///< If non-zero, it means that it is the default option. - UINT16 Key; ///< Value to be passed to caller to identify this particular op-code. -} FRAMEWORK_EFI_IFR_CHECKBOX, EFI_IFR_CHECK_BOX; - -typedef struct { - FRAMEWORK_EFI_IFR_OP_HEADER Header; - STRING_REF Option; ///< The string token describing the option. - UINT16 Value; ///< The value associated with this option that is stored in the NVRAM. - UINT8 Flags; ///< If non-zero, it means that it is the default option. - UINT16 Key; ///< Value to be passed to caller to identify this particular op-code. -} FRAMEWORK_EFI_IFR_ONE_OF_OPTION; - -typedef struct { - FRAMEWORK_EFI_IFR_OP_HEADER Header; - UINT16 QuestionId; ///< The ID designating what the question is about... - UINT8 Width; ///< The Size of the Data being saved. - STRING_REF Prompt; ///< The String Token for the Prompt. - STRING_REF Help; ///< The string Token for the context-help. - UINT8 Flags; ///< This is included solely for purposes of interactive/dynamic support. - UINT16 Key; ///< The value to be passed to caller to identify this particular op-code. - UINT16 Minimum; - UINT16 Maximum; - UINT16 Step; ///< Zero means manual input. Otherwise, arrow selection is called for. - UINT16 Default; -} FRAMEWORK_EFI_IFR_NUMERIC; - -// -// There is an interesting twist with regards to Time and Date. This is one of the few items which can accept input -// from a user, and may or may not need to use storage in the NVRAM space. The decided method for determining -// if NVRAM space will be used (only for a TimeOp or DateOp) is: If .QuestionId == 0 && .Width == 0 (normally an -// impossibility) then use system resources to store the data away and not NV resources. In other words, the setup -// engine will call gRT->SetTime, and gRT->SetDate for the saving of data, and the values displayed will be from the -// gRT->GetXXXX series of calls. -// -typedef struct { - FRAMEWORK_EFI_IFR_NUMERIC Hour; - FRAMEWORK_EFI_IFR_NUMERIC Minute; - FRAMEWORK_EFI_IFR_NUMERIC Second; -} FRAMEWORK_EFI_IFR_TIME; - -typedef struct { - FRAMEWORK_EFI_IFR_NUMERIC Year; - FRAMEWORK_EFI_IFR_NUMERIC Month; - FRAMEWORK_EFI_IFR_NUMERIC Day; -} FRAMEWORK_EFI_IFR_DATE; - -typedef struct { - FRAMEWORK_EFI_IFR_OP_HEADER Header; - UINT16 QuestionId;///< The ID designating what the question is about... - UINT8 Width; ///< The Size of the Data being saved. - STRING_REF Prompt; ///< The String Token for the Prompt. - STRING_REF Help; ///< The string Token for the context-help. - UINT8 Flags; ///< This is included solely for purposes of interactive/dynamic support. - UINT16 Key; ///< The value to be passed to caller to identify this particular op-code. - UINT8 MinSize; ///< Minimum allowable sized password. - UINT8 MaxSize; ///< Maximum allowable sized password. - UINT16 Encoding; -} FRAMEWORK_EFI_IFR_PASSWORD; - -typedef struct { - FRAMEWORK_EFI_IFR_OP_HEADER Header; - UINT16 QuestionId; ///< The ID designating what the question is about... - UINT8 Width; ///< The Size of the Data being saved. - STRING_REF Prompt; ///< The String Token for the Prompt. - STRING_REF Help; ///< The string Token for the context-help. - UINT8 Flags; ///< This is included solely for purposes of interactive/dynamic support. - UINT16 Key; ///< The value to be passed to caller to identify this particular op-code. - UINT8 MinSize; ///< Minimum allowable sized password. - UINT8 MaxSize; ///< Maximum allowable sized password. -} FRAMEWORK_EFI_IFR_STRING; - -typedef struct { - FRAMEWORK_EFI_IFR_OP_HEADER Header; -} EFI_IFR_END_ONE_OF; - -typedef struct { - FRAMEWORK_EFI_IFR_OP_HEADER Header; - UINT16 Value; - UINT16 Key; -} EFI_IFR_HIDDEN; - -/// -/// Inconsistent with specification here: -/// The following defintion may not comply with Framework Specification HII 0.92. To -/// keep the inconsistant is for implementation needed. -///@{ -typedef struct { - FRAMEWORK_EFI_IFR_OP_HEADER Header; - UINT8 Flags; -} EFI_IFR_SUPPRESS; - -typedef struct { - FRAMEWORK_EFI_IFR_OP_HEADER Header; - UINT8 Flags; -} EFI_IFR_GRAY_OUT; - -typedef struct { - FRAMEWORK_EFI_IFR_OP_HEADER Header; - STRING_REF Popup; - UINT8 Flags; -} EFI_IFR_INCONSISTENT; - -typedef struct { - FRAMEWORK_EFI_IFR_OP_HEADER Header; - UINT16 QuestionId; ///< The offset into variable storage. - UINT8 Width; ///< The size of variable storage. - UINT16 Value; ///< The value to compare against. -} FRAMEWORK_EFI_IFR_EQ_ID_VAL; - -typedef struct { - FRAMEWORK_EFI_IFR_OP_HEADER Header; - UINT16 QuestionId; ///< The offset into variable storage. - UINT8 Width; ///< The size of variable storage. - UINT16 ListLength; - UINT16 ValueList[1]; -} FRAMEWORK_EFI_IFR_EQ_ID_LIST; - -typedef struct { - FRAMEWORK_EFI_IFR_OP_HEADER Header; - UINT16 QuestionId1; ///< The offset into variable storage for first value to compare. - UINT8 Width; ///< The size of variable storage (must be same for both). - UINT16 QuestionId2; ///< The offset into variable storage for second value to compare. -} FRAMEWORK_EFI_IFR_EQ_ID_ID; - -typedef struct { - FRAMEWORK_EFI_IFR_OP_HEADER Header; - UINT16 VariableId; ///< The offset into variable storage. - UINT16 Value; ///< The value to compare against. -} EFI_IFR_EQ_VAR_VAL; -///@} - -typedef struct { - FRAMEWORK_EFI_IFR_OP_HEADER Header; -} FRAMEWORK_EFI_IFR_AND; - -typedef struct { - FRAMEWORK_EFI_IFR_OP_HEADER Header; -} FRAMEWORK_EFI_IFR_OR; - -typedef struct { - FRAMEWORK_EFI_IFR_OP_HEADER Header; -} FRAMEWORK_EFI_IFR_NOT; - -typedef struct { - FRAMEWORK_EFI_IFR_OP_HEADER Header; -} EFI_IFR_END_EXPR, EFI_IFR_END_IF; - -typedef struct { - FRAMEWORK_EFI_IFR_OP_HEADER Header; - UINT16 FormId; - STRING_REF Prompt; - STRING_REF Help; - UINT8 Flags; - UINT16 Key; -} EFI_IFR_SAVE_DEFAULTS; - -typedef struct { - FRAMEWORK_EFI_IFR_OP_HEADER Header; - STRING_REF Help; - STRING_REF Text; - STRING_REF TextTwo; ///< Optional text. -} EFI_IFR_INVENTORY; - -typedef struct { - FRAMEWORK_EFI_IFR_OP_HEADER Header; - EFI_GUID Guid; ///< GUID for the variable. - UINT16 VarId; ///< The variable store ID, as referenced elsewhere in the form. - UINT16 Size; ///< The size of the variable storage. -} FRAMEWORK_EFI_IFR_VARSTORE; - -typedef struct { - FRAMEWORK_EFI_IFR_OP_HEADER Header; - UINT16 VarId; ///< The variable store ID, as referenced elsewhere in the form. -} EFI_IFR_VARSTORE_SELECT; - -/// -/// Used for the ideqid VFR statement where two variable stores may be referenced in the -/// same VFR statement. -/// A browser should treat this as an FRAMEWORK_EFI_IFR_VARSTORE_SELECT statement and assume that all following -/// IFR opcodes use the VarId as defined here. -/// -typedef struct { - FRAMEWORK_EFI_IFR_OP_HEADER Header; - UINT16 VarId; ///< The variable store ID, as referenced elsewhere in the form. - UINT16 SecondaryVarId; ///< The variable store ID, as referenced elsewhere in the form. -} EFI_IFR_VARSTORE_SELECT_PAIR; - -/// -/// Save defaults and restore defaults have same structure. -/// -#define EFI_IFR_RESTORE_DEFAULTS EFI_IFR_SAVE_DEFAULTS - -typedef struct { - FRAMEWORK_EFI_IFR_OP_HEADER Header; - STRING_REF Title; ///< The string token for the banner title. - UINT16 LineNumber; ///< 1-based line number. - UINT8 Alignment; ///< Left, center, or right-aligned. -} EFI_IFR_BANNER; - -#define EFI_IFR_BANNER_ALIGN_LEFT 0 -#define EFI_IFR_BANNER_ALIGN_CENTER 1 -#define EFI_IFR_BANNER_ALIGN_RIGHT 2 -#define EFI_IFR_BANNER_TIMEOUT 0xFF - -#pragma pack() - -#endif diff --git a/IntelFrameworkPkg/Include/Framework/Hob.h b/IntelFrameworkPkg/Include/Framework/Hob.h deleted file mode 100644 index 070a23d19..000000000 --- a/IntelFrameworkPkg/Include/Framework/Hob.h +++ /dev/null @@ -1,34 +0,0 @@ -/** @file - This file defines the data structures per HOB specification v0.9. - -Copyright (c) 2007 - 2010, Intel Corporation. All rights reserved.
-This program and the accompanying materials are licensed and made available under -the terms and conditions of the BSD License that accompanies this distribution. -The full text of the license may be found at -http://opensource.org/licenses/bsd-license.php. - -THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, -WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. - - @par Revision Reference: - These definitions are from the HOB Spec 0.9 that were not adopted by the PI specifications. - -**/ - -#ifndef _HOB_H_ -#define _HOB_H_ - -/// -/// Capsule volume HOB -- identical to a firmware volume. -/// This macro is defined to comply with the hob Framework Spec. And the marco was -/// retired in the PI1.0 specification. -/// -#define EFI_HOB_TYPE_CV 0x0008 - -typedef struct { - EFI_HOB_GENERIC_HEADER Header; - EFI_PHYSICAL_ADDRESS BaseAddress; - UINT64 Length; -} EFI_HOB_CAPSULE_VOLUME; - -#endif diff --git a/IntelFrameworkPkg/Include/Framework/PeiCis.h b/IntelFrameworkPkg/Include/Framework/PeiCis.h deleted file mode 100644 index d823339ee..000000000 --- a/IntelFrameworkPkg/Include/Framework/PeiCis.h +++ /dev/null @@ -1,211 +0,0 @@ -/** @file - The Include file for definitions in the Intel Platform Innovation Framework for EFI - Pre-EFI Initialization Core Interface Specification (PEI CIS) Version 0.91. - -Copyright (c) 2006 - 2010, Intel Corporation. All rights reserved.
-This program and the accompanying materials are licensed and made available under -the terms and conditions of the BSD License that accompanies this distribution. -The full text of the license may be found at -http://opensource.org/licenses/bsd-license.php. - -THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, -WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. - -**/ - -#ifndef __PEICIS_H__ -#define __PEICIS_H__ - -#include -// -// Framework PEI Specification Revision information -// -#define FRAMEWORK_PEI_SPECIFICATION_MAJOR_REVISION 0 -#define FRAMEWORK_PEI_SPECIFICATION_MINOR_REVISION 91 - - -// -// PEI services signature and Revision defined in Framework PEI spec -// -#define FRAMEWORK_PEI_SERVICES_SIGNATURE 0x5652455320494550ULL -#define FRAMEWORK_PEI_SERVICES_REVISION ((FRAMEWORK_PEI_SPECIFICATION_MAJOR_REVISION<<16) | (FRAMEWORK_PEI_SPECIFICATION_MINOR_REVISION)) - - - -typedef struct _FRAMEWORK_EFI_PEI_SERVICES FRAMEWORK_EFI_PEI_SERVICES; - -/** - The PEI Dispatcher will invoke each PEIM one time. During this pass, the PEI - Dispatcher will pass control to the PEIM at the AddressOfEntryPoint in the PE Header. - - @param FfsHeader The pointer to the FFS file header. - @param PeiServices Describes the list of possible PEI Services. - - @return Status code - -**/ -typedef -EFI_STATUS -(EFIAPI *EFI_PEIM_ENTRY_POINT)( - IN EFI_FFS_FILE_HEADER *FfsHeader, - IN EFI_PEI_SERVICES **PeiServices - ); - -/** - This service abstracts the capability of the PEI - Foundation to discover instances of firmware volumes in the system. - Given the input file pointer, this service searches for the next - matching file in the Firmware File System (FFS) volume. - - @param PeiServices An indirect pointer to the EFI_PEI_SERVICES table published by the PEI Foundation. - @param Instance This instance of the firmware volume to find. The value 0 is the Boot Firmware Volume (BFV). - @param FwVolHeader The pointer to the firmware volume header of the volume to return. - - @retval EFI_SUCCESS The volume was found. - @retval EFI_NOT_FOUND The volume was not found. - @retval EFI_INVALID_PARAMETER FwVolHeader is NULL - -**/ -typedef -EFI_STATUS -(EFIAPI *EFI_PEI_FFS_FIND_NEXT_VOLUME)( - IN FRAMEWORK_EFI_PEI_SERVICES **PeiServices, - IN UINTN Instance, - IN OUT EFI_FIRMWARE_VOLUME_HEADER **FwVolHeader - ); - -/** - This service abstracts the capability of the PEI - Foundation to discover instances of firmware files in the system. - Given the input file pointer, this service searches for the next matching - file in the Firmware File System (FFS) volume. - - @param PeiServices An indirect pointer to the EFI_PEI_SERVICES table published by the PEI Foundation. - @param SearchType A filter to find files only of this type. - @param FwVolHeader The pointer to the firmware volume header of the volume to search. This parameter - must point to a valid FFS volume. - @param FileHeader The pointer to the current file from which to begin searching. Upon return this pointer will be - updated to reflect the file found. - - @retval EFI_SUCCESS The file was found. - @retval EFI_NOT_FOUND The file was not found. - @retval EFI_NOT_FOUND The header checksum was not zero. - -**/ -typedef -EFI_STATUS -(EFIAPI *EFI_PEI_FFS_FIND_NEXT_FILE)( - IN FRAMEWORK_EFI_PEI_SERVICES **PeiServices, - IN EFI_FV_FILETYPE SearchType, - IN EFI_FIRMWARE_VOLUME_HEADER *FwVolHeader, - IN OUT EFI_FFS_FILE_HEADER **FileHeader - ); - -/** - Given the input file pointer, this service searches for the next - matching file in the Firmware File System (FFS) volume. - - @param PeiServices An indirect pointer to the EFI_PEI_SERVICES table published by the PEI Foundation. - @param SectionType The value of the section type to find. - @param FfsFileHeader A pointer to the file header that contains the set of sections to be searched. - @param SectionData A pointer to the discovered section, if successful. - - @retval EFI_SUCCESS The section was found. - @retval EFI_NOT_FOUND The section was not found. - -**/ -typedef -EFI_STATUS -(EFIAPI *EFI_PEI_FFS_FIND_SECTION_DATA)( - IN FRAMEWORK_EFI_PEI_SERVICES **PeiServices, - IN EFI_SECTION_TYPE SectionType, - IN EFI_FFS_FILE_HEADER *FfsFileHeader, - IN OUT VOID **SectionData - ); - -/// -/// FRAMEWORK_EFI_PEI_SERVICES is a collection of functions whose implementation is provided by the PEI -/// Foundation. The table may be located in the temporary or permanent memory, depending upon the capabilities -/// and phase of execution of PEI. -/// -/// These services fall into various classes, including the following: -/// - Managing the boot mode. -/// - Allocating both early and permanent memory. -/// - Supporting the Firmware File System (FFS). -/// - Abstracting the PPI database abstraction. -/// - Creating Hand-Off Blocks (HOBs). -/// -struct _FRAMEWORK_EFI_PEI_SERVICES { - EFI_TABLE_HEADER Hdr; - // - // PPI Functions - // - EFI_PEI_INSTALL_PPI InstallPpi; - EFI_PEI_REINSTALL_PPI ReInstallPpi; - EFI_PEI_LOCATE_PPI LocatePpi; - EFI_PEI_NOTIFY_PPI NotifyPpi; - // - // Boot Mode Functions - // - EFI_PEI_GET_BOOT_MODE GetBootMode; - EFI_PEI_SET_BOOT_MODE SetBootMode; - // - // HOB Functions - // - EFI_PEI_GET_HOB_LIST GetHobList; - EFI_PEI_CREATE_HOB CreateHob; - // - // Firmware Volume Functions - // - EFI_PEI_FFS_FIND_NEXT_VOLUME FfsFindNextVolume; - EFI_PEI_FFS_FIND_NEXT_FILE FfsFindNextFile; - EFI_PEI_FFS_FIND_SECTION_DATA FfsFindSectionData; - // - // PEI Memory Functions - // - EFI_PEI_INSTALL_PEI_MEMORY InstallPeiMemory; - EFI_PEI_ALLOCATE_PAGES AllocatePages; - EFI_PEI_ALLOCATE_POOL AllocatePool; - EFI_PEI_COPY_MEM CopyMem; - EFI_PEI_SET_MEM SetMem; - // - // (the following interfaces are installed by publishing PEIM) - // Status Code - // - EFI_PEI_REPORT_STATUS_CODE ReportStatusCode; - // - // Reset - // - EFI_PEI_RESET_SYSTEM ResetSystem; - /// - /// Inconsistent with specification here: - /// In Framework Spec, PeiCis0.91, CpuIo and PciCfg are NOT pointers. - /// - - // - // I/O Abstractions - // - EFI_PEI_CPU_IO_PPI *CpuIo; - EFI_PEI_PCI_CFG_PPI *PciCfg; -}; -/// -/// Enumeration of reset types defined in the Framework Specification PeiCis. -/// -typedef enum { - /// - /// Used to induce a system-wide reset. This sets all circuitry within the - /// system to its initial state. This type of reset is asynchronous to system - /// operation and operates withgout regard to cycle boundaries. EfiColdReset - /// is tantamount to a system power cycle. - /// - EfiPeiResetCold, - /// - /// Used to induce a system-wide initialization. The processors are set to their - /// initial state, and pending cycles are not corrupted. If the system does - /// not support this reset type, then an EfiResetCold must be performed. - /// - EfiPeiResetWarm, -} EFI_PEI_RESET_TYPE; - -#endif - diff --git a/IntelFrameworkPkg/Include/Framework/SmmCis.h b/IntelFrameworkPkg/Include/Framework/SmmCis.h deleted file mode 100644 index 7aefd5b41..000000000 --- a/IntelFrameworkPkg/Include/Framework/SmmCis.h +++ /dev/null @@ -1,557 +0,0 @@ -/** @file - Include file for definitions in the Intel Platform Innovation Framework for EFI - System Management Mode Core Interface Specification (SMM CIS) version 0.91. - -Copyright (c) 2007 - 2010, Intel Corporation. All rights reserved.
-This program and the accompanying materials are licensed and made available under -the terms and conditions of the BSD License that accompanies this distribution. -The full text of the license may be found at -http://opensource.org/licenses/bsd-license.php. - -THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, -WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. - -**/ - -#ifndef _SMM_CIS_H_ -#define _SMM_CIS_H_ - -// -// Share some common definitions with PI SMM -// -#include -#include - -typedef struct _EFI_SMM_SYSTEM_TABLE EFI_SMM_SYSTEM_TABLE; - -// -// SMM Base specification constant and types -// -#define EFI_SMM_SYSTEM_TABLE_REVISION (0 << 16) | (0x09) - -/** - Allocates pool memory from SMRAM for IA-32, or runtime memory for - the Itanium processor family. - - @param PoolType The type of pool to allocate. The only supported type - is EfiRuntimeServicesData. - @param Size The number of bytes to allocate from the pool. - @param Buffer A pointer to a pointer to the allocated buffer if the - call succeeds. Otherwise, undefined. - - @retval EFI_SUCCESS The requested number of bytes was allocated. - @retval EFI_OUT_OF_RESOURCES The pool requested could not be allocated. - @retval EFI_UNSUPPORTED In runtime. - @note Inconsistent with specification here: - In Framework Spec, this definition is named EFI_SMM_ALLOCATE_POOL. - To avoid a naming conflict, the definition is renamed. -**/ -typedef -EFI_STATUS -(EFIAPI *EFI_SMMCORE_ALLOCATE_POOL)( - IN EFI_MEMORY_TYPE PoolType, - IN UINTN Size, - OUT VOID **Buffer - ); - -/** - Returns pool memory to the system. - - @param Buffer The pointer to the buffer to free. - - @retval EFI_SUCCESS The memory was returned to the system. - @retval EFI_INVALID_PARAMETER Buffer was invalid. - @retval EFI_UNSUPPORTED In runtime. - @note Inconsistent with specification here: - In Framework Spec, this definition is named EFI_SMM_FREE_POOL. - To avoid a naming conflict, the definition is renamed. -**/ -typedef -EFI_STATUS -(EFIAPI *EFI_SMMCORE_FREE_POOL)( - IN VOID *Buffer - ); - -/** - Allocates memory pages from the system. - - @param Type The type of allocation to perform. - @param MemoryType The only supported type is EfiRuntimeServicesData. - @param NumberofPages The number of contiguous 4 KB pages to allocate. - @param Memory Pointer to a physical address. On input, the way in which - the address is used depends on the value of Type. On output, the address - is set to the base of the page range that was allocated. - - @retval EFI_SUCCESS The requested pages were allocated. - @retval EFI_OUT_OF_RESOURCES The pages requested could not be allocated. - @retval EFI_NOT_FOUND The requested pages could not be found. - @retval EFI_INVALID_PARAMETER Type is not AllocateAnyPages or AllocateMaxAddress - or AllocateAddress. Or, MemoryType is in the range EfiMaxMemoryType..0x7FFFFFFF. - @note Inconsistent with specification here: - In the Framework Spec, this definition is named EFI_SMM_ALLOCATE_PAGES. - To avoid a naming conflict, the definition here is renamed. -**/ -typedef -EFI_STATUS -(EFIAPI *EFI_SMMCORE_ALLOCATE_PAGES)( - IN EFI_ALLOCATE_TYPE Type, - IN EFI_MEMORY_TYPE MemoryType, - IN UINTN NumberOfPages, - OUT EFI_PHYSICAL_ADDRESS *Memory - ); - -/** - Frees memory pages for the system. - - @param Memory The base physical address of the pages to be freed. - @param NumberOfPages The number of contiguous 4 KB pages to free. - - @retval EFI_SUCCESS The requested memory pages were freed. - @retval EFI_INVALID_PARAMETER Memory is not a page-aligned address or NumberOfPages is invalid. - @retval EFI_NOT_FOUND The requested memory pages were not allocated with SmmAllocatePages(). - - @note Inconsistent with specification here: - In the Framework Spec, this definition is named EFI_SMM_FREE_PAGES. - To avoid a naming conflict, the definition here is renamed. -**/ -typedef -EFI_STATUS -(EFIAPI *EFI_SMMCORE_FREE_PAGES)( - IN EFI_PHYSICAL_ADDRESS Memory, - IN UINTN NumberOfPages - ); - -/// -/// The processor save-state information for IA-32 processors. This information is important in that the -/// SMM drivers may need to ascertain the state of the processor before invoking the SMI. -/// -typedef struct { - /// - /// Reserved for future processors. As such, software should not attempt to interpret or - /// write to this region. - /// - UINT8 Reserved1[248]; - /// - /// The location of the processor SMBASE, which is the location where the processor - /// will pass control upon receipt of an SMI. - /// - UINT32 SMBASE; - /// - /// The revision of the SMM save state. This value is set by the processor. - /// - UINT32 SMMRevId; - /// - /// The value of the I/O restart field. Allows for restarting an in-process I/O instruction. - /// - UINT16 IORestart; - /// - /// Describes behavior that should be commenced in response to a halt instruction. - /// - UINT16 AutoHALTRestart; - /// - /// Reserved for future processors. As such, software should not attempt to interpret or - /// write to this region. - /// - UINT8 Reserved2[164]; - - // - // Registers in IA-32 processors. - // - UINT32 ES; - UINT32 CS; - UINT32 SS; - UINT32 DS; - UINT32 FS; - UINT32 GS; - UINT32 LDTBase; - UINT32 TR; - UINT32 DR7; - UINT32 DR6; - UINT32 EAX; - UINT32 ECX; - UINT32 EDX; - UINT32 EBX; - UINT32 ESP; - UINT32 EBP; - UINT32 ESI; - UINT32 EDI; - UINT32 EIP; - UINT32 EFLAGS; - UINT32 CR3; - UINT32 CR0; -} EFI_SMI_CPU_SAVE_STATE; - -/// -/// The processor save-state information for the Itanium processor family. This information is -/// important in that the SMM drivers may need to ascertain the state of the processor before invoking -/// the PMI. This structure is mandatory and must be 512 byte aligned. -/// -typedef struct { - UINT64 reserved; - UINT64 r1; - UINT64 r2; - UINT64 r3; - UINT64 r4; - UINT64 r5; - UINT64 r6; - UINT64 r7; - UINT64 r8; - UINT64 r9; - UINT64 r10; - UINT64 r11; - UINT64 r12; - UINT64 r13; - UINT64 r14; - UINT64 r15; - UINT64 r16; - UINT64 r17; - UINT64 r18; - UINT64 r19; - UINT64 r20; - UINT64 r21; - UINT64 r22; - UINT64 r23; - UINT64 r24; - UINT64 r25; - UINT64 r26; - UINT64 r27; - UINT64 r28; - UINT64 r29; - UINT64 r30; - UINT64 r31; - - UINT64 pr; - - UINT64 b0; - UINT64 b1; - UINT64 b2; - UINT64 b3; - UINT64 b4; - UINT64 b5; - UINT64 b6; - UINT64 b7; - - // application registers - UINT64 ar_rsc; - UINT64 ar_bsp; - UINT64 ar_bspstore; - UINT64 ar_rnat; - - UINT64 ar_fcr; - - UINT64 ar_eflag; - UINT64 ar_csd; - UINT64 ar_ssd; - UINT64 ar_cflg; - UINT64 ar_fsr; - UINT64 ar_fir; - UINT64 ar_fdr; - - UINT64 ar_ccv; - - UINT64 ar_unat; - - UINT64 ar_fpsr; - - UINT64 ar_pfs; - UINT64 ar_lc; - UINT64 ar_ec; - - // control registers - UINT64 cr_dcr; - UINT64 cr_itm; - UINT64 cr_iva; - UINT64 cr_pta; - UINT64 cr_ipsr; - UINT64 cr_isr; - UINT64 cr_iip; - UINT64 cr_ifa; - UINT64 cr_itir; - UINT64 cr_iipa; - UINT64 cr_ifs; - UINT64 cr_iim; - UINT64 cr_iha; - - // debug registers - UINT64 dbr0; - UINT64 dbr1; - UINT64 dbr2; - UINT64 dbr3; - UINT64 dbr4; - UINT64 dbr5; - UINT64 dbr6; - UINT64 dbr7; - - UINT64 ibr0; - UINT64 ibr1; - UINT64 ibr2; - UINT64 ibr3; - UINT64 ibr4; - UINT64 ibr5; - UINT64 ibr6; - UINT64 ibr7; - - // virtual registers - UINT64 int_nat; // nat bits for R1-R31 - -} EFI_PMI_SYSTEM_CONTEXT; - -/// -/// The processor save-state information for IA-32 and Itanium processors. This information is -/// important in that the SMM drivers may need to ascertain the state of the processor before invoking -/// the SMI or PMI. -/// -typedef union { - /// - /// The processor save-state information for IA-32 processors. - /// - EFI_SMI_CPU_SAVE_STATE Ia32SaveState; - /// - /// Note: Inconsistency with the Framework SMM CIS spec - Itanium save state not included. - /// - /// The processor save-state information for Itanium processors. - /// - /// EFI_PMI_SYSTEM_CONTEXT ItaniumSaveState; -} EFI_SMM_CPU_SAVE_STATE; - -/// -/// The optional floating point save-state information for IA-32 processors. If the optional floating -/// point save is indicated for any handler, the following data structure must be preserved. -/// -typedef struct { - UINT16 Fcw; - UINT16 Fsw; - UINT16 Ftw; - UINT16 Opcode; - UINT32 Eip; - UINT16 Cs; - UINT16 Rsvd1; - UINT32 DataOffset; - UINT16 Ds; - UINT8 Rsvd2[10]; - UINT8 St0Mm0[10], Rsvd3[6]; - UINT8 St0Mm1[10], Rsvd4[6]; - UINT8 St0Mm2[10], Rsvd5[6]; - UINT8 St0Mm3[10], Rsvd6[6]; - UINT8 St0Mm4[10], Rsvd7[6]; - UINT8 St0Mm5[10], Rsvd8[6]; - UINT8 St0Mm6[10], Rsvd9[6]; - UINT8 St0Mm7[10], Rsvd10[6]; - UINT8 Rsvd11[22*16]; -} EFI_SMI_OPTIONAL_FPSAVE_STATE; - -/// -/// The optional floating point save-state information for the Itanium processor family. If the optional -/// floating point save is indicated for any handler, then this data structure must be preserved. -/// -typedef struct { - UINT64 f2[2]; - UINT64 f3[2]; - UINT64 f4[2]; - UINT64 f5[2]; - UINT64 f6[2]; - UINT64 f7[2]; - UINT64 f8[2]; - UINT64 f9[2]; - UINT64 f10[2]; - UINT64 f11[2]; - UINT64 f12[2]; - UINT64 f13[2]; - UINT64 f14[2]; - UINT64 f15[2]; - UINT64 f16[2]; - UINT64 f17[2]; - UINT64 f18[2]; - UINT64 f19[2]; - UINT64 f20[2]; - UINT64 f21[2]; - UINT64 f22[2]; - UINT64 f23[2]; - UINT64 f24[2]; - UINT64 f25[2]; - UINT64 f26[2]; - UINT64 f27[2]; - UINT64 f28[2]; - UINT64 f29[2]; - UINT64 f30[2]; - UINT64 f31[2]; -} EFI_PMI_OPTIONAL_FLOATING_POINT_CONTEXT; - -/// -/// The processor save-state information for IA-32 and Itanium processors. If the optional floating -/// point save is indicated for any handler, then this data structure must be preserved. -/// -typedef union { - /// - /// The optional floating point save-state information for IA-32 processors. - /// - EFI_SMI_OPTIONAL_FPSAVE_STATE Ia32FpSave; - /// - /// The optional floating point save-state information for Itanium processors. - /// - EFI_PMI_OPTIONAL_FLOATING_POINT_CONTEXT ItaniumFpSave; -} EFI_SMM_FLOATING_POINT_SAVE_STATE; - -/** - This function is the main entry point for an SMM handler dispatch - or communicate-based callback. - - @param SmmImageHandle A unique value returned by the SMM infrastructure - in response to registration for a communicate-based callback or dispatch. - @param CommunicationBuffer - An optional buffer that will be populated - by the SMM infrastructure in response to a non-SMM agent (preboot or runtime) - invoking the EFI_SMM_BASE_PROTOCOL.Communicate() service. - @param SourceSize If CommunicationBuffer is non-NULL, this field - indicates the size of the data payload in this buffer. - - @return Status Code - -**/ -typedef -EFI_STATUS -(EFIAPI *EFI_SMM_HANDLER_ENTRY_POINT)( - IN EFI_HANDLE SmmImageHandle, - IN OUT VOID *CommunicationBuffer OPTIONAL, - IN OUT UINTN *SourceSize OPTIONAL - ); - -/** - The SmmInstallConfigurationTable() function is used to maintain the list - of configuration tables that are stored in the System Management System - Table. The list is stored as an array of (GUID, Pointer) pairs. The list - must be allocated from pool memory with PoolType set to EfiRuntimeServicesData. - - @param SystemTable A pointer to the SMM System Table. - @param Guid A pointer to the GUID for the entry to add, update, or remove. - @param Table A pointer to the buffer of the table to add. - @param TableSize The size of the table to install. - - @retval EFI_SUCCESS The (Guid, Table) pair was added, updated, or removed. - @retval EFI_INVALID_PARAMETER Guid is not valid. - @retval EFI_NOT_FOUND An attempt was made to delete a non-existent entry. - @retval EFI_OUT_OF_RESOURCES There is not enough memory available to complete the operation. - -**/ -typedef -EFI_STATUS -(EFIAPI *EFI_SMM_INSTALL_CONFIGURATION_TABLE)( - IN EFI_SMM_SYSTEM_TABLE *SystemTable, - IN EFI_GUID *Guid, - IN VOID *Table, - IN UINTN TableSize - ); - -// -// System Management System Table (SMST) -// -struct _EFI_SMM_SYSTEM_TABLE { - /// - /// The table header for the System Management System Table (SMST). - /// - EFI_TABLE_HEADER Hdr; - - /// - /// A pointer to a NULL-terminated Unicode string containing the vendor name. It is - /// permissible for this pointer to be NULL. - /// - CHAR16 *SmmFirmwareVendor; - /// - /// The particular revision of the firmware. - /// - UINT32 SmmFirmwareRevision; - - /// - /// Adds, updates, or removes a configuration table entry from the SMST. - /// - EFI_SMM_INSTALL_CONFIGURATION_TABLE SmmInstallConfigurationTable; - - // - // I/O Services - // - /// - /// A GUID that designates the particular CPU I/O services. - /// - EFI_GUID EfiSmmCpuIoGuid; - /// - /// Provides the basic memory and I/O interfaces that are used to abstract accesses to - /// devices. - /// - EFI_SMM_CPU_IO_INTERFACE SmmIo; - - // - // Runtime memory service - // - /// - /// - /// Allocates pool memory from SMRAM for IA-32 or runtime memory for the - /// Itanium processor family. - /// - EFI_SMMCORE_ALLOCATE_POOL SmmAllocatePool; - /// - /// Returns pool memory to the system. - /// - EFI_SMMCORE_FREE_POOL SmmFreePool; - /// - /// Allocates memory pages from the system. - /// - EFI_SMMCORE_ALLOCATE_PAGES SmmAllocatePages; - /// - /// Frees memory pages for the system. - /// - EFI_SMMCORE_FREE_PAGES SmmFreePages; - - // - // MP service - // - - /// Inconsistent with specification here: - /// In Framework Spec, this definition does not exist. This method is introduced in PI1.1 specification for - /// the implementation needed. - EFI_SMM_STARTUP_THIS_AP SmmStartupThisAp; - - // - // CPU information records - // - /// - /// A 1-relative number between 1 and the NumberOfCpus field. This field designates - /// which processor is executing the SMM infrastructure. This number also serves as an - /// index into the CpuSaveState and CpuOptionalFloatingPointState - /// fields. - /// - UINTN CurrentlyExecutingCpu; - /// - /// The number of EFI Configuration Tables in the buffer - /// SmmConfigurationTable. - /// - UINTN NumberOfCpus; - /// - /// A pointer to the EFI Configuration Tables. The number of entries in the table is - /// NumberOfTableEntries. - /// - EFI_SMM_CPU_SAVE_STATE *CpuSaveState; - /// - /// A pointer to a catenation of the EFI_SMM_FLOATING_POINT_SAVE_STATE. - /// The size of this entire table is NumberOfCpus* size of the - /// EFI_SMM_FLOATING_POINT_SAVE_STATE. These fields are populated only if - /// there is at least one SMM driver that has registered for a callback with the - /// FloatingPointSave field in EFI_SMM_BASE_PROTOCOL.RegisterCallback() set to TRUE. - /// - EFI_SMM_FLOATING_POINT_SAVE_STATE *CpuOptionalFloatingPointState; - - // - // Extensibility table - // - /// - /// The number of EFI Configuration Tables in the buffer - /// SmmConfigurationTable. - /// - UINTN NumberOfTableEntries; - /// - /// A pointer to the EFI Configuration Tables. The number of entries in the table is - /// NumberOfTableEntries. - /// - EFI_CONFIGURATION_TABLE *SmmConfigurationTable; -}; - -#endif diff --git a/IntelFrameworkPkg/Include/Framework/StatusCode.h b/IntelFrameworkPkg/Include/Framework/StatusCode.h deleted file mode 100644 index e237b15b9..000000000 --- a/IntelFrameworkPkg/Include/Framework/StatusCode.h +++ /dev/null @@ -1,161 +0,0 @@ -/** @file - Status Code Definitions, according to Intel Platform Innovation Framework - for EFI Status Codes Specification - -Copyright (c) 2007 - 2010, Intel Corporation. All rights reserved.
-This program and the accompanying materials are licensed and made available under -the terms and conditions of the BSD License that accompanies this distribution. -The full text of the license may be found at -http://opensource.org/licenses/bsd-license.php. - -THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, -WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. - - @par Revision Reference: - Intel Platform Innovation Framework for EFI Status Codes Specification - Version 0.92. - -**/ - -#ifndef _FRAMEWORK_STATUS_CODE_H_ -#define _FRAMEWORK_STATUS_CODE_H_ - -// -// Required for X64 defines for CPU exception types -// -#include - -/// -/// Software Class DXE BS Driver Subclass Progress Code definitions. -/// -/// Inconsistent with specification here: -/// The Framework Specification, StatusCodes 0.92, does not define the macros. -/// -///@{ -#define EFI_SW_DXE_BS_PC_BEGIN_CONNECTING_DRIVERS (EFI_SUBCLASS_SPECIFIC | 0x00000005) -#define EFI_SW_DXE_BS_PC_VERIFYING_PASSWORD (EFI_SUBCLASS_SPECIFIC | 0x00000006) -///@} - -/// -/// Software Class DXE RT Driver Subclass Progress Code definitions. -/// -/// Inconsistent with specification here: -/// The Framework Specification, StatusCodes 0.92, does not define the macros. -/// -///@{ -#define EFI_SW_DXE_RT_PC_S0 (EFI_SUBCLASS_SPECIFIC | 0x00000000) -#define EFI_SW_DXE_RT_PC_S1 (EFI_SUBCLASS_SPECIFIC | 0x00000001) -#define EFI_SW_DXE_RT_PC_S2 (EFI_SUBCLASS_SPECIFIC | 0x00000002) -#define EFI_SW_DXE_RT_PC_S3 (EFI_SUBCLASS_SPECIFIC | 0x00000003) -#define EFI_SW_DXE_RT_PC_S4 (EFI_SUBCLASS_SPECIFIC | 0x00000004) -#define EFI_SW_DXE_RT_PC_S5 (EFI_SUBCLASS_SPECIFIC | 0x00000005) -///@} - -/// -/// Software Subclass definitions. -/// -/// Inconsistent with specification here: -/// The Framework Specification, StatusCodes 0.92, does not define the macros. -/// -#define EFI_SOFTWARE_X64_EXCEPTION (EFI_SOFTWARE | 0x00130000) - -/// -/// Software Class X64 Exception Subclass Error Code definitions. -/// These exceptions are derived from the debug protocol definitions in the EFI -/// specification. -/// -/// Inconsistent with specification here: -/// The Framework Specification, StatusCodes 0.92, does not define the macros. -/// -///@{ -#define EFI_SW_EC_X64_DIVIDE_ERROR EXCEPT_X64_DIVIDE_ERROR -#define EFI_SW_EC_X64_DEBUG EXCEPT_X64_DEBUG -#define EFI_SW_EC_X64_NMI EXCEPT_X64_NMI -#define EFI_SW_EC_X64_BREAKPOINT EXCEPT_X64_BREAKPOINT -#define EFI_SW_EC_X64_OVERFLOW EXCEPT_X64_OVERFLOW -#define EFI_SW_EC_X64_BOUND EXCEPT_X64_BOUND -#define EFI_SW_EC_X64_INVALID_OPCODE EXCEPT_X64_INVALID_OPCODE -#define EFI_SW_EC_X64_DOUBLE_FAULT EXCEPT_X64_DOUBLE_FAULT -#define EFI_SW_EC_X64_INVALID_TSS EXCEPT_X64_INVALID_TSS -#define EFI_SW_EC_X64_SEG_NOT_PRESENT EXCEPT_X64_SEG_NOT_PRESENT -#define EFI_SW_EC_X64_STACK_FAULT EXCEPT_X64_STACK_FAULT -#define EFI_SW_EC_X64_GP_FAULT EXCEPT_X64_GP_FAULT -#define EFI_SW_EC_X64_PAGE_FAULT EXCEPT_X64_PAGE_FAULT -#define EFI_SW_EC_X64_FP_ERROR EXCEPT_X64_FP_ERROR -#define EFI_SW_EC_X64_ALIGNMENT_CHECK EXCEPT_X64_ALIGNMENT_CHECK -#define EFI_SW_EC_X64_MACHINE_CHECK EXCEPT_X64_MACHINE_CHECK -#define EFI_SW_EC_X64_SIMD EXCEPT_X64_SIMD -///@} - -/// -/// Software Class EFI After Life Subclass Progress Code definitions. -/// -///@{ -#define EFI_SW_AL_PC_ENTRY_POINT (EFI_SUBCLASS_SPECIFIC | 0x00000000) -#define EFI_SW_AL_PC_RETURN_TO_LAST (EFI_SUBCLASS_SPECIFIC | 0x00000001) -///@} - -/// -/// Software Class DXE Core Subclass Error Code definitions. -/// -/// Inconsistent with specification here: -/// The Framework Specification, StatusCodes 0.92, does not define the macros. -/// -#define EFI_SW_CSM_LEGACY_ROM_INIT (EFI_SUBCLASS_SPECIFIC | 0x00000000) - -/// -/// IO Bus Class ATA/ATAPI Subclass Progress Code definitions. -/// -/// -/// Inconsistent with specification here: -/// The Framework Specification, StatusCodes 0.92, does not define the macros. -/// -///@{ -#define EFI_IOB_ATA_BUS_SMART_ENABLE (EFI_SUBCLASS_SPECIFIC | 0x00000000) -#define EFI_IOB_ATA_BUS_SMART_DISABLE (EFI_SUBCLASS_SPECIFIC | 0x00000001) -#define EFI_IOB_ATA_BUS_SMART_OVERTHRESHOLD (EFI_SUBCLASS_SPECIFIC | 0x00000002) -#define EFI_IOB_ATA_BUS_SMART_UNDERTHRESHOLD (EFI_SUBCLASS_SPECIFIC | 0x00000003) -///@} - -/// -/// IO Bus Class ATA/ATAPI Subclass Error Code definitions. -/// -/// -/// Inconsistent with specification here: -/// The Framework Specification, StatusCodes 0.92, does not define the macros. -/// -///@{ -#define EFI_IOB_ATA_BUS_SMART_NOTSUPPORTED (EFI_SUBCLASS_SPECIFIC | 0x00000000) -#define EFI_IOB_ATA_BUS_SMART_DISABLED (EFI_SUBCLASS_SPECIFIC | 0x00000001) -///@} - -/// -/// The reason that the processor was disabled. -/// -/// Inconsistent with specification here: -/// The Framework Specification, StatusCodes 0.92, does not define the macros. -/// -///@{ -#define EFI_CPU_CAUSE_NOT_DISABLED 0x0000 -///@} - -/// -/// Software Class PEI Module Subclass Progress Code definitions. -/// -///@{ -#define EFI_SW_PEIM_PC_RECOVERY_BEGIN EFI_SW_PEI_PC_RECOVERY_BEGIN -#define EFI_SW_PEIM_PC_CAPSULE_LOAD EFI_SW_PEI_PC_CAPSULE_LOAD -#define EFI_SW_PEIM_PC_CAPSULE_START EFI_SW_PEI_PC_CAPSULE_START -#define EFI_SW_PEIM_PC_RECOVERY_USER EFI_SW_PEI_PC_RECOVERY_USER -#define EFI_SW_PEIM_PC_RECOVERY_AUTO EFI_SW_PEI_PC_RECOVERY_AUTO -///@} - -/// -/// Software Class PEI Core Subclass Error Code definitions. -/// -///@{ -#define EFI_SW_PEIM_CORE_EC_DXE_CORRUPT EFI_SW_PEI_CORE_EC_DXE_CORRUPT -#define EFI_SW_PEIM_CORE_EC_DXEIPL_NOT_FOUND EFI_SW_PEI_CORE_EC_DXEIPL_NOT_FOUND -///@} - -#endif diff --git a/IntelFrameworkPkg/Include/FrameworkDxe.h b/IntelFrameworkPkg/Include/FrameworkDxe.h deleted file mode 100644 index 23ad62a41..000000000 --- a/IntelFrameworkPkg/Include/FrameworkDxe.h +++ /dev/null @@ -1,32 +0,0 @@ -/** @file - The root header file that provides Framework extension to UEFI/PI for modules. It can be included by - DXE, RUNTIME and SMM type modules that use Framework definitions. - - - This header file includes Framework extension definitions common to DXE - modules. - -Copyright (c) 2007 - 2010, Intel Corporation. All rights reserved.
-This program and the accompanying materials are licensed and made available under -the terms and conditions of the BSD License that accompanies this distribution. -The full text of the license may be found at -http://opensource.org/licenses/bsd-license.php. - -THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, -WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. -**/ - -#ifndef _FRAMEWORK_DXE_H_ -#define _FRAMEWORK_DXE_H_ - -#include - -#include -#include -#include -#include -#include -#include -#include - -#endif diff --git a/IntelFrameworkPkg/Include/FrameworkPei.h b/IntelFrameworkPkg/Include/FrameworkPei.h deleted file mode 100644 index 87af840e7..000000000 --- a/IntelFrameworkPkg/Include/FrameworkPei.h +++ /dev/null @@ -1,24 +0,0 @@ -/** @file - Header file that support Framework extension to UEFI/PI for PEI modules. - - This header file must include Framework extension definitions common to PEI - modules. - -Copyright (c) 2007 - 2018, Intel Corporation. All rights reserved.
-SPDX-License-Identifier: BSD-2-Clause-Patent - -**/ - -#ifndef _FRAMEWORK_PEI_H_ -#define _FRAMEWORK_PEI_H_ - -#include - -#include -#include -#include -#include -#include -#include - -#endif diff --git a/IntelFrameworkPkg/Include/FrameworkSmm.h b/IntelFrameworkPkg/Include/FrameworkSmm.h deleted file mode 100644 index c10e6bc0b..000000000 --- a/IntelFrameworkPkg/Include/FrameworkSmm.h +++ /dev/null @@ -1,18 +0,0 @@ -/** @file - Header file that support Framework extensions to UEFI/PI for SMM modules. - - This header file must include Framework extension definitions common to DXE - modules. - -Copyright (c) 2007 - 2018, Intel Corporation. All rights reserved.
-SPDX-License-Identifier: BSD-2-Clause-Patent - -**/ - -#ifndef _FRAMEWORK_SMM_H_ -#define _FRAMEWORK_SMM_H_ - -#include -#include - -#endif diff --git a/IntelFrameworkPkg/Include/Guid/BlockIo.h b/IntelFrameworkPkg/Include/Guid/BlockIo.h deleted file mode 100644 index 8f3fc7fea..000000000 --- a/IntelFrameworkPkg/Include/Guid/BlockIo.h +++ /dev/null @@ -1,51 +0,0 @@ -/** @file - This file declares the hardware-device class GUIDs that may be used by the - PEIM that produces the Virtual Block I/O PPI. - - These GUIDs are hardware-device class GUIDs that would be imported only by the - Virtual Block I/O PEIM. This virtual PEIM imports only the actual Block I/O - PPIs from the device-class ones listed here and published a single instance of - the Block I/O PPI for consumption by the File System PEIM. In the parlance of - the Framework DXE software stack, this Virtual Block I/O PEIM is actually - embodying the functionality of the partition driver. Thsi Virtual Block I/O - PEIM has to multiple the multiple possible instances of Block I/O and also know - how to parse at least El Torito for CD-ROM, and perhaps Master Boot Record(MBR) - and GUID Partition Table(GPT) in the future. - -Copyright (c) 2009 - 2010, Intel Corporation. All rights reserved.
-This program and the accompanying materials are licensed and made available under -the terms and conditions of the BSD License that accompanies this distribution. -The full text of the license may be found at -http://opensource.org/licenses/bsd-license.php. - -THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, -WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. - - @par Revision Reference: - These GUIDs are defined in Framework Recovery Specification Version 0.9 - -**/ - -#ifndef _PEI_BLOCK_IO_GUID_H_ -#define _PEI_BLOCK_IO_GUID_H_ - -/// -/// Global ID for an IDE class recovery device. -/// -#define EFI_PEI_IDE_BLOCK_IO_PPI \ - { \ - 0x0964e5b22, 0x6459, 0x11d2, { 0x8e, 0x39, 0x00, 0xa0, 0xc9, 0x69, 0x72, 0x3b } \ - } - -/// -/// Global ID for a Floppy class recovery device. -/// -#define EFI_PEI_144_FLOPPY_BLOCK_IO_PPI \ - { \ - 0xda6855bd, 0x07b7, 0x4c05, { 0x9e, 0xd8, 0xe2, 0x59, 0xfd, 0x36, 0x0e, 0x22 } \ - } - -extern EFI_GUID gEfiPeiIdeBlockIoPpiGuid; -extern EFI_GUID gEfiPei144FloppyBlockIoPpiGuid; - -#endif diff --git a/IntelFrameworkPkg/Include/Guid/Capsule.h b/IntelFrameworkPkg/Include/Guid/Capsule.h deleted file mode 100644 index b565b1417..000000000 --- a/IntelFrameworkPkg/Include/Guid/Capsule.h +++ /dev/null @@ -1,147 +0,0 @@ -/** @file - Framework Capule related Definition. - -Copyright (c) 2007 - 2010, Intel Corporation. All rights reserved.
-This program and the accompanying materials are licensed and made available under -the terms and conditions of the BSD License that accompanies this distribution. -The full text of the license may be found at -http://opensource.org/licenses/bsd-license.php. - -THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, -WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. - - @par Revision Reference: - Capsule Spec Version 0.9 -**/ - -#ifndef _CAPSULE_GUID_H__ -#define _CAPSULE_GUID_H__ - -// -// This is the GUID of the capsule header of the image on disk. -// -#define EFI_CAPSULE_GUID \ - { \ - 0x3B6686BD, 0x0D76, 0x4030, {0xB7, 0x0E, 0xB5, 0x51, 0x9E, 0x2F, 0xC5, 0xA0 } \ - } - -// -// This is the GUID of the configuration results file created by the capsule -// application. -// -#define EFI_CONFIG_FILE_NAME_GUID \ - { \ - 0x98B8D59B, 0xE8BA, 0x48EE, {0x98, 0xDD, 0xC2, 0x95, 0x39, 0x2F, 0x1E, 0xDB } \ - } - -/// -/// Bits in the flags field of the capsule header. -/// This flag is set if the capsule can support setup changes, and cleared if it cannot. -/// -#define EFI_CAPSULE_HEADER_FLAG_SETUP 0x00000001 - -#define CAPSULE_BLOCK_DESCRIPTOR_SIGNATURE SIGNATURE_32 ('C', 'B', 'D', 'S') - -// -// An array of these structs describe the blocks that make up a capsule for -// a capsule update. -// -typedef struct { - UINT64 Length; ///< Length of the data block. - EFI_PHYSICAL_ADDRESS Data; ///< Physical address of the data block. - UINT32 Signature; ///< CBDS. - UINT32 CheckSum; ///< To sum this structure to 0. -} FRAMEWORK_EFI_CAPSULE_BLOCK_DESCRIPTOR; - -typedef struct { - EFI_GUID OemGuid; - UINT32 HeaderSize; - // - // UINT8 OemHdrData[]; - // -} EFI_CAPSULE_OEM_HEADER; - -typedef struct { - /// - /// A defined GUID that indicates the start of a capsule. - /// - EFI_GUID CapsuleGuid; - /// - /// The size of the EFI_CAPSULE_HEADER structure. - /// - UINT32 HeaderSize; - /// - /// A bit-mapped list describing the capsule's attributes. - /// All undefined bits should be written as zero (0). - /// - UINT32 Flags; - /// - /// The length in bytes (27,415 for an image containing 27,415 bytes) of the entire image - /// including all headers. If this value is greater than the size of the data presented in - /// the capsule body, the image is separated across multiple media. If this - /// value is less than the size of the data, it is an error. - /// - UINT32 CapsuleImageSize; - /// - /// A zero-based number that enables a capsule to be split into pieces and then - /// recombined for easier transfer across media with limited size. The lower the - /// SequenceNumber, the earlier in the final image that the part of the capsule is to - /// appear. In capsules that are not split, this value shall be zero. - /// - UINT32 SequenceNumber; - /// - /// Used to group the various pieces of a split capsule to ensure that they comprise the - /// same base image. It is valid for this item to be zero, in which case the capsule cannot - /// be split into components. - /// - EFI_GUID InstanceId; - /// - /// The offset in bytes from the beginning of the header to the start of an EFI string that - /// contains a description of the identity of the subcapsules that make up the capsule. If - /// the capsule is not split, this value should be zero. The same string should be - /// presented for all subcapsules that constitute the same capsule. - /// - UINT32 OffsetToSplitInformation; - /// - /// The offset in bytes from the beginning of the header to the start of the part of the - /// capsule that is to be transferred to DXE. - /// - UINT32 OffsetToCapsuleBody; - /// - /// The offset in bytes from the beginning of the header to the start of the OEM-defined - /// header. This value must be less than OffsetToCapsuleBody. - /// - UINT32 OffsetToOemDefinedHeader; - /// - /// The offset in bytes from the beginning of the header to the start of human-readable - /// text that describes the entity that created the capsule. This value must be less than OffsetToCapsuleBody. - /// - UINT32 OffsetToAuthorInformation; - /// - /// The offset in bytes from the beginning of the header to the start of human-readable - /// text that describes the revision of the capsule and/or the capsule's contents. This - /// value must be less than OffsetToCapsuleBody. - /// - UINT32 OffsetToRevisionInformation; - /// - /// The offset in bytes from the beginning of the header to the start of a one-line (less - /// than 40 Unicode characters in any language) description of the capsule. It is intended - /// to be used by OS-present applications when providing a list of capsules from which - /// the user can choose. This value must be less than OffsetToCapsuleBody. - /// - UINT32 OffsetToShortDescription; - /// - /// The offset in bytes from the beginning of the header to the start of an EFI string - /// - UINT32 OffsetToLongDescription; - /// - /// This field is reserved for future use by this specification. For future compatibility, - /// this field must be set to zero - /// - UINT32 OffsetToApplicableDevices; -} FRAMEWORK_EFI_CAPSULE_HEADER; - -extern EFI_GUID gEfiCapsuleGuid; -extern EFI_GUID gEfiConfigFileNameGuid; - -#endif diff --git a/IntelFrameworkPkg/Include/Guid/DataHubRecords.h b/IntelFrameworkPkg/Include/Guid/DataHubRecords.h deleted file mode 100644 index 05b393b5e..000000000 --- a/IntelFrameworkPkg/Include/Guid/DataHubRecords.h +++ /dev/null @@ -1,2935 +0,0 @@ -/** @file - DataHubRecord.h includes all data hub subclass GUID definitions. - - This file includes all data hub sub class defitions from - Cache subclass specification 0.9, DataHub SubClass specification 0.9, Memory SubClass Spec 0.9, - Processor Subclass specification 0.9, and Misc SubClass specification 0.9. - -Copyright (c) 2007 - 2011, Intel Corporation. All rights reserved.
-This program and the accompanying materials are licensed and made available under -the terms and conditions of the BSD License that accompanies this distribution. -The full text of the license may be found at -http://opensource.org/licenses/bsd-license.php. - -THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, -WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. - -**/ -#ifndef _DATAHUB_RECORDS_GUID_H_ -#define _DATAHUB_RECORDS_GUID_H_ - -// -// The include is required to retrieve type EFI_EXP_BASE10_DATA -// -#include - -#define EFI_PROCESSOR_SUBCLASS_GUID \ - { 0x26fdeb7e, 0xb8af, 0x4ccf, {0xaa, 0x97, 0x02, 0x63, 0x3c, 0xe4, 0x8c, 0xa7 } } - -extern EFI_GUID gEfiProcessorSubClassGuid; - - -#define EFI_CACHE_SUBCLASS_GUID \ - { 0x7f0013a7, 0xdc79, 0x4b22, {0x80, 0x99, 0x11, 0xf7, 0x5f, 0xdc, 0x82, 0x9d } } - -extern EFI_GUID gEfiCacheSubClassGuid; - -/// -/// The memory subclass belongs to the data class and is identified as the memory -/// subclass by the GUID. -/// -#define EFI_MEMORY_SUBCLASS_GUID \ - {0x4E8F4EBB, 0x64B9, 0x4e05, {0x9B, 0x18, 0x4C, 0xFE, 0x49, 0x23, 0x50, 0x97} } - -extern EFI_GUID gEfiMemorySubClassGuid; - -#define EFI_MISC_SUBCLASS_GUID \ - { 0x772484B2, 0x7482, 0x4b91, {0x9F, 0x9A, 0xAD, 0x43, 0xF8, 0x1C, 0x58, 0x81 } } - -extern EFI_GUID gEfiMiscSubClassGuid; - - -/// -/// Inconsistent with specification here: -/// In ProcSubclass specification 0.9, the value is 0x0100. -/// Keep it unchanged from the perspective of binary consistency. -/// -#define EFI_PROCESSOR_SUBCLASS_VERSION 0x00010000 - -#pragma pack(1) - -typedef struct _USB_PORT_DEVICE_PATH { - ACPI_HID_DEVICE_PATH PciRootBridgeDevicePath; - PCI_DEVICE_PATH PciBusDevicePath; - EFI_DEVICE_PATH_PROTOCOL EndDevicePath; -} USB_PORT_DEVICE_PATH; - -// -// IDE -// -typedef struct _IDE_DEVICE_PATH { - ACPI_HID_DEVICE_PATH PciRootBridgeDevicePath; - PCI_DEVICE_PATH PciBusDevicePath; - EFI_DEVICE_PATH_PROTOCOL EndDevicePath; -} IDE_DEVICE_PATH; - -// -// RMC Connector -// -typedef struct _RMC_CONN_DEVICE_PATH { - ACPI_HID_DEVICE_PATH PciRootBridgeDevicePath; - PCI_DEVICE_PATH PciBridgeDevicePath; - PCI_DEVICE_PATH PciBusDevicePath; - EFI_DEVICE_PATH_PROTOCOL EndDevicePath; -} RMC_CONN_DEVICE_PATH; - -// -// RIDE -// -typedef struct _RIDE_DEVICE_PATH { - ACPI_HID_DEVICE_PATH PciRootBridgeDevicePath; - PCI_DEVICE_PATH PciBridgeDevicePath; - PCI_DEVICE_PATH PciBusDevicePath; - EFI_DEVICE_PATH_PROTOCOL EndDevicePath; -} RIDE_DEVICE_PATH; - -// -// Gigabit NIC -// -typedef struct _GB_NIC_DEVICE_PATH { - ACPI_HID_DEVICE_PATH PciRootBridgeDevicePath; - PCI_DEVICE_PATH PciBridgeDevicePath; - PCI_DEVICE_PATH PciXBridgeDevicePath; - PCI_DEVICE_PATH PciXBusDevicePath; - EFI_DEVICE_PATH_PROTOCOL EndDevicePath; -} GB_NIC_DEVICE_PATH; - -// -// P/S2 Connector -// -typedef struct _PS2_CONN_DEVICE_PATH { - ACPI_HID_DEVICE_PATH PciRootBridgeDevicePath; - PCI_DEVICE_PATH LpcBridgeDevicePath; - ACPI_HID_DEVICE_PATH LpcBusDevicePath; - EFI_DEVICE_PATH_PROTOCOL EndDevicePath; -} PS2_CONN_DEVICE_PATH; - -// -// Serial Port Connector -// -typedef struct _SERIAL_CONN_DEVICE_PATH { - ACPI_HID_DEVICE_PATH PciRootBridgeDevicePath; - PCI_DEVICE_PATH LpcBridgeDevicePath; - ACPI_HID_DEVICE_PATH LpcBusDevicePath; - EFI_DEVICE_PATH_PROTOCOL EndDevicePath; -} SERIAL_CONN_DEVICE_PATH; - -// -// Parallel Port Connector -// -typedef struct _PARALLEL_CONN_DEVICE_PATH { - ACPI_HID_DEVICE_PATH PciRootBridgeDevicePath; - PCI_DEVICE_PATH LpcBridgeDevicePath; - ACPI_HID_DEVICE_PATH LpcBusDevicePath; - EFI_DEVICE_PATH_PROTOCOL EndDevicePath; -} PARALLEL_CONN_DEVICE_PATH; - -// -// Floopy Connector -// -typedef struct _FLOOPY_CONN_DEVICE_PATH { - ACPI_HID_DEVICE_PATH PciRootBridgeDevicePath; - PCI_DEVICE_PATH LpcBridgeDevicePath; - ACPI_HID_DEVICE_PATH LpcBusDevicePath; - EFI_DEVICE_PATH_PROTOCOL EndDevicePath; -} FLOOPY_CONN_DEVICE_PATH; - -/// -/// Inconsistent with specification here: -/// In MiscSubclass specification 0.9, this data structure and corrsponding fields are NOT defined. -/// It's implementation-specific to simplify the code logic. -/// -typedef union _EFI_MISC_PORT_DEVICE_PATH { - USB_PORT_DEVICE_PATH UsbDevicePath; - IDE_DEVICE_PATH IdeDevicePath; - RMC_CONN_DEVICE_PATH RmcConnDevicePath; - RIDE_DEVICE_PATH RideDevicePath; - GB_NIC_DEVICE_PATH GbNicDevicePath; - PS2_CONN_DEVICE_PATH Ps2ConnDevicePath; - SERIAL_CONN_DEVICE_PATH SerialConnDevicePath; - PARALLEL_CONN_DEVICE_PATH ParallelConnDevicePath; - FLOOPY_CONN_DEVICE_PATH FloppyConnDevicePath; -} EFI_MISC_PORT_DEVICE_PATH; - -#pragma pack() - -/// -/// String Token Definition -/// -/// Inconsistent with specification here: -/// The macro isn't defined by any specification. -/// Keep it unchanged for backward compatibility. -/// -#define EFI_STRING_TOKEN UINT16 - -/// -/// Each data record that is a member of some subclass starts with a standard -/// header of type EFI_SUBCLASS_TYPE1_HEADER. -/// This header is only a guideline and applicable only to a data -/// subclass that is producing SMBIOS data records. A subclass can start with a -/// different header if needed. -/// -typedef struct { - /// - /// The version of the specification to which a specific subclass data record adheres. - /// - UINT32 Version; - /// - /// The size in bytes of this data class header. - /// - UINT32 HeaderSize; - /// - /// The instance number of the subclass with the same ProducerName. This number is - /// applicable in cases where multiple subclass instances that were produced by the same - /// driver exist in the system. This entry is 1 based; 0 means Reserved and -1 means Not - /// Applicable. All data consumer drivers should be able to handle all the possible values - /// of Instance, including Not Applicable and Reserved. - /// - UINT16 Instance; - /// - /// The instance number of the RecordType for the same Instance. This number is - /// applicable in cases where multiple instances of the RecordType exist for a specific - /// Instance. This entry is 1 based; 0 means Reserved and -1 means Not Applicable. - /// All data consumer drivers should be able to handle all the possible values of - /// SubInstance, including Not Applicable and Reserved. - /// - UINT16 SubInstance; - /// - /// The record number for the data record being specified. The numbering scheme and - /// definition is defined in the specific subclass specification. - /// - UINT32 RecordType; -} EFI_SUBCLASS_TYPE1_HEADER; - -/// -/// This structure is used to link data records in the same subclasses. A data record is -/// defined as a link to another data record in the same subclass using this structure. -/// -typedef struct { - /// - /// An EFI_GUID that identifies the component that produced this data record. Type - /// EFI_GUID is defined in InstallProtocolInterface() in the EFI 1.10 Specification. - /// - EFI_GUID ProducerName; - /// - /// The instance number of the subclass with the same ProducerName. This number is - /// applicable in cases where multiple subclass instances that were produced by the same - /// driver exist in the system. This entry is 1 based; 0 means Reserved and -1 means Not - /// Applicable. All data consumer drivers should be able to handle all the possible values - /// of Instance, including Not Applicable and Reserved. - /// - UINT16 Instance; - /// The instance number of the RecordType for the same Instance. This number is - /// applicable in cases where multiple instances of the RecordType exist for a specific - /// Instance. This entry is 1 based; 0 means Reserved and -1 means Not Applicable. - /// All data consumer drivers should be able to handle all the possible values of - /// SubInstance, including Not Applicable and Reserved. - UINT16 SubInstance; -} EFI_INTER_LINK_DATA; - -// -// EXP data -// -/// -/// This macro provides a calculation for base-10 representations. Value and Exponent are each -/// INT16. It is signed to cover negative values and is 16 bits wide (15 bits for data and 1 bit -/// for the sign). -/// -typedef struct { - /// - /// The INT16 number by which to multiply the base-10 representation. - /// - UINT16 Value; - /// - /// The INT16 number by which to raise the base-10 calculation. - /// - UINT16 Exponent; -} EFI_EXP_BASE2_DATA; - -typedef EFI_EXP_BASE10_DATA EFI_PROCESSOR_MAX_CORE_FREQUENCY_DATA; -typedef EFI_EXP_BASE10_DATA EFI_PROCESSOR_MAX_FSB_FREQUENCY_DATA; -typedef EFI_EXP_BASE10_DATA EFI_PROCESSOR_CORE_FREQUENCY_DATA; - -/// -/// This data record refers to the list of frequencies that the processor core supports. The list of -/// supported frequencies is determined by the firmware based on hardware capabilities--for example, -/// it could be a common subset of all processors and the chipset. The unit of measurement of this data -/// record is in Hertz. For asynchronous processors, the content of this data record is zero. -/// The list is terminated by -1 in the Value field of the last element. A Value field of zero means -/// that the processor/driver supports automatic frequency selection. -/// -/// Inconsistent with specification here: -/// According to MiscSubclass 0.9 specification, it should be a pointer since it refers to a list of frequencies. -/// -typedef EFI_EXP_BASE10_DATA *EFI_PROCESSOR_CORE_FREQUENCY_LIST_DATA; - -/// -/// This data record refers to the list of supported frequencies of the processor external bus. The list of -/// supported frequencies is determined by the firmware based on hardware capabilities--for example, -/// it could be a common subset of all processors and the chipset. The unit of measurement of this data -/// record is in Hertz. For asynchronous processors, the content of this data record is NULL. -/// The list is terminated by -1 in the Value field of the last element. A Value field of zero means -/// that the processor/driver supports automatic frequency selection. -/// -typedef EFI_EXP_BASE10_DATA *EFI_PROCESSOR_FSB_FREQUENCY_LIST_DATA; -typedef EFI_EXP_BASE10_DATA EFI_PROCESSOR_FSB_FREQUENCY_DATA; -typedef STRING_REF EFI_PROCESSOR_VERSION_DATA; -typedef STRING_REF EFI_PROCESSOR_MANUFACTURER_DATA; -typedef STRING_REF EFI_PROCESSOR_SERIAL_NUMBER_DATA; -typedef STRING_REF EFI_PROCESSOR_ASSET_TAG_DATA; -typedef STRING_REF EFI_PROCESSOR_PART_NUMBER_DATA; - -typedef struct { - UINT32 ProcessorSteppingId:4; - UINT32 ProcessorModel: 4; - UINT32 ProcessorFamily: 4; - UINT32 ProcessorType: 2; - UINT32 ProcessorReserved1: 2; - UINT32 ProcessorXModel: 4; - UINT32 ProcessorXFamily: 8; - UINT32 ProcessorReserved2: 4; -} EFI_PROCESSOR_SIGNATURE; - - -/// -/// Inconsistent with specification here: -/// The name of third field in ProcSubClass specification 0.9 is LogicalProcessorCount. -/// Keep it unchanged for backward compatibility. -/// -typedef struct { - UINT32 ProcessorBrandIndex :8; - UINT32 ProcessorClflush :8; - UINT32 ProcessorReserved :8; - UINT32 ProcessorDfltApicId :8; -} EFI_PROCESSOR_MISC_INFO; - -typedef struct { - UINT32 ProcessorFpu: 1; - UINT32 ProcessorVme: 1; - UINT32 ProcessorDe: 1; - UINT32 ProcessorPse: 1; - UINT32 ProcessorTsc: 1; - UINT32 ProcessorMsr: 1; - UINT32 ProcessorPae: 1; - UINT32 ProcessorMce: 1; - UINT32 ProcessorCx8: 1; - UINT32 ProcessorApic: 1; - UINT32 ProcessorReserved1: 1; - UINT32 ProcessorSep: 1; - UINT32 ProcessorMtrr: 1; - UINT32 ProcessorPge: 1; - UINT32 ProcessorMca: 1; - UINT32 ProcessorCmov: 1; - UINT32 ProcessorPat: 1; - UINT32 ProcessorPse36: 1; - UINT32 ProcessorPsn: 1; - UINT32 ProcessorClfsh: 1; - UINT32 ProcessorReserved2: 1; - UINT32 ProcessorDs: 1; - UINT32 ProcessorAcpi: 1; - UINT32 ProcessorMmx: 1; - UINT32 ProcessorFxsr: 1; - UINT32 ProcessorSse: 1; - UINT32 ProcessorSse2: 1; - UINT32 ProcessorSs: 1; - UINT32 ProcessorReserved3: 1; - UINT32 ProcessorTm: 1; - UINT32 ProcessorReserved4: 2; -} EFI_PROCESSOR_FEATURE_FLAGS; - -/// -/// This data record refers to the unique ID that identifies a set of processors. This data record is 16 -/// bytes in length. The data in this structure is processor specific and reserved values can be defined -/// for future use. The consumer of this data should not make any assumption and should use this data -/// with respect to the processor family defined in the Family record number. -/// -typedef struct { - /// - /// Identifies the processor. - /// - EFI_PROCESSOR_SIGNATURE Signature; - /// - /// Provides additional processor information. - /// - EFI_PROCESSOR_MISC_INFO MiscInfo; - /// - /// Reserved for future use. - /// - UINT32 Reserved; - /// - /// Provides additional processor information. - /// - EFI_PROCESSOR_FEATURE_FLAGS FeatureFlags; -} EFI_PROCESSOR_ID_DATA; - -/// -/// This data record refers to the general classification of the processor. This data record is 4 bytes in -/// length. -/// -typedef enum { - EfiProcessorOther = 1, - EfiProcessorUnknown = 2, - EfiCentralProcessor = 3, - EfiMathProcessor = 4, - EfiDspProcessor = 5, - EfiVideoProcessor = 6 -} EFI_PROCESSOR_TYPE_DATA; - -/// -/// This data record refers to the family of the processor as defined by the DMTF. -/// This data record is 4 bytes in length. -/// -typedef enum { - EfiProcessorFamilyOther = 0x01, - EfiProcessorFamilyUnknown = 0x02, - EfiProcessorFamily8086 = 0x03, - EfiProcessorFamily80286 = 0x04, - EfiProcessorFamilyIntel386 = 0x05, - EfiProcessorFamilyIntel486 = 0x06, - EfiProcessorFamily8087 = 0x07, - EfiProcessorFamily80287 = 0x08, - EfiProcessorFamily80387 = 0x09, - EfiProcessorFamily80487 = 0x0A, - EfiProcessorFamilyPentium = 0x0B, - EfiProcessorFamilyPentiumPro = 0x0C, - EfiProcessorFamilyPentiumII = 0x0D, - EfiProcessorFamilyPentiumMMX = 0x0E, - EfiProcessorFamilyCeleron = 0x0F, - EfiProcessorFamilyPentiumIIXeon = 0x10, - EfiProcessorFamilyPentiumIII = 0x11, - EfiProcessorFamilyM1 = 0x12, - EfiProcessorFamilyM2 = 0x13, - EfiProcessorFamilyM1Reserved2 = 0x14, - EfiProcessorFamilyM1Reserved3 = 0x15, - EfiProcessorFamilyM1Reserved4 = 0x16, - EfiProcessorFamilyM1Reserved5 = 0x17, - EfiProcessorFamilyAmdDuron = 0x18, - EfiProcessorFamilyK5 = 0x19, - EfiProcessorFamilyK6 = 0x1A, - EfiProcessorFamilyK6_2 = 0x1B, - EfiProcessorFamilyK6_3 = 0x1C, - EfiProcessorFamilyAmdAthlon = 0x1D, - EfiProcessorFamilyAmd29000 = 0x1E, - EfiProcessorFamilyK6_2Plus = 0x1F, - EfiProcessorFamilyPowerPC = 0x20, - EfiProcessorFamilyPowerPC601 = 0x21, - EfiProcessorFamilyPowerPC603 = 0x22, - EfiProcessorFamilyPowerPC603Plus = 0x23, - EfiProcessorFamilyPowerPC604 = 0x24, - EfiProcessorFamilyPowerPC620 = 0x25, - EfiProcessorFamilyPowerPCx704 = 0x26, - EfiProcessorFamilyPowerPC750 = 0x27, - EfiProcessorFamilyAlpha3 = 0x30, - EfiProcessorFamilyAlpha21064 = 0x31, - EfiProcessorFamilyAlpha21066 = 0x32, - EfiProcessorFamilyAlpha21164 = 0x33, - EfiProcessorFamilyAlpha21164PC = 0x34, - EfiProcessorFamilyAlpha21164a = 0x35, - EfiProcessorFamilyAlpha21264 = 0x36, - EfiProcessorFamilyAlpha21364 = 0x37, - EfiProcessorFamilyMips = 0x40, - EfiProcessorFamilyMIPSR4000 = 0x41, - EfiProcessorFamilyMIPSR4200 = 0x42, - EfiProcessorFamilyMIPSR4400 = 0x43, - EfiProcessorFamilyMIPSR4600 = 0x44, - EfiProcessorFamilyMIPSR10000 = 0x45, - EfiProcessorFamilySparc = 0x50, - EfiProcessorFamilySuperSparc = 0x51, - EfiProcessorFamilymicroSparcII = 0x52, - EfiProcessorFamilymicroSparcIIep = 0x53, - EfiProcessorFamilyUltraSparc = 0x54, - EfiProcessorFamilyUltraSparcII = 0x55, - EfiProcessorFamilyUltraSparcIIi = 0x56, - EfiProcessorFamilyUltraSparcIII = 0x57, - /// - /// Inconsistent with specification here: - /// This field in ProcSubClass specification 0.9 is defined as EfiProcessorFamilyUltraSparcIIi. - /// Change it to EfiProcessorFamilyUltraSparcIIIi to avoid build break. - /// - EfiProcessorFamilyUltraSparcIIIi = 0x58, - EfiProcessorFamily68040 = 0x60, - EfiProcessorFamily68xxx = 0x61, - EfiProcessorFamily68000 = 0x62, - EfiProcessorFamily68010 = 0x63, - EfiProcessorFamily68020 = 0x64, - EfiProcessorFamily68030 = 0x65, - EfiProcessorFamilyHobbit = 0x70, - EfiProcessorFamilyCrusoeTM5000 = 0x78, - EfiProcessorFamilyCrusoeTM3000 = 0x79, - EfiProcessorFamilyEfficeonTM8000 = 0x7A, - EfiProcessorFamilyWeitek = 0x80, - EfiProcessorFamilyItanium = 0x82, - EfiProcessorFamilyAmdAthlon64 = 0x83, - EfiProcessorFamilyAmdOpteron = 0x84, - EfiProcessorFamilyAmdSempron = 0x85, - EfiProcessorFamilyAmdTurion64Mobile = 0x86, - EfiProcessorFamilyDualCoreAmdOpteron = 0x87, - EfiProcessorFamilyAmdAthlon64X2DualCore = 0x88, - EfiProcessorFamilyAmdTurion64X2Mobile = 0x89, - EfiProcessorFamilyPARISC = 0x90, - EfiProcessorFamilyPaRisc8500 = 0x91, - EfiProcessorFamilyPaRisc8000 = 0x92, - EfiProcessorFamilyPaRisc7300LC = 0x93, - EfiProcessorFamilyPaRisc7200 = 0x94, - EfiProcessorFamilyPaRisc7100LC = 0x95, - EfiProcessorFamilyPaRisc7100 = 0x96, - EfiProcessorFamilyV30 = 0xA0, - EfiProcessorFamilyPentiumIIIXeon = 0xB0, - EfiProcessorFamilyPentiumIIISpeedStep = 0xB1, - EfiProcessorFamilyPentium4 = 0xB2, - EfiProcessorFamilyIntelXeon = 0xB3, - EfiProcessorFamilyAS400 = 0xB4, - EfiProcessorFamilyIntelXeonMP = 0xB5, - EfiProcessorFamilyAMDAthlonXP = 0xB6, - EfiProcessorFamilyAMDAthlonMP = 0xB7, - EfiProcessorFamilyIntelItanium2 = 0xB8, - /// - /// Inconsistent with specification here: - /// This field is NOT defined in ProcSubClass specification 0.9. It's introduced for SMBIOS2.6 specification. - /// - EfiProcessorFamilyIntelPentiumM = 0xB9, - /// - /// Inconsistent with specification here: - /// This field is NOT defined in ProcSubClass specification 0.9. It's introduced for SMBIOS2.6 specification. - /// - EfiProcessorFamilyIntelCeleronD = 0xBA, - /// - /// Inconsistent with specification here: - /// This field is NOT defined in ProcSubClass specification 0.9. It's introduced for SMBIOS2.6 specification. - /// - EfiProcessorFamilyIntelPentiumD = 0xBB, - /// - /// Inconsistent with specification here: - /// This field is NOT defined in ProcSubClass specification 0.9. It's introduced for SMBIOS2.6 specification. - /// - EfiProcessorFamilyIntelPentiumEx = 0xBC, - /// - /// Inconsistent with specification here: - /// This field is NOT defined in ProcSubClass specification 0.9. It's introduced for SMBIOS2.6 specification. - /// - EfiProcessorFamilyIntelCoreSolo = 0xBD, - /// - /// Inconsistent with specification here: - /// This field is NOT defined in ProcSubClass specification 0.9. It's introduced for SMBIOS2.6 specification. - /// - EfiProcessorFamilyReserved = 0xBE, - /// - /// Inconsistent with specification here: - /// This field is NOT defined in ProcSubClass specification 0.9. It's introduced for SMBIOS2.6 specification. - /// - EfiProcessorFamilyIntelCore2 = 0xBF, - EfiProcessorFamilyIBM390 = 0xC8, - EfiProcessorFamilyG4 = 0xC9, - EfiProcessorFamilyG5 = 0xCA, - /// - /// Inconsistent with specification here: - /// This field is NOT defined in ProcSubClass specification 0.9. It's introduced for SMBIOS2.6 specification. - /// - EfiProcessorFamilyG6 = 0xCB, - /// - /// Inconsistent with specification here: - /// This field is NOT defined in ProcSubClass specification 0.9. It's introduced for SMBIOS2.6 specification. - /// - EfiProcessorFamilyzArchitectur = 0xCC, - /// - /// Inconsistent with specification here: - /// This field is NOT defined in ProcSubClass specification 0.9. It's introduced for SMBIOS2.6 specification. - /// - EfiProcessorFamilyViaC7M = 0xD2, - /// - /// Inconsistent with specification here: - /// This field is NOT defined in ProcSubClass specification 0.9. It's introduced for SMBIOS2.6 specification. - /// - EfiProcessorFamilyViaC7D = 0xD3, - /// - /// Inconsistent with specification here: - /// This field is NOT defined in ProcSubClass specification 0.9. It's introduced for SMBIOS2.6 specification. - /// - EfiProcessorFamilyViaC7 = 0xD4, - /// - /// Inconsistent with specification here: - /// This field is NOT defined in ProcSubClass specification 0.9. It's introduced for SMBIOS2.6 specification. - /// - EfiProcessorFamilyViaEden = 0xD5, - EfiProcessorFamilyi860 = 0xFA, - EfiProcessorFamilyi960 = 0xFB, - /// - /// Inconsistent with specification here: - /// This field is NOT defined in ProcSubClass specification 0.9. It's introduced for SMBIOS2.6 specification. - /// - EfiProcessorFamilyIndicatorFamily2 = 0xFE, - /// - /// Inconsistent with specification here: - /// This field is NOT defined in ProcSubClass specification 0.9. It's introduced for SMBIOS2.6 specification. - /// - EfiProcessorFamilyReserved1 = 0xFF -} EFI_PROCESSOR_FAMILY_DATA; - -typedef enum { - EfiProcessorFamilySh3 = 0x104, - EfiProcessorFamilySh4 = 0x105, - EfiProcessorFamilyArm = 0x118, - EfiProcessorFamilyStrongArm = 0x119, - EfiProcessorFamily6x86 = 0x12C, - EfiProcessorFamilyMediaGx = 0x12D, - EfiProcessorFamilyMii = 0x12E, - EfiProcessorFamilyWinChip = 0x140, - EfiProcessorFamilyDsp = 0x15E, - EfiProcessorFamilyVideo = 0x1F4 -} EFI_PROCESSOR_FAMILY2_DATA; - -/// -/// This data record refers to the core voltage of the processor being defined. The unit of measurement -/// of this data record is in volts. -/// -typedef EFI_EXP_BASE10_DATA EFI_PROCESSOR_VOLTAGE_DATA; - -/// -/// This data record refers to the base address of the APIC of the processor being defined. This data -/// record is a physical address location. -/// -typedef EFI_PHYSICAL_ADDRESS EFI_PROCESSOR_APIC_BASE_ADDRESS_DATA; - -/// -/// This data record refers to the ID of the APIC of the processor being defined. This data record is a -/// 4-byte entry. -/// -typedef UINT32 EFI_PROCESSOR_APIC_ID_DATA; - -/// -/// This data record refers to the version number of the APIC of the processor being defined. This data -/// record is a 4-byte entry. -/// -typedef UINT32 EFI_PROCESSOR_APIC_VERSION_NUMBER_DATA; - -typedef enum { - EfiProcessorIa32Microcode = 1, - EfiProcessorIpfPalAMicrocode = 2, - EfiProcessorIpfPalBMicrocode = 3 -} EFI_PROCESSOR_MICROCODE_TYPE; - -/// -/// This data record refers to the revision of the processor microcode that is loaded in the processor. -/// This data record is a 4-byte entry. -/// -typedef struct { - /// - /// Identifies what type of microcode the data is. - /// - EFI_PROCESSOR_MICROCODE_TYPE ProcessorMicrocodeType; - /// - /// Indicates the revision number of this microcode. - /// - UINT32 ProcessorMicrocodeRevisionNumber; -} EFI_PROCESSOR_MICROCODE_REVISION_DATA; - -/// -/// This data record refers to the status of the processor. -/// -typedef struct { - UINT32 CpuStatus :3; ///< Indicates the status of the processor. - UINT32 Reserved1 :3; ///< Reserved for future use. Should be set to zero. - UINT32 SocketPopulated :1; ///< Indicates if the processor is socketed or not. - UINT32 Reserved2 :1; ///< Reserved for future use. Should be set to zero. - UINT32 ApicEnable :1; ///< Indicates if the APIC is enabled or not. - UINT32 BootApplicationProcessor :1; ///< Indicates if this processor is the boot processor. - UINT32 Reserved3 :22;///< Reserved for future use. Should be set to zero. -} EFI_PROCESSOR_STATUS_DATA; - -typedef enum { - EfiCpuStatusUnknown = 0, - EfiCpuStatusEnabled = 1, - EfiCpuStatusDisabledByUser = 2, - EfiCpuStatusDisabledbyBios = 3, - EfiCpuStatusIdle = 4, - EfiCpuStatusOther = 7 -} EFI_CPU_STATUS; - -typedef enum { - EfiProcessorSocketOther = 1, - EfiProcessorSocketUnknown = 2, - EfiProcessorSocketDaughterBoard = 3, - EfiProcessorSocketZIF = 4, - EfiProcessorSocketReplacePiggyBack = 5, - EfiProcessorSocketNone = 6, - EfiProcessorSocketLIF = 7, - EfiProcessorSocketSlot1 = 8, - EfiProcessorSocketSlot2 = 9, - EfiProcessorSocket370Pin = 0xA, - EfiProcessorSocketSlotA = 0xB, - EfiProcessorSocketSlotM = 0xC, - EfiProcessorSocket423 = 0xD, - EfiProcessorSocketA462 = 0xE, - EfiProcessorSocket478 = 0xF, - EfiProcessorSocket754 = 0x10, - EfiProcessorSocket940 = 0x11, - /// - /// Inconsistent with specification here: - /// This field is NOT defined in ProcSubClass specification 0.9. It's introduced for SMBIOS2.6 specification. - /// - EfiProcessorSocket939 = 0x12, - /// - /// Inconsistent with specification here: - /// This field is NOT defined in ProcSubClass specification 0.9. It's introduced for SMBIOS2.6 specification. - /// - EfiProcessorSocketmPGA604 = 0x13, - /// - /// Inconsistent with specification here: - /// This field is NOT defined in ProcSubClass specification 0.9. It's introduced for SMBIOS2.6 specification. - /// - EfiProcessorSocketLGA771 = 0x14, - /// - /// Inconsistent with specification here: - /// This field is NOT defined in ProcSubClass specification 0.9. It's introduced for SMBIOS2.6 specification. - /// - EfiProcessorSocketLGA775 = 0x15 - -} EFI_PROCESSOR_SOCKET_TYPE_DATA; - -typedef STRING_REF EFI_PROCESSOR_SOCKET_NAME_DATA; - -/// -/// Inconsistent with specification here: -/// In ProcSubclass specification 0.9, the naming is EFI_PROCESSOR_CACHE_ASSOCIATION_DATA. -/// Keep it unchanged for backward compatibilty. -/// -typedef EFI_INTER_LINK_DATA EFI_CACHE_ASSOCIATION_DATA; - -/// -/// This data record refers to the health status of the processor. -/// -/// Inconsistent with specification here: -/// In ProcSubclass specification 0.9, the naming is EFI_PROCESSOR_HEALTH_STATUS_DATA. -/// Keep it unchanged for backward compatibilty. -/// -typedef enum { - EfiProcessorHealthy = 1, - EfiProcessorPerfRestricted = 2, - EfiProcessorFuncRestricted = 3 -} EFI_PROCESSOR_HEALTH_STATUS; - -/// -/// This data record refers to the package number of this processor. Multiple logical processors can -/// exist in a system and each logical processor can be correlated to the physical processor using this -/// record type. -/// -typedef UINTN EFI_PROCESSOR_PACKAGE_NUMBER_DATA; - -typedef UINT8 EFI_PROCESSOR_CORE_COUNT_DATA; -typedef UINT8 EFI_PROCESSOR_ENABLED_CORE_COUNT_DATA; -typedef UINT8 EFI_PROCESSOR_THREAD_COUNT_DATA; - -typedef struct { - UINT16 Reserved :1; - UINT16 Unknown :1; - UINT16 Capable64Bit :1; - UINT16 Reserved2 :13; -} EFI_PROCESSOR_CHARACTERISTICS_DATA; - -/// -/// Inconsistent with specification here: -/// In ProcSubclass specification 0.9, the enumeration type data structure is NOT defined. -/// The equivalent in specification is -/// #define EFI_PROCESSOR_FREQUENCY_RECORD_NUMBER 0x00000001 -/// #define EFI_PROCESSOR_BUS_FREQUENCY_RECORD_NUMBER 0x00000002 -/// #define EFI_PROCESSOR_VERSION_RECORD_NUMBER 0x00000003 -/// #define EFI_PROCESSOR_MANUFACTURER_RECORD_NUMBER 0x00000004 -/// #define EFI_PROCESSOR_SERIAL_NUMBER_RECORD_NUMBER 0x00000005 -/// #define EFI_PROCESSOR_ID_RECORD_NUMBER 0x00000006 -/// #define EFI_PROCESSOR_TYPE_RECORD_NUMBER 0x00000007 -/// #define EFI_PROCESSOR_FAMILY_RECORD_NUMBER 0x00000008 -/// #define EFI_PROCESSOR_VOLTAGE_RECORD_NUMBER 0x00000009 -/// #define EFI_PROCESSOR_APIC_BASE_ADDRESS_RECORD_NUMBER 0x0000000A -/// #define EFI_PROCESSOR_APIC_ID_RECORD_NUMBER 0x0000000B -/// #define EFI_PROCESSOR_APIC_VER_NUMBER_RECORD_NUMBER 0x0000000C -/// #define EFI_PROCESSOR_MICROCODE_REVISION_RECORD_NUMBER 0x0000000D -/// #define EFI_PROCESSOR_STATUS_RECORD_NUMBER 0x0000000E -/// #define EFI_PROCESSOR_SOCKET_TYPE_RECORD_NUMBER 0x0000000F -/// #define EFI_PROCESSOR_SOCKET_NAME_RECORD_NUMBER 0x00000010 -/// #define EFI_PROCESSOR_CACHE_ASSOCIATION_RECORD_NUMBER 0x00000011 -/// #define EFI_PROCESSOR_MAX_FREQUENCY_RECORD_NUMBER 0x00000012 -/// #define EFI_PROCESSOR_ASSET_TAG_RECORD_NUMBER 0x00000013 -/// #define EFI_PROCESSOR_MAX_FSB_FREQUENCY_RECORD_NUMBER 0x00000014 -/// #define EFI_PROCESSOR_PACKAGE_NUMBER_RECORD_NUMBER 0x00000015 -/// #define EFI_PROCESSOR_FREQUENCY_LIST_RECORD_NUMBER 0x00000016 -/// #define EFI_PROCESSOR_FSB_FREQUENCY_LIST_RECORD_NUMBER 0x00000017 -/// #define EFI_PROCESSOR_HEALTH_STATUS_RECORD_NUMBER 0x00000018 -/// -/// Keep the definition unchanged for backward compatibility. -typedef enum { - ProcessorCoreFrequencyRecordType = 1, - ProcessorFsbFrequencyRecordType = 2, - ProcessorVersionRecordType = 3, - ProcessorManufacturerRecordType = 4, - ProcessorSerialNumberRecordType = 5, - ProcessorIdRecordType = 6, - ProcessorTypeRecordType = 7, - ProcessorFamilyRecordType = 8, - ProcessorVoltageRecordType = 9, - ProcessorApicBaseAddressRecordType = 10, - ProcessorApicIdRecordType = 11, - ProcessorApicVersionNumberRecordType = 12, - CpuUcodeRevisionDataRecordType = 13, - ProcessorStatusRecordType = 14, - ProcessorSocketTypeRecordType = 15, - ProcessorSocketNameRecordType = 16, - CacheAssociationRecordType = 17, - ProcessorMaxCoreFrequencyRecordType = 18, - ProcessorAssetTagRecordType = 19, - ProcessorMaxFsbFrequencyRecordType = 20, - ProcessorPackageNumberRecordType = 21, - ProcessorCoreFrequencyListRecordType = 22, - ProcessorFsbFrequencyListRecordType = 23, - ProcessorHealthStatusRecordType = 24, - ProcessorCoreCountRecordType = 25, - ProcessorEnabledCoreCountRecordType = 26, - ProcessorThreadCountRecordType = 27, - ProcessorCharacteristicsRecordType = 28, - ProcessorFamily2RecordType = 29, - ProcessorPartNumberRecordType = 30, -} EFI_CPU_VARIABLE_RECORD_TYPE; - -/// -/// Inconsistent with specification here: -/// In ProcSubclass specification 0.9, the union type data structure is NOT defined. -/// It's implementation-specific to simplify the code logic. -/// -typedef union { - EFI_PROCESSOR_CORE_FREQUENCY_LIST_DATA ProcessorCoreFrequencyList; - EFI_PROCESSOR_FSB_FREQUENCY_LIST_DATA ProcessorFsbFrequencyList; - EFI_PROCESSOR_SERIAL_NUMBER_DATA ProcessorSerialNumber; - EFI_PROCESSOR_CORE_FREQUENCY_DATA ProcessorCoreFrequency; - EFI_PROCESSOR_FSB_FREQUENCY_DATA ProcessorFsbFrequency; - EFI_PROCESSOR_MAX_CORE_FREQUENCY_DATA ProcessorMaxCoreFrequency; - EFI_PROCESSOR_MAX_FSB_FREQUENCY_DATA ProcessorMaxFsbFrequency; - EFI_PROCESSOR_VERSION_DATA ProcessorVersion; - EFI_PROCESSOR_MANUFACTURER_DATA ProcessorManufacturer; - EFI_PROCESSOR_ID_DATA ProcessorId; - EFI_PROCESSOR_TYPE_DATA ProcessorType; - EFI_PROCESSOR_FAMILY_DATA ProcessorFamily; - EFI_PROCESSOR_VOLTAGE_DATA ProcessorVoltage; - EFI_PROCESSOR_APIC_BASE_ADDRESS_DATA ProcessorApicBase; - EFI_PROCESSOR_APIC_ID_DATA ProcessorApicId; - EFI_PROCESSOR_APIC_VERSION_NUMBER_DATA ProcessorApicVersionNumber; - EFI_PROCESSOR_MICROCODE_REVISION_DATA CpuUcodeRevisionData; - EFI_PROCESSOR_STATUS_DATA ProcessorStatus; - EFI_PROCESSOR_SOCKET_TYPE_DATA ProcessorSocketType; - EFI_PROCESSOR_SOCKET_NAME_DATA ProcessorSocketName; - EFI_PROCESSOR_ASSET_TAG_DATA ProcessorAssetTag; - EFI_PROCESSOR_PART_NUMBER_DATA ProcessorPartNumber; - EFI_PROCESSOR_HEALTH_STATUS ProcessorHealthStatus; - EFI_PROCESSOR_PACKAGE_NUMBER_DATA ProcessorPackageNumber; - EFI_PROCESSOR_CORE_COUNT_DATA ProcessorCoreCount; - EFI_PROCESSOR_ENABLED_CORE_COUNT_DATA ProcessorEnabledCoreCount; - EFI_PROCESSOR_THREAD_COUNT_DATA ProcessorThreadCount; - EFI_PROCESSOR_CHARACTERISTICS_DATA ProcessorCharacteristics; - EFI_PROCESSOR_FAMILY2_DATA ProcessorFamily2; -} EFI_CPU_VARIABLE_RECORD; - -typedef struct { - EFI_SUBCLASS_TYPE1_HEADER DataRecordHeader; - EFI_CPU_VARIABLE_RECORD VariableRecord; -} EFI_CPU_DATA_RECORD; - -#define EFI_CACHE_SUBCLASS_VERSION 0x00010000 - -typedef EFI_EXP_BASE2_DATA EFI_CACHE_SIZE_DATA; -/// -/// Inconsistent with specification here: -/// In CacheSubclass specification 0.9, the naming is EFI_CACHE_MAXIMUM_SIZE_DATA. -/// Keep it unchanged for backward compatibilty. -/// -typedef EFI_EXP_BASE2_DATA EFI_MAXIMUM_CACHE_SIZE_DATA; -typedef EFI_EXP_BASE10_DATA EFI_CACHE_SPEED_DATA; -typedef STRING_REF EFI_CACHE_SOCKET_DATA; - -typedef struct { - UINT32 Other :1; - UINT32 Unknown :1; - UINT32 NonBurst :1; - UINT32 Burst :1; - UINT32 PipelineBurst :1; - /// - /// Inconsistent between CacheSubclass 0.9 and SMBIOS specifications here: - /// In CacheSubclass specification 0.9, the sequence of Asynchronous and Synchronous fileds - /// are opposite to SMBIOS specification. - /// - UINT32 Asynchronous :1; - UINT32 Synchronous :1; - UINT32 Reserved :25; -} EFI_CACHE_SRAM_TYPE_DATA; - -typedef EFI_CACHE_SRAM_TYPE_DATA EFI_CACHE_SRAM_INSTALL_DATA; - -typedef enum { - EfiCacheErrorOther = 1, - EfiCacheErrorUnknown = 2, - EfiCacheErrorNone = 3, - EfiCacheErrorParity = 4, - EfiCacheErrorSingleBit = 5, - EfiCacheErrorMultiBit = 6 -} EFI_CACHE_ERROR_TYPE_DATA; - -typedef enum { - EfiCacheTypeOther = 1, - EfiCacheTypeUnknown = 2, - EfiCacheTypeInstruction = 3, - EfiCacheTypeData = 4, - EfiCacheTypeUnified = 5 -} EFI_CACHE_TYPE_DATA; - -typedef enum { - EfiCacheAssociativityOther = 1, - EfiCacheAssociativityUnknown = 2, - EfiCacheAssociativityDirectMapped = 3, - EfiCacheAssociativity2Way = 4, - EfiCacheAssociativity4Way = 5, - EfiCacheAssociativityFully = 6, - EfiCacheAssociativity8Way = 7, - EfiCacheAssociativity16Way = 8 -} EFI_CACHE_ASSOCIATIVITY_DATA; - -/// -/// Inconsistent with specification here: -/// In CacheSubclass 0.9 specification. It defines the field type as UINT16. -/// In fact, it should be UINT32 type because it refers to a 32bit width data. -/// -typedef struct { - UINT32 Level :3; - UINT32 Socketed :1; - UINT32 Reserved2 :1; - UINT32 Location :2; - UINT32 Enable :1; - UINT32 OperationalMode :2; - UINT32 Reserved1 :22; -} EFI_CACHE_CONFIGURATION_DATA; - -#define EFI_CACHE_L1 1 -#define EFI_CACHE_L2 2 -#define EFI_CACHE_L3 3 -#define EFI_CACHE_L4 4 -#define EFI_CACHE_LMAX EFI_CACHE_L4 - -#define EFI_CACHE_SOCKETED 1 -#define EFI_CACHE_NOT_SOCKETED 0 - -typedef enum { - EfiCacheInternal = 0, - EfiCacheExternal = 1, - EfiCacheReserved = 2, - EfiCacheUnknown = 3 -} EFI_CACHE_LOCATION; - -#define EFI_CACHE_ENABLED 1 -#define EFI_CACHE_DISABLED 0 - -typedef enum { - EfiCacheWriteThrough = 0, - EfiCacheWriteBack = 1, - EfiCacheDynamicMode = 2, - EfiCacheUnknownMode = 3 -} EFI_CACHE_OPERATIONAL_MODE; - - -/// -/// Inconsistent with specification here: -/// In CacheSubclass specification 0.9, the enumeration type data structure is NOT defined. -/// The equivalent in specification is -/// #define EFI_CACHE_SIZE_RECORD_NUMBER 0x00000001 -/// #define EFI_CACHE_MAXIMUM_SIZE_RECORD_NUMBER 0x00000002 -/// #define EFI_CACHE_SPEED_RECORD_NUMBER 0x00000003 -/// #define EFI_CACHE_SOCKET_RECORD_NUMBER 0x00000004 -/// #define EFI_CACHE_SRAM_SUPPORT_RECORD_NUMBER 0x00000005 -/// #define EFI_CACHE_SRAM_INSTALL_RECORD_NUMBER 0x00000006 -/// #define EFI_CACHE_ERROR_SUPPORT_RECORD_NUMBER 0x00000007 -/// #define EFI_CACHE_TYPE_RECORD_NUMBER 0x00000008 -/// #define EFI_CACHE_ASSOCIATIVITY_RECORD_NUMBER 0x00000009 -/// #define EFI_CACHE_CONFIGURATION_RECORD_NUMBER 0x0000000A -/// Keep the definition unchanged for backward compatibility. -/// -typedef enum { - CacheSizeRecordType = 1, - MaximumSizeCacheRecordType = 2, - CacheSpeedRecordType = 3, - CacheSocketRecordType = 4, - CacheSramTypeRecordType = 5, - CacheInstalledSramTypeRecordType = 6, - CacheErrorTypeRecordType = 7, - CacheTypeRecordType = 8, - CacheAssociativityRecordType = 9, - CacheConfigRecordType = 10 -} EFI_CACHE_VARIABLE_RECORD_TYPE; - -/// -/// Inconsistent with specification here: -/// In CacheSubclass specification 0.9, the union type data structure is NOT defined. -/// It's implementation-specific to simplify the code logic. -/// -typedef union { - EFI_CACHE_SIZE_DATA CacheSize; - EFI_MAXIMUM_CACHE_SIZE_DATA MaximumCacheSize; - EFI_CACHE_SPEED_DATA CacheSpeed; - EFI_CACHE_SOCKET_DATA CacheSocket; - EFI_CACHE_SRAM_TYPE_DATA CacheSramType; - EFI_CACHE_SRAM_TYPE_DATA CacheInstalledSramType; - EFI_CACHE_ERROR_TYPE_DATA CacheErrorType; - EFI_CACHE_TYPE_DATA CacheType; - EFI_CACHE_ASSOCIATIVITY_DATA CacheAssociativity; - EFI_CACHE_CONFIGURATION_DATA CacheConfig; - EFI_CACHE_ASSOCIATION_DATA CacheAssociation; -} EFI_CACHE_VARIABLE_RECORD; - -typedef struct { - EFI_SUBCLASS_TYPE1_HEADER DataRecordHeader; - EFI_CACHE_VARIABLE_RECORD VariableRecord; -} EFI_CACHE_DATA_RECORD; - -#define EFI_MEMORY_SUBCLASS_VERSION 0x0100 -#define EFI_MEMORY_SIZE_RECORD_NUMBER 0x00000001 - -typedef enum _EFI_MEMORY_REGION_TYPE { - EfiMemoryRegionMemory = 0x01, - EfiMemoryRegionReserved = 0x02, - EfiMemoryRegionAcpi = 0x03, - EfiMemoryRegionNvs = 0x04 -} EFI_MEMORY_REGION_TYPE; - -/// -/// This data record refers to the size of a memory region. The regions that are -/// described can refer to physical memory, memory-mapped I/O, or reserved BIOS memory regions. -/// The unit of measurement of this data record is in bytes. -/// -typedef struct { - /// - /// A zero-based value that indicates which processor(s) can access the memory region. - /// A value of 0xFFFF indicates the region is accessible by all processors. - /// - UINT32 ProcessorNumber; - /// - /// A zero-based value that indicates the starting bus that can access the memory region. - /// - UINT16 StartBusNumber; - /// - /// A zero-based value that indicates the ending bus that can access the memory region. - /// A value of 0xFF for a PCI system indicates the region is accessible by all buses and - /// is global in scope. An example of the EndBusNumber not being 0xFF is a system - /// with two or more peer-to-host PCI bridges. - /// - UINT16 EndBusNumber; - /// - /// The type of memory region from the operating system's point of view. - /// MemoryRegionType values are equivalent to the legacy INT 15 AX = E820 BIOS - /// command values. - /// - EFI_MEMORY_REGION_TYPE MemoryRegionType; - /// - /// The size of the memory region in bytes. - /// - EFI_EXP_BASE2_DATA MemorySize; - /// - /// The starting physical address of the memory region. - /// - EFI_PHYSICAL_ADDRESS MemoryStartAddress; -} EFI_MEMORY_SIZE_DATA; - - -#define EFI_MEMORY_ARRAY_LOCATION_RECORD_NUMBER 0x00000002 - -typedef enum _EFI_MEMORY_ARRAY_LOCATION { - EfiMemoryArrayLocationOther = 0x01, - EfiMemoryArrayLocationUnknown = 0x02, - EfiMemoryArrayLocationSystemBoard = 0x03, - EfiMemoryArrayLocationIsaAddonCard = 0x04, - EfiMemoryArrayLocationEisaAddonCard = 0x05, - EfiMemoryArrayLocationPciAddonCard = 0x06, - EfiMemoryArrayLocationMcaAddonCard = 0x07, - EfiMemoryArrayLocationPcmciaAddonCard = 0x08, - EfiMemoryArrayLocationProprietaryAddonCard = 0x09, - EfiMemoryArrayLocationNuBus = 0x0A, - EfiMemoryArrayLocationPc98C20AddonCard = 0xA0, - EfiMemoryArrayLocationPc98C24AddonCard = 0xA1, - EfiMemoryArrayLocationPc98EAddonCard = 0xA2, - EfiMemoryArrayLocationPc98LocalBusAddonCard = 0xA3 -} EFI_MEMORY_ARRAY_LOCATION; - -typedef enum _EFI_MEMORY_ARRAY_USE { - EfiMemoryArrayUseOther = 0x01, - EfiMemoryArrayUseUnknown = 0x02, - EfiMemoryArrayUseSystemMemory = 0x03, - EfiMemoryArrayUseVideoMemory = 0x04, - EfiMemoryArrayUseFlashMemory = 0x05, - EfiMemoryArrayUseNonVolatileRam = 0x06, - EfiMemoryArrayUseCacheMemory = 0x07 -} EFI_MEMORY_ARRAY_USE; - -typedef enum _EFI_MEMORY_ERROR_CORRECTION { - EfiMemoryErrorCorrectionOther = 0x01, - EfiMemoryErrorCorrectionUnknown = 0x02, - EfiMemoryErrorCorrectionNone = 0x03, - EfiMemoryErrorCorrectionParity = 0x04, - EfiMemoryErrorCorrectionSingleBitEcc = 0x05, - EfiMemoryErrorCorrectionMultiBitEcc = 0x06, - EfiMemoryErrorCorrectionCrc = 0x07 -} EFI_MEMORY_ERROR_CORRECTION; - -/// -/// This data record refers to the physical memory array. This data record is a structure. -/// The type definition structure for EFI_MEMORY_ARRAY_LOCATION_DATA is in SMBIOS 2.3.4: -/// - Table 3.3.17.1, Type 16, Offset 0x4 -/// - Table 3.3.17.2, Type 16, Offset 0x5 -/// - Table 3.3.17.3, Type 16, with the following offsets: -/// -- Offset 0x6 -/// -- Offset 0x7 -/// -- Offset 0xB -/// -- Offset 0xD -/// -typedef struct { - /// - /// The physical location of the memory array. - /// - EFI_MEMORY_ARRAY_LOCATION MemoryArrayLocation; - /// - /// The memory array usage. - /// - EFI_MEMORY_ARRAY_USE MemoryArrayUse; - /// - /// The primary error correction or detection supported by this memory array. - /// - EFI_MEMORY_ERROR_CORRECTION MemoryErrorCorrection; - /// - /// The maximum memory capacity size in kilobytes. If capacity is unknown, then - /// values of MaximumMemoryCapacity.Value = 0x00 and - /// MaximumMemoryCapacity.Exponent = 0x8000 are used. - /// - EFI_EXP_BASE2_DATA MaximumMemoryCapacity; - /// - /// The number of memory slots or sockets that are available for memory devices - /// in this array. - /// - UINT16 NumberMemoryDevices; -} EFI_MEMORY_ARRAY_LOCATION_DATA; - - -#define EFI_MEMORY_ARRAY_LINK_RECORD_NUMBER 0x00000003 - -typedef enum _EFI_MEMORY_FORM_FACTOR { - EfiMemoryFormFactorOther = 0x01, - EfiMemoryFormFactorUnknown = 0x02, - EfiMemoryFormFactorSimm = 0x03, - EfiMemoryFormFactorSip = 0x04, - EfiMemoryFormFactorChip = 0x05, - EfiMemoryFormFactorDip = 0x06, - EfiMemoryFormFactorZip = 0x07, - EfiMemoryFormFactorProprietaryCard = 0x08, - EfiMemoryFormFactorDimm = 0x09, - EfiMemoryFormFactorTsop = 0x0A, - EfiMemoryFormFactorRowOfChips = 0x0B, - EfiMemoryFormFactorRimm = 0x0C, - EfiMemoryFormFactorSodimm = 0x0D, - EfiMemoryFormFactorSrimm = 0x0E, - /// - /// Inconsistent with specification here: - /// This field is NOT defined in MemSubClass specification 0.9. It's introduced for SMBIOS2.6 specification. - /// - EfiMemoryFormFactorFbDimm = 0x0F -} EFI_MEMORY_FORM_FACTOR; - -typedef enum _EFI_MEMORY_ARRAY_TYPE { - EfiMemoryTypeOther = 0x01, - EfiMemoryTypeUnknown = 0x02, - EfiMemoryTypeDram = 0x03, - EfiMemoryTypeEdram = 0x04, - EfiMemoryTypeVram = 0x05, - EfiMemoryTypeSram = 0x06, - EfiMemoryTypeRam = 0x07, - EfiMemoryTypeRom = 0x08, - EfiMemoryTypeFlash = 0x09, - EfiMemoryTypeEeprom = 0x0A, - EfiMemoryTypeFeprom = 0x0B, - EfiMemoryTypeEprom = 0x0C, - EfiMemoryTypeCdram = 0x0D, - EfiMemoryType3Dram = 0x0E, - EfiMemoryTypeSdram = 0x0F, - EfiMemoryTypeSgram = 0x10, - EfiMemoryTypeRdram = 0x11, - EfiMemoryTypeDdr = 0x12, - /// - /// Inconsistent with specification here: - /// This field is NOT defined in MemSubClass specification 0.9. It's introduced for SMBIOS2.6 specification. - /// - EfiMemoryTypeDdr2 = 0x13, - /// - /// Inconsistent with specification here: - /// This field is NOT defined in MemSubClass specification 0.9. It's introduced for SMBIOS2.6 specification. - /// - EfiMemoryTypeDdr2FbDimm = 0x14 -} EFI_MEMORY_ARRAY_TYPE; - -typedef struct { - UINT32 Reserved :1; - UINT32 Other :1; - UINT32 Unknown :1; - UINT32 FastPaged :1; - UINT32 StaticColumn :1; - UINT32 PseudoStatic :1; - UINT32 Rambus :1; - UINT32 Synchronous :1; - UINT32 Cmos :1; - UINT32 Edo :1; - UINT32 WindowDram :1; - UINT32 CacheDram :1; - UINT32 Nonvolatile :1; - UINT32 Reserved1 :19; -} EFI_MEMORY_TYPE_DETAIL; - -typedef enum { - EfiMemoryStateEnabled = 0, - EfiMemoryStateUnknown = 1, - EfiMemoryStateUnsupported = 2, - EfiMemoryStateError = 3, - EfiMemoryStateAbsent = 4, - EfiMemoryStateDisabled = 5, - /// - /// Inconsistent with specification here: - /// This field is NOT defined in MemSubClass specification 0.9. It's introduced for SMBIOS2.6 specification. - /// - EfiMemoryStatePartial = 6 -} EFI_MEMORY_STATE; - -/// -/// This data record describes a memory device. This data record is a structure. -/// The type definition structure for EFI_MEMORY_ARRAY_LINK_DATA is in SMBIOS 2.3.4. -/// -typedef struct { - /// - /// A string that identifies the physically labeled socket or board position where the - /// memory device is located. - /// - STRING_REF MemoryDeviceLocator; - /// - /// A string denoting the physically labeled bank where the memory device is located. - /// - STRING_REF MemoryBankLocator; - /// - /// A string denoting the memory manufacturer. - /// - STRING_REF MemoryManufacturer; - /// - /// A string denoting the serial number of the memory device. - /// - STRING_REF MemorySerialNumber; - /// - /// The asset tag of the memory device. - /// - STRING_REF MemoryAssetTag; - /// - /// A string denoting the part number of the memory device. - /// - STRING_REF MemoryPartNumber; - /// - /// A link to a memory array structure set. - /// - EFI_INTER_LINK_DATA MemoryArrayLink; - /// - /// A link to a memory array structure set. - /// - EFI_INTER_LINK_DATA MemorySubArrayLink; - /// - /// The total width in bits of this memory device. If there are no error correcting bits, - /// then the total width equals the data width. If the width is unknown, then set the field - /// to 0xFFFF. - /// - UINT16 MemoryTotalWidth; - /// - /// The data width in bits of the memory device. A data width of 0x00 and a total width - /// of 0x08 indicate that the device is used solely for error correction. - /// - UINT16 MemoryDataWidth; - /// - /// The size in bytes of the memory device. A value of 0x00 denotes that no device is - /// installed, while a value of all Fs denotes that the size is not known. - /// - EFI_EXP_BASE2_DATA MemoryDeviceSize; - /// - /// The form factor of the memory device. - /// - EFI_MEMORY_FORM_FACTOR MemoryFormFactor; - /// - /// A memory device set that must be populated with all devices of the same type and - /// size. A value of 0x00 indicates that the device is not part of any set. A value of 0xFF - /// indicates that the attribute is unknown. Any other value denotes the set number. - /// - UINT8 MemoryDeviceSet; - /// - /// The memory type in the socket. - /// - EFI_MEMORY_ARRAY_TYPE MemoryType; - /// - /// The memory type details. - /// - EFI_MEMORY_TYPE_DETAIL MemoryTypeDetail; - /// - /// The memory speed in megahertz (MHz). A value of 0x00 denotes that - /// the speed is unknown. - /// Inconsistent with specification here: - /// In MemSubclass specification 0.9, the naming is MemoryTypeSpeed. - /// Keep it unchanged for backward compatibilty. - /// - EFI_EXP_BASE10_DATA MemorySpeed; - /// - /// The memory state. - /// - EFI_MEMORY_STATE MemoryState; -} EFI_MEMORY_ARRAY_LINK_DATA; - - -#define EFI_MEMORY_ARRAY_START_ADDRESS_RECORD_NUMBER 0x00000004 - -/// -/// This data record refers to a specified physical memory array associated with -/// a given memory range. -/// -typedef struct { - /// - /// The starting physical address in bytes of memory mapped to a specified physical - /// memory array. - /// - EFI_PHYSICAL_ADDRESS MemoryArrayStartAddress; - /// - /// The last physical address in bytes of memory mapped to a specified physical memory - /// array. - /// - EFI_PHYSICAL_ADDRESS MemoryArrayEndAddress; - /// - /// See Physical Memory Array (Type 16) for physical memory array structures. - /// - EFI_INTER_LINK_DATA PhysicalMemoryArrayLink; - /// - /// The number of memory devices that form a single row of memory for the address - /// partition. - /// - UINT16 MemoryArrayPartitionWidth; -} EFI_MEMORY_ARRAY_START_ADDRESS_DATA; - - -#define EFI_MEMORY_DEVICE_START_ADDRESS_RECORD_NUMBER 0x00000005 - -/// -/// This data record refers to a physical memory device that is associated with -/// a given memory range. -/// -typedef struct { - /// - /// The starting physical address that is associated with the device. - /// - EFI_PHYSICAL_ADDRESS MemoryDeviceStartAddress; - /// - /// The ending physical address that is associated with the device. - /// - EFI_PHYSICAL_ADDRESS MemoryDeviceEndAddress; - /// - /// A link to the memory device data structure. - /// - EFI_INTER_LINK_DATA PhysicalMemoryDeviceLink; - /// - /// A link to the memory array data structure. - /// - EFI_INTER_LINK_DATA PhysicalMemoryArrayLink; - /// - /// The position of the memory device in a row. A value of 0x00 is reserved and a value - /// of 0xFF indicates that the position is unknown. - /// - UINT8 MemoryDevicePartitionRowPosition; - /// - /// The position of the device in an interleave. - /// - UINT8 MemoryDeviceInterleavePosition; - /// - /// The maximum number of consecutive rows from the device that are accessed in a - /// single interleave transfer. A value of 0x00 indicates that the device is not interleaved - /// and a value of 0xFF indicates that the interleave configuration is unknown. - /// - UINT8 MemoryDeviceInterleaveDataDepth; -} EFI_MEMORY_DEVICE_START_ADDRESS_DATA; - - -// -// Memory. Channel Device Type - SMBIOS Type 37 -// - -#define EFI_MEMORY_CHANNEL_TYPE_RECORD_NUMBER 0x00000006 - -typedef enum _EFI_MEMORY_CHANNEL_TYPE { - EfiMemoryChannelTypeOther = 1, - EfiMemoryChannelTypeUnknown = 2, - EfiMemoryChannelTypeRambus = 3, - EfiMemoryChannelTypeSyncLink = 4 -} EFI_MEMORY_CHANNEL_TYPE; - -/// -/// This data record refers the type of memory that is associated with the channel. This data record is a -/// structure. -/// The type definition structure for EFI_MEMORY_CHANNEL_TYPE_DATA is in SMBIOS 2.3.4, -/// Table 3.3.38, Type 37, with the following offsets: -/// - Offset 0x4 -/// - Offset 0x5 -/// - Offset 0x6 -/// -typedef struct { - /// - /// The type of memory that is associated with the channel. - /// - EFI_MEMORY_CHANNEL_TYPE MemoryChannelType; - /// - /// The maximum load that is supported by the channel. - /// - UINT8 MemoryChannelMaximumLoad; - /// - /// The number of memory devices on this channel. - /// - UINT8 MemoryChannelDeviceCount; -} EFI_MEMORY_CHANNEL_TYPE_DATA; - -#define EFI_MEMORY_CHANNEL_DEVICE_RECORD_NUMBER 0x00000007 - -/// -/// This data record refers to the memory device that is associated with the memory channel. This data -/// record is a structure. -/// The type definition structure for EFI_MEMORY_CHANNEL_DEVICE_DATA is in SMBIOS 2.3.4, -/// Table 3.3.38, Type 37, with the following offsets: -/// - Offset 0x7 -/// - Offset 0x8 -/// -typedef struct { - /// - /// A number between one and MemoryChannelDeviceCount plus an arbitrary base. - /// - UINT8 DeviceId; - /// - /// The Link of the associated memory device. See Memory Device (Type 17) for - /// memory devices. - /// - EFI_INTER_LINK_DATA DeviceLink; - /// - /// The number of load units that this device consumes. - /// - UINT8 MemoryChannelDeviceLoad; -} EFI_MEMORY_CHANNEL_DEVICE_DATA; - -// -// Memory. Controller Information - SMBIOS Type 5 -// -/// -/// Inconsistent with specification here: -/// In MemSubclass specification 0.9, the following data structures are NOT defined. -/// It's introduced for SmBios 2.6 type 5. -/// -#define EFI_MEMORY_CONTROLLER_INFORMATION_RECORD_NUMBER 0x00000008 - -/// -/// Inconsistent with specification here: -/// In MemSubclass specification 0.9, the following data structures are NOT defined. -/// It's introduced for SmBios 2.6 type 5. -/// -typedef enum { - EfiErrorDetectingMethodOther = 1, - EfiErrorDetectingMethodUnknown = 2, - EfiErrorDetectingMethodNone = 3, - EfiErrorDetectingMethodParity = 4, - EfiErrorDetectingMethod32Ecc = 5, - EfiErrorDetectingMethod64Ecc = 6, - EfiErrorDetectingMethod128Ecc = 7, - EfiErrorDetectingMethodCrc = 8 -} EFI_MEMORY_ERROR_DETECT_METHOD_TYPE; - -/// -/// Inconsistent with specification here: -/// In MemSubclass specification 0.9, the following data structures are NOT defined. -/// It's introduced for SmBios 2.6 type 5. -/// -typedef struct { - UINT8 Other :1; - UINT8 Unknown :1; - UINT8 None :1; - UINT8 SingleBitErrorCorrect :1; - UINT8 DoubleBitErrorCorrect :1; - UINT8 ErrorScrubbing :1; - UINT8 Reserved :2; -} EFI_MEMORY_ERROR_CORRECT_CAPABILITY; - -/// -/// Inconsistent with specification here: -/// In MemSubclass specification 0.9, the following data structures are NOT defined. -/// It's introduced for SmBios 2.6 type 5. -/// -typedef enum { - EfiMemoryInterleaveOther = 1, - EfiMemoryInterleaveUnknown = 2, - EfiMemoryInterleaveOneWay = 3, - EfiMemoryInterleaveTwoWay = 4, - EfiMemoryInterleaveFourWay = 5, - EfiMemoryInterleaveEightWay = 6, - EfiMemoryInterleaveSixteenWay = 7 -} EFI_MEMORY_SUPPORT_INTERLEAVE_TYPE; - -/// -/// Inconsistent with specification here: -/// In MemSubclass specification 0.9, the following data structures are NOT defined. -/// It's introduced for SmBios 2.6 type 5. -/// -typedef struct { - UINT16 Other :1; - UINT16 Unknown :1; - UINT16 SeventyNs:1; - UINT16 SixtyNs :1; - UINT16 FiftyNs :1; - UINT16 Reserved :11; -} EFI_MEMORY_SPEED_TYPE; - -/// -/// Inconsistent with specification here: -/// In MemSubclass specification 0.9, the following data structures are NOT defined. -/// It's introduced for SmBios 2.6 type 5. -/// -typedef struct { - UINT16 Other :1; - UINT16 Unknown :1; - UINT16 Standard :1; - UINT16 FastPageMode:1; - UINT16 EDO :1; - UINT16 Parity :1; - UINT16 ECC :1; - UINT16 SIMM :1; - UINT16 DIMM :1; - UINT16 BurstEdo :1; - UINT16 SDRAM :1; - UINT16 Reserved :5; -} EFI_MEMORY_SUPPORTED_TYPE; - -/// -/// Inconsistent with specification here: -/// In MemSubclass specification 0.9, the following data structures are NOT defined. -/// It's introduced for SmBios 2.6 type 5. -/// -typedef struct { - UINT8 Five :1; - UINT8 Three :1; - UINT8 Two :1; - UINT8 Reserved:5; -} EFI_MEMORY_MODULE_VOLTAGE_TYPE; - -/// -/// EFI_MEMORY_CONTROLLER_INFORMATION is obsolete -/// Use EFI_MEMORY_CONTROLLER_INFORMATION_DATA instead -/// -/// Inconsistent with specification here: -/// In MemSubclass specification 0.9, the following data structures are NOT defined. -/// It's introduced for SmBios 2.6 type 5. -/// -typedef struct { - EFI_MEMORY_ERROR_DETECT_METHOD_TYPE ErrorDetectingMethod; - EFI_MEMORY_ERROR_CORRECT_CAPABILITY ErrorCorrectingCapability; - EFI_MEMORY_SUPPORT_INTERLEAVE_TYPE MemorySupportedInterleave; - EFI_MEMORY_SUPPORT_INTERLEAVE_TYPE MemoryCurrentInterleave; - UINT8 MaxMemoryModuleSize; - EFI_MEMORY_SPEED_TYPE MemorySpeedType; - EFI_MEMORY_SUPPORTED_TYPE MemorySupportedType; - EFI_MEMORY_MODULE_VOLTAGE_TYPE MemoryModuleVoltage; - UINT8 NumberofMemorySlot; - EFI_MEMORY_ERROR_CORRECT_CAPABILITY EnabledCorrectingCapability; - UINT16 *MemoryModuleConfigHandles; -} EFI_MEMORY_CONTROLLER_INFORMATION; - -/// -/// Inconsistent with specification here: -/// In MemSubclass specification 0.9, the following data structures are NOT defined. -/// It's introduced for SmBios 2.6 type 5. -/// -typedef struct { - EFI_MEMORY_ERROR_DETECT_METHOD_TYPE ErrorDetectingMethod; - EFI_MEMORY_ERROR_CORRECT_CAPABILITY ErrorCorrectingCapability; - EFI_MEMORY_SUPPORT_INTERLEAVE_TYPE MemorySupportedInterleave; - EFI_MEMORY_SUPPORT_INTERLEAVE_TYPE MemoryCurrentInterleave; - UINT8 MaxMemoryModuleSize; - EFI_MEMORY_SPEED_TYPE MemorySpeedType; - EFI_MEMORY_SUPPORTED_TYPE MemorySupportedType; - EFI_MEMORY_MODULE_VOLTAGE_TYPE MemoryModuleVoltage; - UINT8 NumberofMemorySlot; - EFI_MEMORY_ERROR_CORRECT_CAPABILITY EnabledCorrectingCapability; - EFI_INTER_LINK_DATA MemoryModuleConfig[1]; -} EFI_MEMORY_CONTROLLER_INFORMATION_DATA; - -/// -/// Memory. Error Information - SMBIOS Type 18 -/// -/// Inconsistent with specification here: -/// In MemSubclass specification 0.9, the following data structures are NOT defined. -/// It's introduced for SmBios 2.6 type 18. -/// -#define EFI_MEMORY_32BIT_ERROR_INFORMATION_RECORD_NUMBER 0x00000009 -/// -/// Inconsistent with specification here: -/// In MemSubclass specification 0.9, the following data structures are NOT defined. -/// It's introduced for SmBios 2.6 type 18. -/// -typedef enum { - EfiMemoryErrorOther = 1, - EfiMemoryErrorUnknown = 2, - EfiMemoryErrorOk = 3, - EfiMemoryErrorBadRead = 4, - EfiMemoryErrorParity = 5, - EfiMemoryErrorSigleBit = 6, - EfiMemoryErrorDoubleBit = 7, - EfiMemoryErrorMultiBit = 8, - EfiMemoryErrorNibble = 9, - EfiMemoryErrorChecksum = 10, - EfiMemoryErrorCrc = 11, - EfiMemoryErrorCorrectSingleBit = 12, - EfiMemoryErrorCorrected = 13, - EfiMemoryErrorUnCorrectable = 14 -} EFI_MEMORY_ERROR_TYPE; -/// -/// Inconsistent with specification here: -/// In MemSubclass specification 0.9, the following data structures are NOT defined. -/// It's introduced for SmBios 2.6 type 18. -/// -typedef enum { - EfiMemoryGranularityOther = 1, - EfiMemoryGranularityOtherUnknown = 2, - EfiMemoryGranularityDeviceLevel = 3, - EfiMemoryGranularityMemPartitionLevel = 4 -} EFI_MEMORY_ERROR_GRANULARITY_TYPE; -/// -/// Inconsistent with specification here: -/// In MemSubclass specification 0.9, the following data structures are NOT defined. -/// It's introduced for SmBios 2.6 type 18. -/// -typedef enum { - EfiMemoryErrorOperationOther = 1, - EfiMemoryErrorOperationUnknown = 2, - EfiMemoryErrorOperationRead = 3, - EfiMemoryErrorOperationWrite = 4, - EfiMemoryErrorOperationPartialWrite = 5 -} EFI_MEMORY_ERROR_OPERATION_TYPE; -/// -/// Inconsistent with specification here: -/// In MemSubclass specification 0.9, the following data structures are NOT defined. -/// It's introduced for SmBios 2.6 type 18. -/// -typedef struct { - EFI_MEMORY_ERROR_TYPE MemoryErrorType; - EFI_MEMORY_ERROR_GRANULARITY_TYPE MemoryErrorGranularity; - EFI_MEMORY_ERROR_OPERATION_TYPE MemoryErrorOperation; - UINT32 VendorSyndrome; - UINT32 MemoryArrayErrorAddress; - UINT32 DeviceErrorAddress; - UINT32 DeviceErrorResolution; -} EFI_MEMORY_32BIT_ERROR_INFORMATION; - -/// -/// Memory. Error Information - SMBIOS Type 33. -/// -/// Inconsistent with specification here: -/// In MemSubclass specification 0.9, the following data structures are NOT defined. -/// It's introduced for SmBios 2.6 type 33. -/// -#define EFI_MEMORY_64BIT_ERROR_INFORMATION_RECORD_NUMBER 0x0000000A - -/// -/// Inconsistent with specification here: -/// In MemSubclass specification 0.9, the following data structures are NOT defined. -/// It's introduced for SmBios 2.6 type 33. -/// -typedef struct { - EFI_MEMORY_ERROR_TYPE MemoryErrorType; - EFI_MEMORY_ERROR_GRANULARITY_TYPE MemoryErrorGranularity; - EFI_MEMORY_ERROR_OPERATION_TYPE MemoryErrorOperation; - UINT32 VendorSyndrome; - UINT64 MemoryArrayErrorAddress; - UINT64 DeviceErrorAddress; - UINT32 DeviceErrorResolution; -} EFI_MEMORY_64BIT_ERROR_INFORMATION; - -/// -/// Inconsistent with specification here: -/// In MemSubclass specification 0.9, the following data structures are NOT defined. -/// It is implementation-specific to simplify the code logic. -/// -typedef union _EFI_MEMORY_SUBCLASS_RECORDS { - EFI_MEMORY_SIZE_DATA SizeData; - EFI_MEMORY_ARRAY_LOCATION_DATA ArrayLocationData; - EFI_MEMORY_ARRAY_LINK_DATA ArrayLink; - EFI_MEMORY_ARRAY_START_ADDRESS_DATA ArrayStartAddress; - EFI_MEMORY_DEVICE_START_ADDRESS_DATA DeviceStartAddress; - EFI_MEMORY_CHANNEL_TYPE_DATA ChannelTypeData; - EFI_MEMORY_CHANNEL_DEVICE_DATA ChannelDeviceData; - EFI_MEMORY_CONTROLLER_INFORMATION MemoryControllerInfo; - EFI_MEMORY_32BIT_ERROR_INFORMATION Memory32bitErrorInfo; - EFI_MEMORY_64BIT_ERROR_INFORMATION Memory64bitErrorInfo; -} EFI_MEMORY_SUBCLASS_RECORDS; - -typedef struct { - EFI_SUBCLASS_TYPE1_HEADER Header; - EFI_MEMORY_SUBCLASS_RECORDS Record; -} EFI_MEMORY_SUBCLASS_DRIVER_DATA; - -#define EFI_MISC_SUBCLASS_VERSION 0x0100 - -#pragma pack(1) - -// -// Last PCI Bus Number -// -#define EFI_MISC_LAST_PCI_BUS_RECORD_NUMBER 0x00000001 - -typedef struct { - UINT8 LastPciBus; -} EFI_MISC_LAST_PCI_BUS_DATA; - -// -// Misc. BIOS Vendor - SMBIOS Type 0 -// -#define EFI_MISC_BIOS_VENDOR_RECORD_NUMBER 0x00000002 - -typedef struct { - UINT64 Reserved1 :2; - UINT64 Unknown :1; - UINT64 BiosCharacteristicsNotSupported :1; - UINT64 IsaIsSupported :1; - UINT64 McaIsSupported :1; - UINT64 EisaIsSupported :1; - UINT64 PciIsSupported :1; - UINT64 PcmciaIsSupported :1; - UINT64 PlugAndPlayIsSupported :1; - UINT64 ApmIsSupported :1; - UINT64 BiosIsUpgradable :1; - UINT64 BiosShadowingAllowed :1; - UINT64 VlVesaIsSupported :1; - UINT64 EscdSupportIsAvailable :1; - UINT64 BootFromCdIsSupported :1; - UINT64 SelectableBootIsSupported :1; - UINT64 RomBiosIsSocketed :1; - UINT64 BootFromPcmciaIsSupported :1; - UINT64 EDDSpecificationIsSupported :1; - UINT64 JapaneseNecFloppyIsSupported :1; - UINT64 JapaneseToshibaFloppyIsSupported :1; - UINT64 Floppy525_360IsSupported :1; - UINT64 Floppy525_12IsSupported :1; - UINT64 Floppy35_720IsSupported :1; - UINT64 Floppy35_288IsSupported :1; - UINT64 PrintScreenIsSupported :1; - UINT64 Keyboard8042IsSupported :1; - UINT64 SerialIsSupported :1; - UINT64 PrinterIsSupported :1; - UINT64 CgaMonoIsSupported :1; - UINT64 NecPc98 :1; - UINT64 AcpiIsSupported :1; - UINT64 UsbLegacyIsSupported :1; - UINT64 AgpIsSupported :1; - UINT64 I20BootIsSupported :1; - UINT64 Ls120BootIsSupported :1; - UINT64 AtapiZipDriveBootIsSupported :1; - UINT64 Boot1394IsSupported :1; - UINT64 SmartBatteryIsSupported :1; - UINT64 BiosBootSpecIsSupported :1; - UINT64 FunctionKeyNetworkBootIsSupported :1; - UINT64 Reserved :22; -} EFI_MISC_BIOS_CHARACTERISTICS; - -typedef struct { - UINT64 BiosReserved :16; - UINT64 SystemReserved:16; - UINT64 Reserved :32; -} EFI_MISC_BIOS_CHARACTERISTICS_EXTENSION; - -typedef struct { - STRING_REF BiosVendor; - STRING_REF BiosVersion; - STRING_REF BiosReleaseDate; - EFI_PHYSICAL_ADDRESS BiosStartingAddress; - EFI_EXP_BASE2_DATA BiosPhysicalDeviceSize; - EFI_MISC_BIOS_CHARACTERISTICS BiosCharacteristics1; - EFI_MISC_BIOS_CHARACTERISTICS_EXTENSION - BiosCharacteristics2; - /// - /// Inconsistent with specification here: - /// In MiscSubclass specification 0.9, this data structure and corrsponding fields are NOT defined. - /// It's introduced for SmBios 2.6 specification type 0. - /// - UINT8 BiosMajorRelease; - /// - /// Inconsistent with specification here: - /// In MiscSubclass specification 0.9, this data structure and corrsponding fields are NOT defined. - /// It's introduced for SmBios 2.6 specification type 0. - /// - UINT8 BiosMinorRelease; - /// - /// Inconsistent with specification here: - /// In MiscSubclass specification 0.9, this data structure and corrsponding fields are NOT defined. - /// It's introduced for SmBios 2.6 specification type 0. - /// - UINT8 BiosEmbeddedFirmwareMajorRelease; - /// - /// Inconsistent with specification here: - /// In MiscSubclass specification 0.9, this data structure and corrsponding fields are NOT defined. - /// It's introduced for SmBios 2.6 specification type 0. - /// - UINT8 BiosEmbeddedFirmwareMinorRelease; -} EFI_MISC_BIOS_VENDOR_DATA; - -// -// Misc. System Manufacturer - SMBIOS Type 1 -// -#define EFI_MISC_SYSTEM_MANUFACTURER_RECORD_NUMBER 0x00000003 - -typedef enum { - EfiSystemWakeupTypeReserved = 0, - EfiSystemWakeupTypeOther = 1, - EfiSystemWakeupTypeUnknown = 2, - EfiSystemWakeupTypeApmTimer = 3, - EfiSystemWakeupTypeModemRing = 4, - EfiSystemWakeupTypeLanRemote = 5, - EfiSystemWakeupTypePowerSwitch = 6, - EfiSystemWakeupTypePciPme = 7, - EfiSystemWakeupTypeAcPowerRestored = 8 -} EFI_MISC_SYSTEM_WAKEUP_TYPE; - -typedef struct { - STRING_REF SystemManufacturer; - STRING_REF SystemProductName; - STRING_REF SystemVersion; - STRING_REF SystemSerialNumber; - EFI_GUID SystemUuid; - EFI_MISC_SYSTEM_WAKEUP_TYPE SystemWakeupType; - /// - /// Inconsistent with specification here: - /// In MiscSubclass specification 0.9, this data structure and corrsponding fields are NOT defined. - /// It's introduced for SmBios 2.6 specification type 1. - /// - STRING_REF SystemSKUNumber; - /// - /// Inconsistent with specification here: - /// In MiscSubclass specification 0.9, this data structure and corrsponding fields are NOT defined. - /// It's introduced for SmBios 2.6 specification type 1. - /// - STRING_REF SystemFamily; -} EFI_MISC_SYSTEM_MANUFACTURER_DATA; - -// -// Misc. Base Board Manufacturer - SMBIOS Type 2 -// -#define EFI_MISC_BASE_BOARD_MANUFACTURER_RECORD_NUMBER 0x00000004 - -typedef struct { - UINT32 Motherboard :1; - UINT32 RequiresDaughterCard :1; - UINT32 Removable :1; - UINT32 Replaceable :1; - UINT32 HotSwappable :1; - UINT32 Reserved :27; -} EFI_BASE_BOARD_FEATURE_FLAGS; - -typedef enum { - EfiBaseBoardTypeUnknown = 1, - EfiBaseBoardTypeOther = 2, - EfiBaseBoardTypeServerBlade = 3, - EfiBaseBoardTypeConnectivitySwitch = 4, - EfiBaseBoardTypeSystemManagementModule = 5, - EfiBaseBoardTypeProcessorModule = 6, - EfiBaseBoardTypeIOModule = 7, - EfiBaseBoardTypeMemoryModule = 8, - EfiBaseBoardTypeDaughterBoard = 9, - EfiBaseBoardTypeMotherBoard = 0xA, - EfiBaseBoardTypeProcessorMemoryModule = 0xB, - EfiBaseBoardTypeProcessorIOModule = 0xC, - EfiBaseBoardTypeInterconnectBoard = 0xD -} EFI_BASE_BOARD_TYPE; - -typedef struct { - STRING_REF BaseBoardManufacturer; - STRING_REF BaseBoardProductName; - STRING_REF BaseBoardVersion; - STRING_REF BaseBoardSerialNumber; - STRING_REF BaseBoardAssetTag; - STRING_REF BaseBoardChassisLocation; - EFI_BASE_BOARD_FEATURE_FLAGS BaseBoardFeatureFlags; - EFI_BASE_BOARD_TYPE BaseBoardType; - EFI_INTER_LINK_DATA BaseBoardChassisLink; - UINT32 BaseBoardNumberLinks; - EFI_INTER_LINK_DATA LinkN; -} EFI_MISC_BASE_BOARD_MANUFACTURER_DATA; - -// -// Misc. System/Chassis Enclosure - SMBIOS Type 3 -// -#define EFI_MISC_CHASSIS_MANUFACTURER_RECORD_NUMBER 0x00000005 - -typedef enum { - EfiMiscChassisTypeOther = 0x1, - EfiMiscChassisTypeUnknown = 0x2, - EfiMiscChassisTypeDeskTop = 0x3, - EfiMiscChassisTypeLowProfileDesktop = 0x4, - EfiMiscChassisTypePizzaBox = 0x5, - EfiMiscChassisTypeMiniTower = 0x6, - EfiMiscChassisTypeTower = 0x7, - EfiMiscChassisTypePortable = 0x8, - EfiMiscChassisTypeLapTop = 0x9, - EfiMiscChassisTypeNotebook = 0xA, - EfiMiscChassisTypeHandHeld = 0xB, - EfiMiscChassisTypeDockingStation = 0xC, - EfiMiscChassisTypeAllInOne = 0xD, - EfiMiscChassisTypeSubNotebook = 0xE, - EfiMiscChassisTypeSpaceSaving = 0xF, - EfiMiscChassisTypeLunchBox = 0x10, - EfiMiscChassisTypeMainServerChassis = 0x11, - EfiMiscChassisTypeExpansionChassis = 0x12, - EfiMiscChassisTypeSubChassis = 0x13, - EfiMiscChassisTypeBusExpansionChassis = 0x14, - EfiMiscChassisTypePeripheralChassis = 0x15, - EfiMiscChassisTypeRaidChassis = 0x16, - EfiMiscChassisTypeRackMountChassis = 0x17, - EfiMiscChassisTypeSealedCasePc = 0x18, - EfiMiscChassisMultiSystemChassis = 0x19 -} EFI_MISC_CHASSIS_TYPE; - -typedef struct { - /// - /// Inconsistent with specification here: - /// In MiscSubclass 0.9 specification, it has the incorrect field name "EFI_MISC_CHASSIS_TYPE". - /// Change it to "ChassisType" to pass build. - /// - UINT32 ChassisType :16; - UINT32 ChassisLockPresent:1; - UINT32 Reserved :15; -} EFI_MISC_CHASSIS_STATUS; - -typedef enum { - EfiChassisStateOther = 0x01, - EfiChassisStateUnknown = 0x02, - EfiChassisStateSafe = 0x03, - EfiChassisStateWarning = 0x04, - EfiChassisStateCritical = 0x05, - EfiChassisStateNonRecoverable = 0x06 -} EFI_MISC_CHASSIS_STATE; - -typedef enum { - EfiChassisSecurityStatusOther = 0x01, - EfiChassisSecurityStatusUnknown = 0x02, - EfiChassisSecurityStatusNone = 0x03, - EfiChassisSecurityStatusExternalInterfaceLockedOut = 0x04, - EfiChassisSecurityStatusExternalInterfaceLockedEnabled = 0x05 -} EFI_MISC_CHASSIS_SECURITY_STATE; - -typedef struct { - UINT32 RecordType :1; - UINT32 Type :7; - UINT32 Reserved :24; -} EFI_MISC_ELEMENT_TYPE; - -typedef struct { - EFI_MISC_ELEMENT_TYPE ChassisElementType; - EFI_INTER_LINK_DATA ChassisElementStructure; - EFI_BASE_BOARD_TYPE ChassisBaseBoard; - UINT32 ChassisElementMinimum; - UINT32 ChassisElementMaximum; -} EFI_MISC_ELEMENTS; - -typedef struct { - STRING_REF ChassisManufacturer; - STRING_REF ChassisVersion; - STRING_REF ChassisSerialNumber; - STRING_REF ChassisAssetTag; - EFI_MISC_CHASSIS_STATUS ChassisType; - EFI_MISC_CHASSIS_STATE ChassisBootupState; - EFI_MISC_CHASSIS_STATE ChassisPowerSupplyState; - EFI_MISC_CHASSIS_STATE ChassisThermalState; - EFI_MISC_CHASSIS_SECURITY_STATE ChassisSecurityState; - UINT32 ChassisOemDefined; - UINT32 ChassisHeight; - UINT32 ChassisNumberPowerCords; - UINT32 ChassisElementCount; - UINT32 ChassisElementRecordLength; - EFI_MISC_ELEMENTS ChassisElements; -} EFI_MISC_CHASSIS_MANUFACTURER_DATA; - -// -// Misc. Port Connector Information - SMBIOS Type 8 -// -#define EFI_MISC_PORT_INTERNAL_CONNECTOR_DESIGNATOR_RECORD_NUMBER 0x00000006 - -typedef enum { - EfiPortConnectorTypeNone = 0x00, - EfiPortConnectorTypeCentronics = 0x01, - EfiPortConnectorTypeMiniCentronics = 0x02, - EfiPortConnectorTypeProprietary = 0x03, - EfiPortConnectorTypeDB25Male = 0x04, - EfiPortConnectorTypeDB25Female = 0x05, - EfiPortConnectorTypeDB15Male = 0x06, - EfiPortConnectorTypeDB15Female = 0x07, - EfiPortConnectorTypeDB9Male = 0x08, - EfiPortConnectorTypeDB9Female = 0x09, - EfiPortConnectorTypeRJ11 = 0x0A, - EfiPortConnectorTypeRJ45 = 0x0B, - EfiPortConnectorType50PinMiniScsi = 0x0C, - EfiPortConnectorTypeMiniDin = 0x0D, - EfiPortConnectorTypeMicriDin = 0x0E, - EfiPortConnectorTypePS2 = 0x0F, - EfiPortConnectorTypeInfrared = 0x10, - EfiPortConnectorTypeHpHil = 0x11, - EfiPortConnectorTypeUsb = 0x12, - EfiPortConnectorTypeSsaScsi = 0x13, - EfiPortConnectorTypeCircularDin8Male = 0x14, - EfiPortConnectorTypeCircularDin8Female = 0x15, - EfiPortConnectorTypeOnboardIde = 0x16, - EfiPortConnectorTypeOnboardFloppy = 0x17, - EfiPortConnectorType9PinDualInline = 0x18, - EfiPortConnectorType25PinDualInline = 0x19, - EfiPortConnectorType50PinDualInline = 0x1A, - EfiPortConnectorType68PinDualInline = 0x1B, - EfiPortConnectorTypeOnboardSoundInput = 0x1C, - EfiPortConnectorTypeMiniCentronicsType14 = 0x1D, - EfiPortConnectorTypeMiniCentronicsType26 = 0x1E, - EfiPortConnectorTypeHeadPhoneMiniJack = 0x1F, - EfiPortConnectorTypeBNC = 0x20, - EfiPortConnectorType1394 = 0x21, - EfiPortConnectorTypePC98 = 0xA0, - EfiPortConnectorTypePC98Hireso = 0xA1, - EfiPortConnectorTypePCH98 = 0xA2, - EfiPortConnectorTypePC98Note = 0xA3, - EfiPortConnectorTypePC98Full = 0xA4, - EfiPortConnectorTypeOther = 0xFF -} EFI_MISC_PORT_CONNECTOR_TYPE; - -typedef enum { - EfiPortTypeNone = 0x00, - EfiPortTypeParallelXtAtCompatible = 0x01, - EfiPortTypeParallelPortPs2 = 0x02, - EfiPortTypeParallelPortEcp = 0x03, - EfiPortTypeParallelPortEpp = 0x04, - EfiPortTypeParallelPortEcpEpp = 0x05, - EfiPortTypeSerialXtAtCompatible = 0x06, - EfiPortTypeSerial16450Compatible = 0x07, - EfiPortTypeSerial16550Compatible = 0x08, - EfiPortTypeSerial16550ACompatible = 0x09, - EfiPortTypeScsi = 0x0A, - EfiPortTypeMidi = 0x0B, - EfiPortTypeJoyStick = 0x0C, - EfiPortTypeKeyboard = 0x0D, - EfiPortTypeMouse = 0x0E, - EfiPortTypeSsaScsi = 0x0F, - EfiPortTypeUsb = 0x10, - EfiPortTypeFireWire = 0x11, - EfiPortTypePcmciaTypeI = 0x12, - EfiPortTypePcmciaTypeII = 0x13, - EfiPortTypePcmciaTypeIII = 0x14, - EfiPortTypeCardBus = 0x15, - EfiPortTypeAccessBusPort = 0x16, - EfiPortTypeScsiII = 0x17, - EfiPortTypeScsiWide = 0x18, - EfiPortTypePC98 = 0x19, - EfiPortTypePC98Hireso = 0x1A, - EfiPortTypePCH98 = 0x1B, - EfiPortTypeVideoPort = 0x1C, - EfiPortTypeAudioPort = 0x1D, - EfiPortTypeModemPort = 0x1E, - EfiPortTypeNetworkPort = 0x1F, - EfiPortType8251Compatible = 0xA0, - EfiPortType8251FifoCompatible = 0xA1, - EfiPortTypeOther = 0xFF -} EFI_MISC_PORT_TYPE; - -typedef struct { - STRING_REF PortInternalConnectorDesignator; - STRING_REF PortExternalConnectorDesignator; - EFI_MISC_PORT_CONNECTOR_TYPE PortInternalConnectorType; - EFI_MISC_PORT_CONNECTOR_TYPE PortExternalConnectorType; - EFI_MISC_PORT_TYPE PortType; - /// - /// Inconsistent with specification here: - /// In MiscSubclass specification 0.9, this type of field is defined as EFI_DEVICE_PATH_PROTOCOL, - /// which causes the implementation some complexity. Keep it unchanged for backward - /// compatibility. - /// - EFI_MISC_PORT_DEVICE_PATH PortPath; -} EFI_MISC_PORT_INTERNAL_CONNECTOR_DESIGNATOR_DATA; - -// -// Misc. System Slots - SMBIOS Type 9 -// -#define EFI_MISC_SYSTEM_SLOT_DESIGNATION_RECORD_NUMBER 0x00000007 - -typedef enum { - EfiSlotTypeOther = 0x01, - EfiSlotTypeUnknown = 0x02, - EfiSlotTypeIsa = 0x03, - EfiSlotTypeMca = 0x04, - EfiSlotTypeEisa = 0x05, - EfiSlotTypePci = 0x06, - EfiSlotTypePcmcia = 0x07, - EfiSlotTypeVlVesa = 0x08, - EfiSlotTypeProprietary = 0x09, - EfiSlotTypeProcessorCardSlot = 0x0A, - EfiSlotTypeProprietaryMemoryCardSlot = 0x0B, - EfiSlotTypeIORiserCardSlot = 0x0C, - EfiSlotTypeNuBus = 0x0D, - EfiSlotTypePci66MhzCapable = 0x0E, - EfiSlotTypeAgp = 0x0F, - /// - /// Inconsistent with specification here: - /// In MiscSubclass specification 0.9, its naming should be EfiSlotTypeAgp2X - /// rather than EfiSlotTypeApg2X. - /// - EfiSlotTypeAgp2X = 0x10, - EfiSlotTypeAgp4X = 0x11, - EfiSlotTypePciX = 0x12, - EfiSlotTypeAgp8x = 0x13, - EfiSlotTypePC98C20 = 0xA0, - EfiSlotTypePC98C24 = 0xA1, - EfiSlotTypePC98E = 0xA2, - EfiSlotTypePC98LocalBus = 0xA3, - EfiSlotTypePC98Card = 0xA4, - /// - /// Inconsistent with specification here: - /// In MiscSubclass specification 0.9, these fields aren't defined. - /// They're introduced for SmBios 2.6 specification type 9. - /// - EfiSlotTypePciExpress = 0xA5, - EfiSlotTypePciExpressX1 = 0xA6, - EfiSlotTypePciExpressX2 = 0xA7, - EfiSlotTypePciExpressX4 = 0xA8, - EfiSlotTypePciExpressX8 = 0xA9, - EfiSlotTypePciExpressX16 = 0xAA -} EFI_MISC_SLOT_TYPE; - -typedef enum { - EfiSlotDataBusWidthOther = 0x01, - EfiSlotDataBusWidthUnknown = 0x02, - EfiSlotDataBusWidth8Bit = 0x03, - EfiSlotDataBusWidth16Bit = 0x04, - EfiSlotDataBusWidth32Bit = 0x05, - EfiSlotDataBusWidth64Bit = 0x06, - EfiSlotDataBusWidth128Bit = 0x07, - /// - /// Inconsistent with specification here: - /// In MiscSubclass specification 0.9, these fields aren't defined. - /// They're introduced for SmBios 2.6 specification type 9. - /// - EfiSlotDataBusWidth1xOrx1 = 0x8, - EfiSlotDataBusWidth2xOrx2 = 0x9, - EfiSlotDataBusWidth4xOrx4 = 0xA, - EfiSlotDataBusWidth8xOrx8 = 0xB, - EfiSlotDataBusWidth12xOrx12 = 0xC, - EfiSlotDataBusWidth16xOrx16 = 0xD, - EfiSlotDataBusWidth32xOrx32 = 0xE -} EFI_MISC_SLOT_DATA_BUS_WIDTH; - -typedef enum { - EfiSlotUsageOther = 1, - EfiSlotUsageUnknown = 2, - EfiSlotUsageAvailable = 3, - EfiSlotUsageInUse = 4 -} EFI_MISC_SLOT_USAGE; - -typedef enum { - EfiSlotLengthOther = 1, - EfiSlotLengthUnknown = 2, - EfiSlotLengthShort = 3, - EfiSlotLengthLong = 4 -} EFI_MISC_SLOT_LENGTH; - -typedef struct { - UINT32 CharacteristicsUnknown :1; - UINT32 Provides50Volts :1; - UINT32 Provides33Volts :1; - UINT32 SharedSlot :1; - UINT32 PcCard16Supported :1; - UINT32 CardBusSupported :1; - UINT32 ZoomVideoSupported :1; - UINT32 ModemRingResumeSupported:1; - UINT32 PmeSignalSupported :1; - UINT32 HotPlugDevicesSupported :1; - UINT32 SmbusSignalSupported :1; - UINT32 Reserved :21; -} EFI_MISC_SLOT_CHARACTERISTICS; - -typedef struct { - STRING_REF SlotDesignation; - EFI_MISC_SLOT_TYPE SlotType; - EFI_MISC_SLOT_DATA_BUS_WIDTH SlotDataBusWidth; - EFI_MISC_SLOT_USAGE SlotUsage; - EFI_MISC_SLOT_LENGTH SlotLength; - UINT16 SlotId; - EFI_MISC_SLOT_CHARACTERISTICS SlotCharacteristics; - EFI_DEVICE_PATH_PROTOCOL SlotDevicePath; -} EFI_MISC_SYSTEM_SLOT_DESIGNATION_DATA; - -// -// Misc. Onboard Device - SMBIOS Type 10 -// -#define EFI_MISC_ONBOARD_DEVICE_RECORD_NUMBER 0x00000008 - -typedef enum { - EfiOnBoardDeviceTypeOther = 1, - EfiOnBoardDeviceTypeUnknown = 2, - EfiOnBoardDeviceTypeVideo = 3, - EfiOnBoardDeviceTypeScsiController = 4, - EfiOnBoardDeviceTypeEthernet = 5, - EfiOnBoardDeviceTypeTokenRing = 6, - EfiOnBoardDeviceTypeSound = 7 -} EFI_MISC_ONBOARD_DEVICE_TYPE; - -typedef struct { - UINT32 DeviceType :16; - UINT32 DeviceEnabled :1; - UINT32 Reserved :15; -} EFI_MISC_ONBOARD_DEVICE_STATUS; - -typedef struct { - STRING_REF OnBoardDeviceDescription; - /// - /// Inconsistent with specification here: - /// In MiscSubclass specification 0.9, the name is OnBoardDeviceType. - /// Keep it unchanged for backward compatibilty. - /// - EFI_MISC_ONBOARD_DEVICE_STATUS OnBoardDeviceStatus; - EFI_DEVICE_PATH_PROTOCOL OnBoardDevicePath; -} EFI_MISC_ONBOARD_DEVICE_DATA; - -// -// Misc. BIOS Language Information - SMBIOS Type 11 -// -#define EFI_MISC_OEM_STRING_RECORD_NUMBER 0x00000009 - -typedef struct { - STRING_REF OemStringRef[1]; -} EFI_MISC_OEM_STRING_DATA; - -// -// Misc. System Options - SMBIOS Type 12 -// -typedef struct { - STRING_REF SystemOptionStringRef[1]; -} EFI_MISC_SYSTEM_OPTION_STRING_DATA; - -#define EFI_MISC_SYSTEM_OPTION_STRING_RECORD_NUMBER 0x0000000A - -// -// Misc. Number of Installable Languages - SMBIOS Type 13 -// -#define EFI_MISC_NUMBER_OF_INSTALLABLE_LANGUAGES_RECORD_NUMBER 0x0000000B - -typedef struct { - UINT32 AbbreviatedLanguageFormat :1; - UINT32 Reserved :31; -} EFI_MISC_LANGUAGE_FLAGS; - -typedef struct { - UINT16 NumberOfInstallableLanguages; - EFI_MISC_LANGUAGE_FLAGS LanguageFlags; - UINT16 CurrentLanguageNumber; -} EFI_MISC_NUMBER_OF_INSTALLABLE_LANGUAGES_DATA; - -// -// Misc. System Language String -// -#define EFI_MISC_SYSTEM_LANGUAGE_STRING_RECORD_NUMBER 0x0000000C - -typedef struct { - UINT16 LanguageId; - STRING_REF SystemLanguageString; -} EFI_MISC_SYSTEM_LANGUAGE_STRING_DATA; - -// -// Group Associations - SMBIOS Type 14 -// -#define EFI_MISC_GROUP_NAME_RECORD_NUMBER 0x0000000D - -typedef struct { - STRING_REF GroupName; - UINT16 NumberGroupItems; - UINT16 GroupId; -} EFI_MISC_GROUP_NAME_DATA; - -// -// Group Item Set Element -// -#define EFI_MISC_GROUP_ITEM_SET_RECORD_NUMBER 0x0000000E - -typedef struct { - EFI_GUID SubClass; - EFI_INTER_LINK_DATA GroupLink; - UINT16 GroupId; - UINT16 GroupElementId; -} EFI_MISC_GROUP_ITEM_SET_DATA; - -// -// Misc. Pointing Device Type - SMBIOS Type 21 -// -#define EFI_MISC_POINTING_DEVICE_TYPE_RECORD_NUMBER 0x0000000F - -typedef enum { - EfiPointingDeviceTypeOther = 0x01, - EfiPointingDeviceTypeUnknown = 0x02, - EfiPointingDeviceTypeMouse = 0x03, - EfiPointingDeviceTypeTrackBall = 0x04, - EfiPointingDeviceTypeTrackPoint = 0x05, - EfiPointingDeviceTypeGlidePoint = 0x06, - EfiPointingDeviceTouchPad = 0x07, - EfiPointingDeviceTouchScreen = 0x08, - EfiPointingDeviceOpticalSensor = 0x09 -} EFI_MISC_POINTING_DEVICE_TYPE; - -typedef enum { - EfiPointingDeviceInterfaceOther = 0x01, - EfiPointingDeviceInterfaceUnknown = 0x02, - EfiPointingDeviceInterfaceSerial = 0x03, - EfiPointingDeviceInterfacePs2 = 0x04, - EfiPointingDeviceInterfaceInfrared = 0x05, - EfiPointingDeviceInterfaceHpHil = 0x06, - EfiPointingDeviceInterfaceBusMouse = 0x07, - EfiPointingDeviceInterfaceADB = 0x08, - EfiPointingDeviceInterfaceBusMouseDB9 = 0xA0, - EfiPointingDeviceInterfaceBusMouseMicroDin = 0xA1, - EfiPointingDeviceInterfaceUsb = 0xA2 -} EFI_MISC_POINTING_DEVICE_INTERFACE; - -typedef struct { - EFI_MISC_POINTING_DEVICE_TYPE PointingDeviceType; - EFI_MISC_POINTING_DEVICE_INTERFACE PointingDeviceInterface; - UINT16 NumberPointingDeviceButtons; - EFI_DEVICE_PATH_PROTOCOL PointingDevicePath; -} EFI_MISC_POINTING_DEVICE_TYPE_DATA; - -// -// Portable Battery - SMBIOS Type 22 -// -/// -/// Inconsistent with specification here: -/// In MiscSubclass specification 0.9, the name is EFI_MISC_BATTERY_LOCATION_RECORD_NUMBER. -/// Keep it unchanged for backward compatibilty. -/// -#define EFI_MISC_PORTABLE_BATTERY_RECORD_NUMBER 0x00000010 - -/// -/// Inconsistent with specification here: -/// In MiscSubclass specification 0.9, the structure name is EFI_MISC_BATTERY_DEVICE_CHEMISTRY. -/// And all field namings are also different with specification. -/// Keep it unchanged for backward compatibilty. -/// -typedef enum { - EfiPortableBatteryDeviceChemistryOther = 1, - EfiPortableBatteryDeviceChemistryUnknown = 2, - EfiPortableBatteryDeviceChemistryLeadAcid = 3, - EfiPortableBatteryDeviceChemistryNickelCadmium = 4, - EfiPortableBatteryDeviceChemistryNickelMetalHydride = 5, - EfiPortableBatteryDeviceChemistryLithiumIon = 6, - EfiPortableBatteryDeviceChemistryZincAir = 7, - EfiPortableBatteryDeviceChemistryLithiumPolymer = 8 -} EFI_MISC_PORTABLE_BATTERY_DEVICE_CHEMISTRY; - -/// -/// Inconsistent with specification here: -/// In MiscSubclass specification 0.9, the structure name is EFI_MISC_BATTERY_LOCATION_DATA. -/// Also, the name and the order of the fields vary with specifications. -/// Keep it unchanged for backward compatibilty. -/// -typedef struct { - STRING_REF Location; - STRING_REF Manufacturer; - STRING_REF ManufactureDate; - STRING_REF SerialNumber; - STRING_REF DeviceName; - EFI_MISC_PORTABLE_BATTERY_DEVICE_CHEMISTRY - DeviceChemistry; - UINT16 DesignCapacity; - UINT16 DesignVoltage; - STRING_REF SBDSVersionNumber; - UINT8 MaximumError; - UINT16 SBDSSerialNumber; - UINT16 SBDSManufactureDate; - STRING_REF SBDSDeviceChemistry; - UINT8 DesignCapacityMultiplier; - UINT32 OEMSpecific; - UINT8 BatteryNumber; // Temporary - BOOLEAN Valid; // Is entry valid - Temporary -} EFI_MISC_PORTABLE_BATTERY; - - -// -// Misc. Reset Capabilities - SMBIOS Type 23 -// -#define EFI_MISC_RESET_CAPABILITIES_RECORD_NUMBER 0x00000011 - -typedef struct { - UINT32 Status :1; - UINT32 BootOption :2; - UINT32 BootOptionOnLimit :2; - UINT32 WatchdogTimerPresent:1; - UINT32 Reserved :26; -} EFI_MISC_RESET_CAPABILITIES_TYPE; - -typedef struct { - EFI_MISC_RESET_CAPABILITIES_TYPE ResetCapabilities; - UINT16 ResetCount; - UINT16 ResetLimit; - UINT16 ResetTimerInterval; - UINT16 ResetTimeout; -} EFI_MISC_RESET_CAPABILITIES; - -typedef struct { - EFI_MISC_RESET_CAPABILITIES ResetCapabilities; - UINT16 ResetCount; - UINT16 ResetLimit; - UINT16 ResetTimerInterval; - UINT16 ResetTimeout; -} EFI_MISC_RESET_CAPABILITIES_DATA; - -// -// Misc. Hardware Security - SMBIOS Type 24 -// -#define EFI_MISC_HARDWARE_SECURITY_SETTINGS_DATA_RECORD_NUMBER 0x00000012 - -/// -/// Inconsistent with specification here: -/// The MiscSubclass specification 0.9 only mentions the possible value of each field in -/// EFI_MISC_HARDWARE_SECURITY_SETTINGS. -/// It's implementation-specific in order to to simplify the code logic. -/// -typedef enum { - EfiHardwareSecurityStatusDisabled = 0, - EfiHardwareSecurityStatusEnabled = 1, - EfiHardwareSecurityStatusNotImplemented = 2, - EfiHardwareSecurityStatusUnknown = 3 -} EFI_MISC_HARDWARE_SECURITY_STATUS; - -typedef struct { - UINT32 FrontPanelResetStatus :2; - UINT32 AdministratorPasswordStatus :2; - UINT32 KeyboardPasswordStatus :2; - UINT32 PowerOnPasswordStatus :2; - UINT32 Reserved :24; -} EFI_MISC_HARDWARE_SECURITY_SETTINGS; - -typedef struct { - EFI_MISC_HARDWARE_SECURITY_SETTINGS HardwareSecuritySettings; -} EFI_MISC_HARDWARE_SECURITY_SETTINGS_DATA; - -// -// System Power Controls - SMBIOS Type 25 -// -#define EFI_MISC_SCHEDULED_POWER_ON_MONTH_RECORD_NUMBER 0x00000013 - -typedef struct { - UINT16 ScheduledPoweronMonth; - UINT16 ScheduledPoweronDayOfMonth; - UINT16 ScheduledPoweronHour; - UINT16 ScheduledPoweronMinute; - UINT16 ScheduledPoweronSecond; -} EFI_MISC_SCHEDULED_POWER_ON_MONTH_DATA; - -// -// Voltage Probe - SMBIOS Type 26 -// -#define EFI_MISC_VOLTAGE_PROBE_DESCRIPTION_RECORD_NUMBER 0x00000014 - -typedef struct { - UINT32 VoltageProbeSite :5; - UINT32 VoltageProbeStatus :3; - UINT32 Reserved :24; -} EFI_MISC_VOLTAGE_PROBE_LOCATION; - -typedef struct { - STRING_REF VoltageProbeDescription; - EFI_MISC_VOLTAGE_PROBE_LOCATION VoltageProbeLocation; - EFI_EXP_BASE10_DATA VoltageProbeMaximumValue; - EFI_EXP_BASE10_DATA VoltageProbeMinimumValue; - EFI_EXP_BASE10_DATA VoltageProbeResolution; - EFI_EXP_BASE10_DATA VoltageProbeTolerance; - EFI_EXP_BASE10_DATA VoltageProbeAccuracy; - EFI_EXP_BASE10_DATA VoltageProbeNominalValue; - EFI_EXP_BASE10_DATA MDLowerNoncriticalThreshold; - EFI_EXP_BASE10_DATA MDUpperNoncriticalThreshold; - EFI_EXP_BASE10_DATA MDLowerCriticalThreshold; - EFI_EXP_BASE10_DATA MDUpperCriticalThreshold; - EFI_EXP_BASE10_DATA MDLowerNonrecoverableThreshold; - EFI_EXP_BASE10_DATA MDUpperNonrecoverableThreshold; - UINT32 VoltageProbeOemDefined; -} EFI_MISC_VOLTAGE_PROBE_DESCRIPTION_DATA; - -// -// Cooling Device - SMBIOS Type 27 -// -#define EFI_MISC_COOLING_DEVICE_TEMP_LINK_RECORD_NUMBER 0x00000015 - -typedef struct { - UINT32 CoolingDevice :5; - UINT32 CoolingDeviceStatus :3; - UINT32 Reserved :24; -} EFI_MISC_COOLING_DEVICE_TYPE; - -typedef struct { - EFI_MISC_COOLING_DEVICE_TYPE CoolingDeviceType; - EFI_INTER_LINK_DATA CoolingDeviceTemperatureLink; - UINT8 CoolingDeviceUnitGroup; - UINT16 CoolingDeviceNominalSpeed; - UINT32 CoolingDeviceOemDefined; -} EFI_MISC_COOLING_DEVICE_TEMP_LINK_DATA; - -// -// Temperature Probe - SMBIOS Type 28 -// -#define EFI_MISC_TEMPERATURE_PROBE_DESCRIPTION_RECORD_NUMBER 0x00000016 - -typedef struct { - UINT32 TemperatureProbeSite :5; - UINT32 TemperatureProbeStatus :3; - UINT32 Reserved :24; -} EFI_MISC_TEMPERATURE_PROBE_LOCATION; - -typedef struct { - STRING_REF TemperatureProbeDescription; - EFI_MISC_TEMPERATURE_PROBE_LOCATION - TemperatureProbeLocation; - /// - /// Inconsistent with specification here: - /// MiscSubclass 0.9 specification defines the fields type as EFI_EXP_BASE10_DATA. - /// In fact, they should be UINT16 type because they refer to 16bit width data. - /// Keeping this inconsistency for backward compatibility. - /// - UINT16 TemperatureProbeMaximumValue; - UINT16 TemperatureProbeMinimumValue; - UINT16 TemperatureProbeResolution; - UINT16 TemperatureProbeTolerance; - UINT16 TemperatureProbeAccuracy; - UINT16 TemperatureProbeNominalValue; - UINT16 MDLowerNoncriticalThreshold; - UINT16 MDUpperNoncriticalThreshold; - UINT16 MDLowerCriticalThreshold; - UINT16 MDUpperCriticalThreshold; - UINT16 MDLowerNonrecoverableThreshold; - UINT16 MDUpperNonrecoverableThreshold; - UINT32 TemperatureProbeOemDefined; -} EFI_MISC_TEMPERATURE_PROBE_DESCRIPTION_DATA; - -// -// Electrical Current Probe - SMBIOS Type 29 -// - -#define EFI_MISC_ELECTRICAL_CURRENT_PROBE_DESCRIPTION_RECORD_NUMBER 0x00000017 - -typedef struct { - UINT32 ElectricalCurrentProbeSite :5; - UINT32 ElectricalCurrentProbeStatus :3; - UINT32 Reserved :24; -} EFI_MISC_ELECTRICAL_CURRENT_PROBE_LOCATION; - -typedef struct { - STRING_REF ElectricalCurrentProbeDescription; - EFI_MISC_ELECTRICAL_CURRENT_PROBE_LOCATION - ElectricalCurrentProbeLocation; - EFI_EXP_BASE10_DATA ElectricalCurrentProbeMaximumValue; - EFI_EXP_BASE10_DATA ElectricalCurrentProbeMinimumValue; - EFI_EXP_BASE10_DATA ElectricalCurrentProbeResolution; - EFI_EXP_BASE10_DATA ElectricalCurrentProbeTolerance; - EFI_EXP_BASE10_DATA ElectricalCurrentProbeAccuracy; - EFI_EXP_BASE10_DATA ElectricalCurrentProbeNominalValue; - EFI_EXP_BASE10_DATA MDLowerNoncriticalThreshold; - EFI_EXP_BASE10_DATA MDUpperNoncriticalThreshold; - EFI_EXP_BASE10_DATA MDLowerCriticalThreshold; - EFI_EXP_BASE10_DATA MDUpperCriticalThreshold; - EFI_EXP_BASE10_DATA MDLowerNonrecoverableThreshold; - EFI_EXP_BASE10_DATA MDUpperNonrecoverableThreshold; - UINT32 ElectricalCurrentProbeOemDefined; -} EFI_MISC_ELECTRICAL_CURRENT_PROBE_DESCRIPTION_DATA; - -// -// Out-of-Band Remote Access - SMBIOS Type 30 -// - -#define EFI_MISC_REMOTE_ACCESS_MANUFACTURER_DESCRIPTION_RECORD_NUMBER 0x00000018 - -typedef struct { - UINT32 InboundConnectionEnabled :1; - UINT32 OutboundConnectionEnabled :1; - UINT32 Reserved :30; -} EFI_MISC_REMOTE_ACCESS_CONNECTIONS; - -typedef struct { - STRING_REF RemoteAccessManufacturerNameDescription; - EFI_MISC_REMOTE_ACCESS_CONNECTIONS RemoteAccessConnections; -} EFI_MISC_REMOTE_ACCESS_MANUFACTURER_DESCRIPTION_DATA; - -// -// Misc. BIS Entry Point - SMBIOS Type 31 -// -#define EFI_MISC_BIS_ENTRY_POINT_RECORD_NUMBER 0x00000019 - -typedef struct { - EFI_PHYSICAL_ADDRESS BisEntryPoint; -} EFI_MISC_BIS_ENTRY_POINT_DATA; - -// -// Misc. Boot Information - SMBIOS Type 32 -// -#define EFI_MISC_BOOT_INFORMATION_STATUS_RECORD_NUMBER 0x0000001A - -/// -/// Inconsistent with specification here: -/// In MiscSubclass specification 0.9, the structure name is EFI_MISC_BOOT_INFORMATION_STATUS_TYPE. -/// Keep it unchanged for backward compatibilty. -/// -typedef enum { - EfiBootInformationStatusNoError = 0x00, - EfiBootInformationStatusNoBootableMedia = 0x01, - EfiBootInformationStatusNormalOSFailedLoading = 0x02, - EfiBootInformationStatusFirmwareDetectedFailure = 0x03, - EfiBootInformationStatusOSDetectedFailure = 0x04, - EfiBootInformationStatusUserRequestedBoot = 0x05, - EfiBootInformationStatusSystemSecurityViolation = 0x06, - EfiBootInformationStatusPreviousRequestedImage = 0x07, - EfiBootInformationStatusWatchdogTimerExpired = 0x08, - EfiBootInformationStatusStartReserved = 0x09, - EfiBootInformationStatusStartOemSpecific = 0x80, - EfiBootInformationStatusStartProductSpecific = 0xC0 -} EFI_MISC_BOOT_INFORMATION_STATUS_DATA_TYPE; - -typedef struct { - /// - /// Inconsistent with specification here: - /// In MiscSubclass specification 0.9, the field name is EFI_MISC_BOOT_INFORMATION_STATUS_TYPE. - /// Keep it unchanged for backward compatibilty. - /// - EFI_MISC_BOOT_INFORMATION_STATUS_DATA_TYPE BootInformationStatus; - UINT8 BootInformationData[9]; -} EFI_MISC_BOOT_INFORMATION_STATUS_DATA; - -// -// Management Device - SMBIOS Type 34 -// -#define EFI_MISC_MANAGEMENT_DEVICE_DESCRIPTION_RECORD_NUMBER 0x0000001B - -typedef enum { - EfiManagementDeviceTypeOther = 0x01, - EfiManagementDeviceTypeUnknown = 0x02, - EfiManagementDeviceTypeLm75 = 0x03, - EfiManagementDeviceTypeLm78 = 0x04, - EfiManagementDeviceTypeLm79 = 0x05, - EfiManagementDeviceTypeLm80 = 0x06, - EfiManagementDeviceTypeLm81 = 0x07, - EfiManagementDeviceTypeAdm9240 = 0x08, - EfiManagementDeviceTypeDs1780 = 0x09, - EfiManagementDeviceTypeMaxim1617 = 0x0A, - EfiManagementDeviceTypeGl518Sm = 0x0B, - EfiManagementDeviceTypeW83781D = 0x0C, - EfiManagementDeviceTypeHt82H791 = 0x0D -} EFI_MISC_MANAGEMENT_DEVICE_TYPE; - -typedef enum { - EfiManagementDeviceAddressTypeOther = 1, - EfiManagementDeviceAddressTypeUnknown = 2, - EfiManagementDeviceAddressTypeIOPort = 3, - EfiManagementDeviceAddressTypeMemory = 4, - EfiManagementDeviceAddressTypeSmbus = 5 -} EFI_MISC_MANAGEMENT_DEVICE_ADDRESS_TYPE; - -typedef struct { - STRING_REF ManagementDeviceDescription; - EFI_MISC_MANAGEMENT_DEVICE_TYPE ManagementDeviceType; - UINTN ManagementDeviceAddress; - EFI_MISC_MANAGEMENT_DEVICE_ADDRESS_TYPE - ManagementDeviceAddressType; -} EFI_MISC_MANAGEMENT_DEVICE_DESCRIPTION_DATA; - -// -// Management Device Component - SMBIOS Type 35 -// - -#define EFI_MISC_MANAGEMENT_DEVICE_COMPONENT_DESCRIPTION_RECORD_NUMBER 0x0000001C - -typedef struct { - STRING_REF ManagementDeviceComponentDescription; - EFI_INTER_LINK_DATA ManagementDeviceLink; - EFI_INTER_LINK_DATA ManagementDeviceComponentLink; - /// - /// Inconsistent with specification here: - /// In MiscSubclass specification 0.9, this field is NOT defined. - /// It's introduced for SmBios 2.6 specification type 35. - /// - EFI_INTER_LINK_DATA ManagementDeviceThresholdLink; - /// - /// Inconsistent with specification here: - /// In MiscSubclass specification 0.9, this field is NOT defined. - /// It's implementation-specific to simplify the code logic. - /// - UINT8 ComponentType; -} EFI_MISC_MANAGEMENT_DEVICE_COMPONENT_DESCRIPTION_DATA; - -// -// IPMI Data Record - SMBIOS Type 38 -// -typedef enum { - EfiIpmiOther = 0, - EfiIpmiKcs = 1, - EfiIpmiSmic = 2, - EfiIpmiBt = 3 -} EFI_MISC_IPMI_INTERFACE_TYPE; - -typedef struct { - UINT16 IpmiSpecLeastSignificantDigit:4; - UINT16 IpmiSpecMostSignificantDigit: 4; - UINT16 Reserved: 8; -} EFI_MISC_IPMI_SPECIFICATION_REVISION; - -typedef struct { - EFI_MISC_IPMI_INTERFACE_TYPE IpmiInterfaceType; - EFI_MISC_IPMI_SPECIFICATION_REVISION - IpmiSpecificationRevision; - UINT16 IpmiI2CSlaveAddress; - UINT16 IpmiNvDeviceAddress; - UINT64 IpmiBaseAddress; - EFI_DEVICE_PATH_PROTOCOL IpmiDevicePath; -} EFI_MISC_IPMI_INTERFACE_TYPE_DATA; - -#define EFI_MISC_IPMI_INTERFACE_TYPE_RECORD_NUMBER 0x0000001D -/// -/// The definition above is *NOT* defined in MiscSubclass specifications 0.9. -/// It's defined for backward compatibility. -/// -#define EFI_MISC_IPMI_INTERFACE_TYPE_DATA_RECORD_NUMBER EFI_MISC_IPMI_INTERFACE_TYPE_RECORD_NUMBER - -/// -/// System Power supply Record - SMBIOS Type 39 -/// -/// Inconsistent with specification here: -/// In MiscSubclass specification 0.9, the type of all fields are UINT32. -/// Keep it unchanged for backward compatibilty. -/// -typedef struct { - UINT16 PowerSupplyHotReplaceable:1; - UINT16 PowerSupplyPresent :1; - UINT16 PowerSupplyUnplugged :1; - UINT16 InputVoltageRangeSwitch :4; - UINT16 PowerSupplyStatus :3; - UINT16 PowerSupplyType :4; - UINT16 Reserved :2; -} EFI_MISC_POWER_SUPPLY_CHARACTERISTICS; - -/// -/// Inconsistent with specification here: -/// In MiscSubclass specification 0.9, the structure name is EFI_MISC_POWER_SUPPLY_UNIT_GROUP_DATA. -/// Keep it unchanged for backward compatibilty. -/// -typedef struct { - UINT16 PowerUnitGroup; - STRING_REF PowerSupplyLocation; - STRING_REF PowerSupplyDeviceName; - STRING_REF PowerSupplyManufacturer; - STRING_REF PowerSupplySerialNumber; - STRING_REF PowerSupplyAssetTagNumber; - STRING_REF PowerSupplyModelPartNumber; - STRING_REF PowerSupplyRevisionLevel; - UINT16 PowerSupplyMaxPowerCapacity; - EFI_MISC_POWER_SUPPLY_CHARACTERISTICS PowerSupplyCharacteristics; - EFI_INTER_LINK_DATA PowerSupplyInputVoltageProbeLink; - EFI_INTER_LINK_DATA PowerSupplyCoolingDeviceLink; - EFI_INTER_LINK_DATA PowerSupplyInputCurrentProbeLink; -} EFI_MISC_SYSTEM_POWER_SUPPLY_DATA; - -#define EFI_MISC_SYSTEM_POWER_SUPPLY_RECORD_NUMBER 0x0000001E - -/// -/// OEM Data Record - SMBIOS Type 0x80-0xFF -/// -/// Inconsistent with specification here: -/// In MiscSubclass specification 0.9, the structure name is EFI_SMBIOS_STRUCTURE_HDR. -/// Due to this, the structure is commonly used by vendors to construct SmBios type 0x80~0xFF table, -/// Keep it unchanged for backward compatibilty. -/// -typedef struct { - UINT8 Type; - UINT8 Length; - UINT16 Handle; -} SMBIOS_STRUCTURE_HDR; - -typedef struct { - /// - /// Inconsistent with specification here: - /// In MiscSubclass specification 0.9, the field name is EFI_SMBIOS_STRUCTURE_HDR. - /// Keep it unchanged for backward compatibilty. - /// - SMBIOS_STRUCTURE_HDR Header; - UINT8 RawData[1]; -} EFI_MISC_SMBIOS_STRUCT_ENCAPSULATION_DATA; - -#define EFI_MISC_SMBIOS_STRUCT_ENCAP_RECORD_NUMBER 0x0000001F - -/// -/// Misc. System Event Log - SMBIOS Type 15 -/// -/// Inconsistent with specification here: -/// In MiscSubclass specification 0.9, the following data structures are NOT defined. -/// It's introduced for SmBios 2.6 specification type 15. -/// -#define EFI_MISC_SYSTEM_EVENT_LOG_RECORD_NUMBER 0x00000020 - -/// -/// Inconsistent with specification here: -/// In MiscSubclass specification 0.9, the following data structures are NOT defined. -/// It's introduced for SmBios 2.6 specification type 15. -/// -typedef struct { - UINT16 LogAreaLength; - UINT16 LogHeaderStartOffset; - UINT16 LogDataStartOffset; - UINT8 AccessMethod; - UINT8 LogStatus; - UINT32 LogChangeToken; - UINT32 AccessMethodAddress; - UINT8 LogHeaderFormat; - UINT8 NumberOfSupportedLogType; - UINT8 LengthOfLogDescriptor; -} EFI_MISC_SYSTEM_EVENT_LOG_DATA; - -// -// Access Method. -// 0x00~0x04: as following definition -// 0x05~0x7f: Available for future assignment. -// 0x80~0xff: BIOS Vendor/OEM-specific. -// -#define ACCESS_INDEXIO_1INDEX8BIT_DATA8BIT 0x00 -#define ACCESS_INDEXIO_2INDEX8BIT_DATA8BIT 0X01 -#define ACCESS_INDEXIO_1INDEX16BIT_DATA8BIT 0X02 -#define ACCESS_MEMORY_MAPPED 0x03 -#define ACCESS_GPNV 0x04 - -/// -/// Management Device Threshold Data Record - SMBIOS Type 36 -/// -/// Inconsistent with specification here: -/// In MiscSubclass specification 0.9, the following data structures are NOT defined. -/// It's introduced for SmBios 2.6 specification type 36. -/// -#define EFI_MISC_MANAGEMENT_DEVICE_THRESHOLD_RECORD_NUMBER 0x00000021 -/// -/// Inconsistent with specification here: -/// In MiscSubclass specification 0.9, the following data structures are NOT defined. -/// It's introduced for SmBios 2.6 specification type 36. -/// -typedef struct { - UINT16 LowerThresNonCritical; - UINT16 UpperThresNonCritical; - UINT16 LowerThresCritical; - UINT16 UpperThresCritical; - UINT16 LowerThresNonRecover; - UINT16 UpperThresNonRecover; -} EFI_MISC_MANAGEMENT_DEVICE_THRESHOLD; - -// -// Declare the following strutures alias to use them more conviniently. -// -typedef EFI_MISC_LAST_PCI_BUS_DATA EFI_MISC_LAST_PCI_BUS; -typedef EFI_MISC_BIOS_VENDOR_DATA EFI_MISC_BIOS_VENDOR; -typedef EFI_MISC_SYSTEM_MANUFACTURER_DATA EFI_MISC_SYSTEM_MANUFACTURER; -typedef EFI_MISC_BASE_BOARD_MANUFACTURER_DATA EFI_MISC_BASE_BOARD_MANUFACTURER; -typedef EFI_MISC_CHASSIS_MANUFACTURER_DATA EFI_MISC_CHASSIS_MANUFACTURER; -typedef EFI_MISC_PORT_INTERNAL_CONNECTOR_DESIGNATOR_DATA EFI_MISC_PORT_INTERNAL_CONNECTOR_DESIGNATOR; -typedef EFI_MISC_SYSTEM_SLOT_DESIGNATION_DATA EFI_MISC_SYSTEM_SLOT_DESIGNATION; -typedef EFI_MISC_ONBOARD_DEVICE_DATA EFI_MISC_ONBOARD_DEVICE; -typedef EFI_MISC_POINTING_DEVICE_TYPE_DATA EFI_MISC_ONBOARD_DEVICE_TYPE_DATA; -typedef EFI_MISC_OEM_STRING_DATA EFI_MISC_OEM_STRING; -typedef EFI_MISC_SYSTEM_OPTION_STRING_DATA EFI_MISC_SYSTEM_OPTION_STRING; -typedef EFI_MISC_NUMBER_OF_INSTALLABLE_LANGUAGES_DATA EFI_MISC_NUMBER_OF_INSTALLABLE_LANGUAGES; -typedef EFI_MISC_SYSTEM_LANGUAGE_STRING_DATA EFI_MISC_SYSTEM_LANGUAGE_STRING; -typedef EFI_MISC_SYSTEM_EVENT_LOG_DATA EFI_MISC_SYSTEM_EVENT_LOG; -typedef EFI_MISC_BIS_ENTRY_POINT_DATA EFI_MISC_BIS_ENTRY_POINT; -typedef EFI_MISC_BOOT_INFORMATION_STATUS_DATA EFI_MISC_BOOT_INFORMATION_STATUS; -typedef EFI_MISC_SYSTEM_POWER_SUPPLY_DATA EFI_MISC_SYSTEM_POWER_SUPPLY; -typedef EFI_MISC_SMBIOS_STRUCT_ENCAPSULATION_DATA EFI_MISC_SMBIOS_STRUCT_ENCAPSULATION; -typedef EFI_MISC_SCHEDULED_POWER_ON_MONTH_DATA EFI_MISC_SCHEDULED_POWER_ON_MONTH; -typedef EFI_MISC_VOLTAGE_PROBE_DESCRIPTION_DATA EFI_MISC_VOLTAGE_PROBE_DESCRIPTION; -typedef EFI_MISC_COOLING_DEVICE_TEMP_LINK_DATA EFI_MISC_COOLING_DEVICE_TEMP_LINK; -typedef EFI_MISC_TEMPERATURE_PROBE_DESCRIPTION_DATA EFI_MISC_TEMPERATURE_PROBE_DESCRIPTION; -typedef EFI_MISC_REMOTE_ACCESS_MANUFACTURER_DESCRIPTION_DATA - EFI_MISC_REMOTE_ACCESS_MANUFACTURER_DESCRIPTION; -typedef EFI_MISC_MANAGEMENT_DEVICE_DESCRIPTION_DATA EFI_MISC_MANAGEMENT_DEVICE_DESCRIPTION; -typedef EFI_MISC_ELECTRICAL_CURRENT_PROBE_DESCRIPTION_DATA EFI_MISC_ELECTRICAL_CURRENT_PROBE_DESCRIPTION; -typedef EFI_MISC_MANAGEMENT_DEVICE_COMPONENT_DESCRIPTION_DATA - EFI_MISC_MANAGEMENT_DEVICE_COMPONENT_DESCRIPTION; - -/// -/// Inconsistent with specification here: -/// In MemSubclass specification 0.9, the following data structures are NOT defined. -/// It is implementation-specific to simplify the code logic. -/// -typedef union { - EFI_MISC_LAST_PCI_BUS_DATA LastPciBus; - EFI_MISC_BIOS_VENDOR_DATA MiscBiosVendor; - EFI_MISC_SYSTEM_MANUFACTURER_DATA MiscSystemManufacturer; - EFI_MISC_BASE_BOARD_MANUFACTURER_DATA MiscBaseBoardManufacturer; - EFI_MISC_CHASSIS_MANUFACTURER_DATA MiscChassisManufacturer; - EFI_MISC_PORT_INTERNAL_CONNECTOR_DESIGNATOR_DATA MiscPortInternalConnectorDesignator; - EFI_MISC_SYSTEM_SLOT_DESIGNATION_DATA MiscSystemSlotDesignation; - EFI_MISC_ONBOARD_DEVICE_DATA MiscOnboardDevice; - EFI_MISC_OEM_STRING_DATA MiscOemString; - EFI_MISC_SYSTEM_OPTION_STRING_DATA MiscOptionString; - EFI_MISC_NUMBER_OF_INSTALLABLE_LANGUAGES_DATA NumberOfInstallableLanguages; - EFI_MISC_SYSTEM_LANGUAGE_STRING_DATA MiscSystemLanguageString; - EFI_MISC_SYSTEM_EVENT_LOG_DATA MiscSystemEventLog; - EFI_MISC_GROUP_NAME_DATA MiscGroupNameData; - EFI_MISC_GROUP_ITEM_SET_DATA MiscGroupItemSetData; - EFI_MISC_POINTING_DEVICE_TYPE_DATA MiscPointingDeviceTypeData; - EFI_MISC_RESET_CAPABILITIES_DATA MiscResetCapablilitiesData; - EFI_MISC_HARDWARE_SECURITY_SETTINGS_DATA MiscHardwareSecuritySettingsData; - EFI_MISC_SCHEDULED_POWER_ON_MONTH_DATA MiscScheduledPowerOnMonthData; - EFI_MISC_VOLTAGE_PROBE_DESCRIPTION_DATA MiscVoltagePorbeDescriptionData; - EFI_MISC_COOLING_DEVICE_TEMP_LINK_DATA MiscCoolingDeviceTempLinkData; - EFI_MISC_TEMPERATURE_PROBE_DESCRIPTION_DATA MiscTemperatureProbeDescriptionData; - EFI_MISC_ELECTRICAL_CURRENT_PROBE_DESCRIPTION_DATA MiscElectricalCurrentProbeDescriptionData; - EFI_MISC_REMOTE_ACCESS_MANUFACTURER_DESCRIPTION_DATA - MiscRemoteAccessManufacturerDescriptionData; - EFI_MISC_BIS_ENTRY_POINT_DATA MiscBisEntryPoint; - EFI_MISC_BOOT_INFORMATION_STATUS_DATA MiscBootInformationStatus; - EFI_MISC_MANAGEMENT_DEVICE_DESCRIPTION_DATA MiscMangementDeviceDescriptionData; - EFI_MISC_MANAGEMENT_DEVICE_COMPONENT_DESCRIPTION_DATA - MiscmangementDeviceComponentDescriptionData; - EFI_MISC_IPMI_INTERFACE_TYPE_DATA MiscIpmiInterfaceTypeData; - EFI_MISC_SYSTEM_POWER_SUPPLY_DATA MiscPowerSupplyInfo; - EFI_MISC_SMBIOS_STRUCT_ENCAPSULATION_DATA MiscSmbiosStructEncapsulation; - EFI_MISC_MANAGEMENT_DEVICE_THRESHOLD MiscManagementDeviceThreshold; -} EFI_MISC_SUBCLASS_RECORDS; - -/// -/// Inconsistent with specification here: -/// In MemSubclass specification 0.9, the following data structures are NOT defined. -/// It is implementation-specific to simplify the code logic. -/// -typedef struct { - EFI_SUBCLASS_TYPE1_HEADER Header; - EFI_MISC_SUBCLASS_RECORDS Record; -} EFI_MISC_SUBCLASS_DRIVER_DATA; -#pragma pack() - -/// -/// Inconsistent with specification here: -/// In DataHubSubclass specification 0.9 page 16, the following symbol is NOT defined. -/// But value is meaningful, 0 means Reserved. -/// -#define EFI_SUBCLASS_INSTANCE_RESERVED 0 -/// -/// Inconsistent with specification here: -/// In DataHubSubclass specification 0.9 page 16, the following symbol is NOT defined. -/// But value is meaningful, -1 means Not Applicable. -/// -#define EFI_SUBCLASS_INSTANCE_NON_APPLICABLE 0xFFFF - -#endif diff --git a/IntelFrameworkPkg/Include/Guid/FirmwareFileSystem.h b/IntelFrameworkPkg/Include/Guid/FirmwareFileSystem.h deleted file mode 100644 index 56c34765c..000000000 --- a/IntelFrameworkPkg/Include/Guid/FirmwareFileSystem.h +++ /dev/null @@ -1,36 +0,0 @@ -/** @file - Guid used to define the Firmware File System. See the Framework Firmware - File System Specification for more details. - -Copyright (c) 2006 - 2010, Intel Corporation. All rights reserved.
-This program and the accompanying materials are licensed and made available under -the terms and conditions of the BSD License that accompanies this distribution. -The full text of the license may be found at -http://opensource.org/licenses/bsd-license.php. - -THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, -WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. - - @par Revision Reference: - Guids defined in Firmware File System Spec 0.9. - -**/ - -#ifndef __FIRMWARE_FILE_SYSTEM_GUID_H__ -#define __FIRMWARE_FILE_SYSTEM_GUID_H__ - -/// -/// GUIDs defined by the FFS specification. -/// -#define EFI_FIRMWARE_FILE_SYSTEM_GUID \ - { 0x7A9354D9, 0x0468, 0x444a, {0x81, 0xCE, 0x0B, 0xF6, 0x17, 0xD8, 0x90, 0xDF }} - -typedef UINT16 EFI_FFS_FILE_TAIL; - -#define FFS_ATTRIB_TAIL_PRESENT 0x01 -#define FFS_ATTRIB_RECOVERY 0x02 -#define FFS_ATTRIB_HEADER_EXTENSION 0x04 - -extern EFI_GUID gEfiFirmwareFileSystemGuid; - -#endif diff --git a/IntelFrameworkPkg/Include/Guid/SmmCommunicate.h b/IntelFrameworkPkg/Include/Guid/SmmCommunicate.h deleted file mode 100644 index 9c7a3333b..000000000 --- a/IntelFrameworkPkg/Include/Guid/SmmCommunicate.h +++ /dev/null @@ -1,33 +0,0 @@ -/** @file - Definitions EFI_SMM_COMMUNICATE_HEADER used by EFI_SMM_BASE_PROTOCOL.Communicate() - functions. - -Copyright (c) 2007 - 2010, Intel Corporation. All rights reserved.
-This program and the accompanying materials are licensed and made available under -the terms and conditions of the BSD License that accompanies this distribution. -The full text of the license may be found at -http://opensource.org/licenses/bsd-license.php. - -THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, -WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. - - @par Revision Reference: - GUIDs defined in SmmCis spec version 0.9. - -**/ - -#ifndef _SMM_COMMUNICATE_GUID_H_ -#define _SMM_COMMUNICATE_GUID_H_ - -/// -/// Inconsistent with specification here: -/// GUID definition format has been changed, because the GUID format in the Framework specification is incorrect. -/// -#define SMM_COMMUNICATE_HEADER_GUID \ - { \ - 0xf328e36c, 0x23b6, 0x4a95, {0x85, 0x4b, 0x32, 0xe1, 0x95, 0x34, 0xcd, 0x75 } \ - } - -extern EFI_GUID gSmmCommunicateHeaderGuid; - -#endif diff --git a/IntelFrameworkPkg/Include/Guid/SmramMemoryReserve.h b/IntelFrameworkPkg/Include/Guid/SmramMemoryReserve.h deleted file mode 100644 index 04589cf04..000000000 --- a/IntelFrameworkPkg/Include/Guid/SmramMemoryReserve.h +++ /dev/null @@ -1,60 +0,0 @@ -/** @file - Definition of GUIDed HOB for reserving SMRAM regions. - - This file defines: - * the GUID used to identify the GUID HOB for reserving SMRAM regions. - * the data structure of SMRAM descriptor to describe SMRAM candidate regions - * values of state of SMRAM candidate regions - * the GUID specific data structure of HOB for reserving SMRAM regions. - This GUIDed HOB can be used to convey the existence of the T-SEG reservation and H-SEG usage - -Copyright (c) 2007 - 2010, Intel Corporation. All rights reserved.
-This program and the accompanying materials are licensed and made available under -the terms and conditions of the BSD License that accompanies this distribution. -The full text of the license may be found at -http://opensource.org/licenses/bsd-license.php. - -THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, -WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. - - @par Revision Reference: - GUIDs defined in SmmCis spec version 0.9. - -**/ - -#ifndef _EFI_SMM_PEI_SMRAM_MEMORY_RESERVE_H_ -#define _EFI_SMM_PEI_SMRAM_MEMORY_RESERVE_H_ - -#define EFI_SMM_PEI_SMRAM_MEMORY_RESERVE \ - { \ - 0x6dadf1d1, 0xd4cc, 0x4910, {0xbb, 0x6e, 0x82, 0xb1, 0xfd, 0x80, 0xff, 0x3d } \ - } - -/** -* GUID specific data structure of HOB for reserving SMRAM regions. -* -* Inconsistent with specification here: -* EFI_HOB_SMRAM_DESCRIPTOR_BLOCK has been changed to EFI_SMRAM_HOB_DESCRIPTOR_BLOCK. -* This inconsistency is kept in code in order for backward compatibility. -**/ -typedef struct { - /// - /// Designates the number of possible regions in the system - /// that can be usable for SMRAM. - /// - /// Inconsistent with specification here: - /// In Framework SMM CIS 0.91 specification, it defines the field type as UINTN. - /// However, HOBs are supposed to be CPU neutral, so UINT32 should be used instead. - /// - UINT32 NumberOfSmmReservedRegions; - /// - /// Used throughout this protocol to describe the candidate - /// regions for SMRAM that are supported by this platform. - /// - EFI_SMRAM_DESCRIPTOR Descriptor[1]; -} EFI_SMRAM_HOB_DESCRIPTOR_BLOCK; - -extern EFI_GUID gEfiSmmPeiSmramMemoryReserveGuid; - -#endif - diff --git a/IntelFrameworkPkg/Include/Ppi/BootScriptExecuter.h b/IntelFrameworkPkg/Include/Ppi/BootScriptExecuter.h deleted file mode 100644 index db0f422da..000000000 --- a/IntelFrameworkPkg/Include/Ppi/BootScriptExecuter.h +++ /dev/null @@ -1,79 +0,0 @@ -/** @file - This file declares the Boot Script Executer PPI. - - This PPI is published by a PEIM upon dispatch and provides an execution engine for the - Framework boot script. This PEIM should be platform neutral and have no specific knowledge of - platform instructions or other information. The ability to interpret the boot script depends on the - abundance of other PPIs that are available. For example, if the script requests an SMBus command - execution, the PEIM looks for a relevant PPI that is available to execute it, rather than executing it - by issuing the native IA-32 instruction. - -Copyright (c) 2007 - 2010, Intel Corporation. All rights reserved.
-This program and the accompanying materials are licensed and made available under -the terms and conditions of the BSD License that accompanies this distribution. -The full text of the license may be found at -http://opensource.org/licenses/bsd-license.php. - -THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, -WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. - - @par Revision Reference: - This PPI is defined in Framework of EFI BootScript spec. - Version 0.91. - -**/ - -#ifndef _PEI_BOOT_SCRIPT_EXECUTER_PPI_H_ -#define _PEI_BOOT_SCRIPT_EXECUTER_PPI_H_ - -#define EFI_PEI_BOOT_SCRIPT_EXECUTER_PPI_GUID \ - { \ - 0xabd42895, 0x78cf, 0x4872, {0x84, 0x44, 0x1b, 0x5c, 0x18, 0x0b, 0xfb, 0xff } \ - } - -typedef struct _EFI_PEI_BOOT_SCRIPT_EXECUTER_PPI EFI_PEI_BOOT_SCRIPT_EXECUTER_PPI; - -/** - Executes the Framework boot script table. - - @param PeiServices A pointer to the system PEI Services Table. - @param This A pointer to the EFI_PEI_BOOT_SCRIPT_EXECUTER_PPI instance. - @param Address The physical memory address where the table is stored. - It must be zero if the table to be executed is stored in - a firmware volume file. - @param FvFile The firmware volume file name that contains the table to - be executed. It must be NULL if the table to be executed - is stored in physical memory. - - @retval EFI_SUCCESS The boot script table was executed successfully. - @retval EFI_INVALID_PARAMETER Address is zero and FvFile is NULL. - @retval EFI_NOT_FOUND The file name specified in FvFile cannot be found. - @retval EFI_UNSUPPORTED The format of the boot script table is invalid. - Or, an unsupported opcode occurred in the table. - Or there were opcode execution errors, such as an - insufficient dependency. - -**/ -typedef -EFI_STATUS -(EFIAPI *EFI_PEI_BOOT_SCRIPT_EXECUTE)( - IN EFI_PEI_SERVICES **PeiServices, - IN EFI_PEI_BOOT_SCRIPT_EXECUTER_PPI *This, - IN EFI_PHYSICAL_ADDRESS Address, - IN EFI_GUID *FvFile OPTIONAL - ); - -/// -/// EFI_PEI_BOOT_SCRIPT_EXECUTER_PPI produces the function which interprets and -/// executes the Framework boot script table. -/// -struct _EFI_PEI_BOOT_SCRIPT_EXECUTER_PPI { - /// - /// Executes a boot script table. - /// - EFI_PEI_BOOT_SCRIPT_EXECUTE Execute; -}; - -extern EFI_GUID gEfiPeiBootScriptExecuterPpiGuid; - -#endif diff --git a/IntelFrameworkPkg/Include/Ppi/FindFv.h b/IntelFrameworkPkg/Include/Ppi/FindFv.h deleted file mode 100644 index 14a9f82da..000000000 --- a/IntelFrameworkPkg/Include/Ppi/FindFv.h +++ /dev/null @@ -1,68 +0,0 @@ -/** @file - This file declares FindFv PPI, which is used to locate FVs that contain PEIMs in PEI. - -Copyright (c) 2007 - 2010, Intel Corporation. All rights reserved.
-This program and the accompanying materials are licensed and made available under -the terms and conditions of the BSD License that accompanies this distribution. -The full text of the license may be found at -http://opensource.org/licenses/bsd-license.php. - -THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, -WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. - - @par Revision Reference: - This PPI is defined in PEI CIS - Version 0.91. - -**/ - -#ifndef _FIND_FV_H_ -#define _FIND_FV_H_ - -/// -/// Inconsistent with specification here: -/// GUID value format has been changed to the standard GUID format. -/// -#define EFI_PEI_FIND_FV_PPI_GUID \ - { \ - 0x36164812, 0xa023, 0x44e5, {0xbd, 0x85, 0x5, 0xbf, 0x3c, 0x77, 0x0, 0xaa } \ - } - -typedef struct _EFI_PEI_FIND_FV_PPI EFI_PEI_FIND_FV_PPI; - -/** - This interface returns the base address of the firmware volume whose index - was passed in FvNumber. Once this function reports a firmware volume - index/base address pair, that index/address pairing must continue throughout PEI. - - @param PeiServices The pointer to the PEI Services Table. - @param This Interface pointer that implements the Find FV service. - @param FvNumber The index of the firmware volume to locate. - @param FvAddress The address of the volume to discover. - - @retval EFI_SUCCESS An additional firmware volume was found. - @retval EFI_OUT_OF_RESOURCES There are no firmware volumes for the given FvNumber. - @retval EFI_INVALID_PARAMETER *FvAddress is NULL. - -**/ -typedef -EFI_STATUS -(EFIAPI *EFI_PEI_FIND_FV_FINDFV)( - IN EFI_PEI_FIND_FV_PPI *This, - IN EFI_PEI_SERVICES **PeiServices, - IN UINT8 *FvNumber, - IN OUT EFI_FIRMWARE_VOLUME_HEADER **FVAddress - ); - -/** - Hardware mechanisms for locating FVs in a platform vary widely. - EFI_PEI_FIND_FV_PPI serves to abstract this variation so that the - PEI Foundation can remain standard across a wide variety of platforms. -**/ -struct _EFI_PEI_FIND_FV_PPI { - EFI_PEI_FIND_FV_FINDFV FindFv; ///< Service that abstracts the location of additional firmware volumes. -}; - -extern EFI_GUID gEfiFindFvPpiGuid; - -#endif diff --git a/IntelFrameworkPkg/Include/Ppi/FvLoadFile.h b/IntelFrameworkPkg/Include/Ppi/FvLoadFile.h deleted file mode 100644 index b19be053a..000000000 --- a/IntelFrameworkPkg/Include/Ppi/FvLoadFile.h +++ /dev/null @@ -1,68 +0,0 @@ -/** @file - Load image file from fv to memory. - -Copyright (c) 2007 - 2010, Intel Corporation. All rights reserved.
-This program and the accompanying materials are licensed and made available under -the terms and conditions of the BSD License that accompanies this distribution. -The full text of the license may be found at -http://opensource.org/licenses/bsd-license.php. - -THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, -WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. - - @par Revision Reference: - This PPI is defined in PEI CIS spec Version 0.91. - -**/ - -#ifndef _FV_FILE_LOADER_PPI_H_ -#define _FV_FILE_LOADER_PPI_H_ - -#define EFI_PEI_FV_FILE_LOADER_GUID \ - { \ - 0x7e1f0d85, 0x4ff, 0x4bb2, {0x86, 0x6a, 0x31, 0xa2, 0x99, 0x6a, 0x48, 0xa8 } \ - } - -typedef struct _EFI_PEI_FV_FILE_LOADER_PPI EFI_PEI_FV_FILE_LOADER_PPI; - -/** - Loads a PEIM into memory for subsequent execution. - - @param This Interface pointer that implements the Load File PPI instance. - @param FfsHeader The pointer to the FFS header of the file to load. - @param ImageAddress The pointer to the address of the loaded Image - @param ImageSize The pointer to the size of the loaded image. - @param EntryPoint The pointer to the entry point of the image. - - @retval EFI_SUCCESS The image was loaded successfully. - @retval EFI_OUT_OF_RESOURCES There was not enough memory. - @retval EFI_INVALID_PARAMETER The contents of the FFS file did not - contain a valid PE/COFF image that could be loaded. - -**/ -typedef -EFI_STATUS -(EFIAPI *EFI_PEI_FV_LOAD_FILE)( - IN EFI_PEI_FV_FILE_LOADER_PPI *This, - IN EFI_FFS_FILE_HEADER *FfsHeader, - OUT EFI_PHYSICAL_ADDRESS *ImageAddress, - OUT UINT64 *ImageSize, - OUT EFI_PHYSICAL_ADDRESS *EntryPoint - ); - -/** - This PPI is a pointer to the Load File service. This service will be - published by a PEIM. The PEI Foundation will use this service to - launch the known non-XIP PE/COFF PEIM images. This service may - depend upon the presence of the EFI_PEI_PERMANENT_MEMORY_INSTALLED_PPI. -**/ -struct _EFI_PEI_FV_FILE_LOADER_PPI { - /// - /// Loads a PEIM into memory for subsequent execution. - /// - EFI_PEI_FV_LOAD_FILE FvLoadFile; -}; - -extern EFI_GUID gEfiPeiFvFileLoaderPpiGuid; - -#endif diff --git a/IntelFrameworkPkg/Include/Ppi/PciCfg.h b/IntelFrameworkPkg/Include/Ppi/PciCfg.h deleted file mode 100644 index ded452a16..000000000 --- a/IntelFrameworkPkg/Include/Ppi/PciCfg.h +++ /dev/null @@ -1,110 +0,0 @@ -/** @file - This file declares the PciCfg PPI used to access the PCI configuration space in PEI - -Copyright (c) 2006 - 2010, Intel Corporation. All rights reserved.
-This program and the accompanying materials are licensed and made available under -the terms and conditions of the BSD License that accompanies this distribution. -The full text of the license may be found at -http://opensource.org/licenses/bsd-license.php. - -THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, -WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. - - @par Revision Reference: - This PPI is defined in PEI CIS - Version 0.91. - -**/ - -#ifndef __PEI_PCI_CFG_H__ -#define __PEI_PCI_CFG_H__ - -#include -// -// Get the common definitions for EFI_PEI_PCI_CFG_PPI_WIDTH. -// - -#define EFI_PEI_PCI_CFG_PPI_INSTALLED_GUID \ - { \ - 0xe1f2eba0, 0xf7b9, 0x4a26, {0x86, 0x20, 0x13, 0x12, 0x21, 0x64, 0x2a, 0x90 } \ - } - -typedef struct _EFI_PEI_PCI_CFG_PPI EFI_PEI_PCI_CFG_PPI; - -#define PEI_PCI_CFG_ADDRESS(bus, dev, func, reg) ( \ - (UINT64) ((((UINTN) bus) << 24) + (((UINTN) dev) << 16) + (((UINTN) func) << 8) + ((UINTN) reg)) \ - ) & 0x00000000ffffffff - -/** - PCI read and write operation. - - @param PeiServices An indirect pointer to the PEI Services Table - published by the PEI Foundation. - @param This Pointer to local data for the interface. - @param Width The width of the access. Enumerated in bytes. - @param Address The physical address of the access. - @param Buffer A pointer to the buffer of data. - - @retval EFI_SUCCESS The function completed successfully. - @retval EFI_NOT_YET_AVAILABLE The service has not been installed. - -**/ -typedef -EFI_STATUS -(EFIAPI *EFI_PEI_PCI_CFG_PPI_IO)( - IN EFI_PEI_SERVICES **PeiServices, - IN EFI_PEI_PCI_CFG_PPI *This, - IN EFI_PEI_PCI_CFG_PPI_WIDTH Width, - IN UINT64 Address, - IN OUT VOID *Buffer - ); - -/** - PCI read-modify-write operation. - - @param PeiServices An indirect pointer to the PEI Services Table - published by the PEI Foundation. - @param This The pointer to local data for the interface. - @param Width The width of the access. Enumerated in bytes. - @param Address The physical address of the access. - @param SetBits Value of the bits to set. - @param ClearBits Value of the bits to clear. - - @retval EFI_SUCCESS The function completed successfully. - -**/ -typedef -EFI_STATUS -(EFIAPI *EFI_PEI_PCI_CFG_PPI_RW)( - IN EFI_PEI_SERVICES **PeiServices, - IN EFI_PEI_PCI_CFG_PPI *This, - IN EFI_PEI_PCI_CFG_PPI_WIDTH Width, - IN UINT64 Address, - IN UINTN SetBits, - IN UINTN ClearBits - ); - -/** - The EFI_PEI_PCI_CFG_PPI interfaces are used to abstract accesses to PCI - controllers behind a PCI root bridge controller. -**/ -struct _EFI_PEI_PCI_CFG_PPI { - /// - /// PCI read services. See the Read() function description. - /// - EFI_PEI_PCI_CFG_PPI_IO Read; - - /// - /// PCI write services. See the Write() function description. - /// - EFI_PEI_PCI_CFG_PPI_IO Write; - - /// - /// PCI read-modify-write services. See the Modify() function description. - /// - EFI_PEI_PCI_CFG_PPI_RW Modify; -}; - -extern EFI_GUID gEfiPciCfgPpiInServiceTableGuid; - -#endif diff --git a/IntelFrameworkPkg/Include/Ppi/ReadOnlyVariable.h b/IntelFrameworkPkg/Include/Ppi/ReadOnlyVariable.h deleted file mode 100644 index 167e3a889..000000000 --- a/IntelFrameworkPkg/Include/Ppi/ReadOnlyVariable.h +++ /dev/null @@ -1,132 +0,0 @@ -/** @file - This file declares the Read-only Variable Service PPI, which is required by the framework spec. - - These services provide a lightweight, read-only variant of the full EFI variable services. The - reason that these services are read-only is to reduce the complexity of flash management. Also, - some implementation of the PEI may use the same physical flash part for variable and PEIM - storage. As such, a write command to certain technologies would alter the contents of the entire part, - making the PEIM execution in the original position not follow the required flow. - -Copyright (c) 2006 - 2010, Intel Corporation. All rights reserved.
-This program and the accompanying materials are licensed and made available under -the terms and conditions of the BSD License that accompanies this distribution. -The full text of the license may be found at -http://opensource.org/licenses/bsd-license.php. - -THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, -WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. - - @par Revision Reference: - This PPI is defined in PEI CIS - Version 0.91. -**/ - -#ifndef __PEI_READ_ONLY_VARIABLE_PPI_H__ -#define __PEI_READ_ONLY_VARIABLE_PPI_H__ - -#define EFI_PEI_READ_ONLY_VARIABLE_ACCESS_PPI_GUID \ - { \ - 0x3cdc90c6, 0x13fb, 0x4a75, {0x9e, 0x79, 0x59, 0xe9, 0xdd, 0x78, 0xb9, 0xfa } \ - } - -typedef struct _EFI_PEI_READ_ONLY_VARIABLE_PPI EFI_PEI_READ_ONLY_VARIABLE_PPI; - -/// -/// Variable attributes. -///@{ -#define EFI_VARIABLE_NON_VOLATILE 0x00000001 -#define EFI_VARIABLE_BOOTSERVICE_ACCESS 0x00000002 -#define EFI_VARIABLE_RUNTIME_ACCESS 0x00000004 -/// -/// Inconsistent with specification here: -/// In Framework Spec, PeiCis0.91, neither the macro or its value is defined. -/// Keeping this inconsistancy for backward compatibility. -/// -#define EFI_VARIABLE_READ_ONLY 0x00000008 -///@} - -/** - Get Variable value by Name and GUID pair. - - @param[in] PeiServices An indirect pointer to the PEI Services Table published - by the PEI Foundation. - @param[in] VariableName A NULL-terminated Unicode string that is the name of the vendor's variable. - @param[in] VendorGuid A unique identifier for the vendor. - @param[out] Attributes This OPTIONAL parameter may be either NULL or - a pointer to the location in which to return - the attributes bitmask for the variable. - @param[in,out] DataSize On input, the size in bytes of the return Data buffer. - On output, the size of data returned in Data. - @param[out] Data The buffer to return the contents of the variable. - - @retval EFI_SUCCESS The function completed successfully. - @retval EFI_NOT_FOUND The variable was not found. - @retval EFI_BUFFER_TOO_SMALL The BufferSize is too small for the result. - @retval EFI_INVALID_PARAMETER One of the parameters has an invalid value. - @retval EFI_DEVICE_ERROR The variable could not be retrieved due to a hardware error. - -**/ -typedef -EFI_STATUS -(EFIAPI *EFI_PEI_GET_VARIABLE)( - IN EFI_PEI_SERVICES **PeiServices, - IN CHAR16 *VariableName, - IN EFI_GUID *VendorGuid, - OUT UINT32 *Attributes OPTIONAL, - IN OUT UINTN *DataSize, - OUT VOID *Data - ); - -/** - This function can be called multiple times to retrieve the VariableName - and VendorGuid of all variables currently available in the system. On each call - to GetNextVariableName(), the previous results are passed into the interface, - and on output the interface returns the next variable name data. When the - entire variable list has been returned, the error EFI_NOT_FOUND is returned. - - @param[in] PeiServices An indirect pointer to the PEI Services Table - published by the PEI Foundation. - @param[in] VariableNameSize The size of the VariableName buffer. - @param[in] VariableName On input, supplies the last VariableName that was - returned by GetNextVariableName(). On output, - returns the Null-terminated Unicode string of the - current variable. - @param[in] VendorGuid On input, supplies the last VendorGuid that was - returned by GetNextVariableName(). On output, - returns the VendorGuid of the current variable. - - @retval EFI_SUCCESS The function completed successfully. - @retval EFI_NOT_FOUND The next variable was not found. - @retval EFI_BUFFER_TOO_SMALL The VariableNameSize is too small for the result. - @retval EFI_INVALID_PARAMETER One of the parameters has an invalid value. - @retval EFI_DEVICE_ERROR The variable name could not be retrieved due to - a hardware error. - -**/ -typedef -EFI_STATUS -(EFIAPI *EFI_PEI_GET_NEXT_VARIABLE_NAME)( - IN EFI_PEI_SERVICES **PeiServices, - IN OUT UINTN *VariableNameSize, - IN OUT CHAR16 *VariableName, - IN OUT EFI_GUID *VendorGuid - ); - -/// -/// This PPI provides a lightweight, read-only variant of the full EFI -/// variable services. -/// -struct _EFI_PEI_READ_ONLY_VARIABLE_PPI { - /// - /// Inconsistent with specification here: - /// In Framework Spec, PeiCis0.91, the field is named as GetVariable and GetNextVariableName. - /// Keeping this inconsistancy for backward compatibility. - /// - EFI_PEI_GET_VARIABLE PeiGetVariable; ///< A service to ascertain a given variable name. - EFI_PEI_GET_NEXT_VARIABLE_NAME PeiGetNextVariableName; ///< A service to ascertain a variable based upon a given, known variable -}; - -extern EFI_GUID gEfiPeiReadOnlyVariablePpiGuid; - -#endif /* __PEI_READ_ONLY_VARIABLE_PPI_H__ */ - diff --git a/IntelFrameworkPkg/Include/Ppi/S3Resume.h b/IntelFrameworkPkg/Include/Ppi/S3Resume.h deleted file mode 100644 index f78605623..000000000 --- a/IntelFrameworkPkg/Include/Ppi/S3Resume.h +++ /dev/null @@ -1,76 +0,0 @@ -/** @file - This file declares S3 Resume PPI which accomplishes the firmware S3 resume boot path - and transfers control to OS. - - This PPI is published by the S3 resume PEIM and can be used on the S3 resume boot path to - restore the platform to its preboot configuration and transfer control to OS. The information that is - required for an S3 resume can be saved during the normal boot path using - EFI_ACPI_S3_SAVE_PROTOCOL. This presaved information can then be restored in the S3 - resume boot path using EFI_PEI_S3_RESUME_PPI. Architecturally, the S3 resume PEIM is the - last PEIM to be dispatched in the S3 resume boot path. - Before using this PPI, the caller must ensure the necessary information for the S3 resume, such as - the following, is available for the S3 resume boot path: - - EFI_ACPI_S3_RESUME_SCRIPT_TABLE script table. Type - EFI_ACPI_S3_RESUME_SCRIPT_TABLE is defined in the Intel Platform Innovation - Framework for EFI Boot Script Specification. - - OS waking vector. - - The reserved memory range to be used for the S3 resume. - Otherwise, the S3 resume boot path may fail. - -Copyright (c) 2007 - 2010, Intel Corporation. All rights reserved.
-This program and the accompanying materials are licensed and made available under -the terms and conditions of the BSD License that accompanies this distribution. -The full text of the license may be found at -http://opensource.org/licenses/bsd-license.php. - -THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, -WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. - - @par Revision Reference: - This PPI is defined in Framework for EFI S3 Resume Boot Path spec. - Version 0.9. - -**/ - -#ifndef __PEI_S3_RESUME_PPI_H__ -#define __PEI_S3_RESUME_PPI_H__ - -#define EFI_PEI_S3_RESUME_PPI_GUID \ - { \ - 0x4426CCB2, 0xE684, 0x4a8a, {0xAE, 0x40, 0x20, 0xD4, 0xB0, 0x25, 0xB7, 0x10 } \ - } - -typedef struct _EFI_PEI_S3_RESUME_PPI EFI_PEI_S3_RESUME_PPI; - -/** - Restores the platform to its preboot configuration for an S3 resume and - jumps to the OS waking vector. - - @param PeiServices The pointer to the PEI Services Table - - @retval EFI_ABORTED Execution of the S3 resume boot script table failed. - @retval EFI_NOT_FOUND Could not be locate some necessary information that - is used for the S3 resume boot path d. - -**/ -typedef -EFI_STATUS -(EFIAPI *EFI_PEI_S3_RESUME_PPI_RESTORE_CONFIG)( - IN EFI_PEI_SERVICES **PeiServices - ); - -/** - EFI_PEI_S3_RESUME_PPI accomplishes the firmware S3 resume boot - path and transfers control to OS. -**/ -struct _EFI_PEI_S3_RESUME_PPI { - /// - /// Restores the platform to its preboot configuration for an S3 resume and - /// jumps to the OS waking vector. - /// - EFI_PEI_S3_RESUME_PPI_RESTORE_CONFIG S3RestoreConfig; -}; - -extern EFI_GUID gEfiPeiS3ResumePpiGuid; - -#endif diff --git a/IntelFrameworkPkg/Include/Ppi/SectionExtraction.h b/IntelFrameworkPkg/Include/Ppi/SectionExtraction.h deleted file mode 100644 index e1b5a0632..000000000 --- a/IntelFrameworkPkg/Include/Ppi/SectionExtraction.h +++ /dev/null @@ -1,107 +0,0 @@ -/** @file - This file declares the Section Extraction PPI. - - This PPI is defined in PEI CIS version 0.91. It supports encapsulating sections, - such as GUIDed sections used to authenticate the file encapsulation of other domain-specific wrapping. - -Copyright (c) 2006 - 2010, Intel Corporation. All rights reserved.
-This program and the accompanying materials are licensed and made available under -the terms and conditions of the BSD License that accompanies this distribution. -The full text of the license may be found at -http://opensource.org/licenses/bsd-license.php. - -THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, -WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. - -**/ - -#ifndef __SECTION_EXTRACTION_H__ -#define __SECTION_EXTRACTION_H__ - -#define EFI_PEI_SECTION_EXTRACTION_PPI_GUID \ - { \ - 0x4F89E208, 0xE144, 0x4804, {0x9E, 0xC8, 0x0F, 0x89, 0x4F, 0x7E, 0x36, 0xD7 } \ - } - -typedef struct _EFI_PEI_SECTION_EXTRACTION_PPI EFI_PEI_SECTION_EXTRACTION_PPI; - -// -// Bit values for AuthenticationStatus -// -#define EFI_AUTH_STATUS_PLATFORM_OVERRIDE 0x01 -#define EFI_AUTH_STATUS_IMAGE_SIGNED 0x02 -#define EFI_AUTH_STATUS_NOT_TESTED 0x04 -#define EFI_AUTH_STATUS_TEST_FAILED 0x08 - -/** - The function is used to retrieve a section from within a section file. - It will retrieve both encapsulation sections and leaf sections in their entirety, - exclusive of the section header. - - @param PeiServices The pointer to the PEI Services Table. - @param This Indicates the calling context - @param SectionType The pointer to an EFI_SECTION_TYPE. If - SectionType == NULL, the contents of the entire - section are returned in Buffer. If SectionType - is not NULL, only the requested section is returned. - @param SectionDefinitionGuid The pointer to an EFI_GUID. - If SectionType == EFI_SECTION_GUID_DEFINED, - SectionDefinitionGuid indicates for which section - GUID to search. If SectionType != EFI_SECTION_GUID_DEFINED, - SectionDefinitionGuid is unused and is ignored. - @param SectionInstance If SectionType is not NULL, indicates which - instance of the requested section type to return. - @param Buffer The pointer to a pointer to a buffer in which the - section contents are returned. - @param BufferSize A pointer to a caller-allocated UINT32. On input, - *BufferSize indicates the size in bytes of the - memory region pointed to by Buffer. On output, - *BufferSize contains the number of bytes required - to read the section. - @param AuthenticationStatus A pointer to a caller-allocated UINT32 in - which any metadata from encapsulating GUID-defined - sections is returned. - - @retval EFI_SUCCESS The section was successfully processed, and the section - contents were returned in Buffer. - @retval EFI_PROTOCOL_ERROR A GUID-defined section was encountered in - the file with its EFI_GUIDED_SECTION_PROCESSING_REQUIRED - bit set, but there was no corresponding GUIDed - Section Extraction Protocol in the handle database. - *Buffer is unmodified. - @retval EFI_NOT_FOUND The requested section does not exist.*Buffer is - unmodified. - @retval EFI_OUT_OF_RESOURCES The system has insufficient resources to process - the request. - @retval EFI_INVALID_PARAMETER The SectionStreamHandle does not exist. - @retval EFI_WARN_TOO_SMALL The size of the input buffer is insufficient to - contain the requested section. The input buffer - is filled and contents are section contents are - truncated. - -**/ -typedef -EFI_STATUS -(EFIAPI *EFI_PEI_GET_SECTION)( - IN EFI_PEI_SERVICES **PeiServices, - IN EFI_PEI_SECTION_EXTRACTION_PPI *This, - IN EFI_SECTION_TYPE *SectionType, - IN EFI_GUID *SectionDefinitionGuid, OPTIONAL - IN UINTN SectionInstance, - IN VOID **Buffer, - IN OUT UINT32 *BufferSize, - OUT UINT32 *AuthenticationStatus - ); - -/** - This PPI supports encapsulating sections, such as GUIDed sections used to - authenticate the file encapsulation of other domain-specific wrapping. -**/ -struct _EFI_PEI_SECTION_EXTRACTION_PPI { - EFI_PEI_GET_SECTION GetSection; ///< Retrieves a section from within a section file. -}; - -extern EFI_GUID gEfiPeiSectionExtractionPpiGuid; - -#endif - diff --git a/IntelFrameworkPkg/Include/Ppi/Security.h b/IntelFrameworkPkg/Include/Ppi/Security.h deleted file mode 100644 index 200bc3ca4..000000000 --- a/IntelFrameworkPkg/Include/Ppi/Security.h +++ /dev/null @@ -1,68 +0,0 @@ -/** @file - This file declares the Security Architectural PPI. - - This PPI is installed by a platform PEIM that abstracts the security policy to the PEI - Foundation, namely the case of a PEIM's authentication state being returned during the PEI section - extraction process. - -Copyright (c) 2006 - 2010, Intel Corporation. All rights reserved.
-This program and the accompanying materials are licensed and made available under -the terms and conditions of the BSD License that accompanies this distribution. -The full text of the license may be found at -http://opensource.org/licenses/bsd-license.php. - -THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, -WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. - - @par Revision Reference: - This PPI is defined in PEI CIS. - Version 0.91. - -**/ - -#ifndef __SECURITY_PPI_H__ -#define __SECURITY_PPI_H__ - -#define EFI_PEI_SECURITY_PPI_GUID \ - { \ - 0x1388066e, 0x3a57, 0x4efa, {0x98, 0xf3, 0xc1, 0x2f, 0x3a, 0x95, 0x8a, 0x29 } \ - } - -typedef struct _EFI_PEI_SECURITY_PPI EFI_PEI_SECURITY_PPI; - -/** - Allows the platform builder to implement a security policy in response - to varying file authentication states. - - @param PeiServices The pointer to the PEI Services Table. - @param This Interface pointer that implements the particular - EFI_PEI_SECURITY_PPI instance. - @param AuthenticationStatus Status returned by the verification service as - part of section extraction. - @param FfsFileHeader The pointer to the file under review. - @param DeferExecution The pointer to a variable that alerts the PEI - Foundation to defer execution of a PEIM. - - @retval EFI_SUCCESS The service performed its action successfully. - @retval EFI_SECURITY_VIOLATION The object cannot be trusted. -**/ -typedef -EFI_STATUS -(EFIAPI *FRAMEWORK_EFI_PEI_SECURITY_AUTHENTICATION_STATE)( - IN EFI_PEI_SERVICES **PeiServices, - IN EFI_PEI_SECURITY_PPI *This, - IN UINT32 AuthenticationStatus, - IN EFI_FFS_FILE_HEADER *FfsFileHeader, - IN OUT BOOLEAN *DeferExecution - ); - -// -// PPI interface structure of Security PPI -// -struct _EFI_PEI_SECURITY_PPI { - FRAMEWORK_EFI_PEI_SECURITY_AUTHENTICATION_STATE AuthenticationState; -}; - -extern EFI_GUID gEfiPeiSecurityPpiGuid; - -#endif diff --git a/IntelFrameworkPkg/Include/Ppi/Smbus.h b/IntelFrameworkPkg/Include/Ppi/Smbus.h deleted file mode 100644 index 2a95fef5e..000000000 --- a/IntelFrameworkPkg/Include/Ppi/Smbus.h +++ /dev/null @@ -1,232 +0,0 @@ -/** @file - This file declares the Smbus PPI, which provides the basic I/O interfaces that a PEIM - uses to access its SMBus controller and the slave devices attached to it. - -Copyright (c) 2007 - 2010, Intel Corporation. All rights reserved.
-This program and the accompanying materials are licensed and made available under -the terms and conditions of the BSD License that accompanies this distribution. -The full text of the license may be found at -http://opensource.org/licenses/bsd-license.php. - -THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, -WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. - - @par Revision Reference: - This PPI is defined in Framework of EFI SmBus PPI spec. - Version 0.9. - -**/ - -#ifndef _PEI_SMBUS_PPI_H_ -#define _PEI_SMBUS_PPI_H_ - -#include - -#define EFI_PEI_SMBUS_PPI_GUID \ - { \ - 0xabd42895, 0x78cf, 0x4872, {0x84, 0x44, 0x1b, 0x5c, 0x18, 0xb, 0xfb, 0xda } \ - } - -typedef struct _EFI_PEI_SMBUS_PPI EFI_PEI_SMBUS_PPI; - -/** - Executes an SMBus operation to an SMBus controller. - - @param[in] PeiServices A pointer to the system PEI Services Table. - @param[in] This A pointer to the EFI_PEI_SMBUS_PPI instance. - @param[in] SlaveAddress The SMBUS hardware address to which the SMBUS - device is preassigned or allocated. - @param[in] Command This command is transmitted by the SMBus host - controller to the SMBus slave device, and the - interpretation is SMBus slave device specific. - @param[in] Operation Signifies which particular SMBus hardware protocol - instance to use to execute the SMBus transactions. - @param[in] PecCheck Defines if Packet Error Code (PEC) checking is - required for this operation. - @param[in, out] Length The number of bytes for this operation. - @param[in, out] Buffer Contains the value of data to execute to the SMBus - slave device. - - @retval EFI_SUCCESS The last data that was returned from the access - matched the poll exit criteria. - @retval EFI_CRC_ERROR The checksum is not correct (PEC is incorrect). - @retval EFI_TIMEOUT Timeout expired before the operation was completed. - Timeout is determined by the SMBus host controller device. - @retval EFI_OUT_OF_RESOURCES The request could not be completed - due to a lack of resources. - @retval EFI_DEVICE_ERROR The request was not completed because a failure - was recorded in the Host Status Register bit. - @retval EFI_INVALID_PARAMETER The operation is not defined in EFI_SMBUS_OPERATION. - @retval EFI_INVALID_PARAMETER Length/Buffer is NULL for operations except for - EfiSmbusQuickRead and EfiSmbusQuickWrite. Length - is outside the range of valid values. - @retval EFI_UNSUPPORTED The SMBus operation or PEC is not supported. - @retval EFI_BUFFER_TOO_SMALL Buffer is not sufficient for this operation. - -**/ -typedef -EFI_STATUS -(EFIAPI *EFI_PEI_SMBUS_PPI_EXECUTE_OPERATION)( - IN EFI_PEI_SERVICES **PeiServices, - IN EFI_PEI_SMBUS_PPI *This, - IN EFI_SMBUS_DEVICE_ADDRESS SlaveAddress, - IN EFI_SMBUS_DEVICE_COMMAND Command, - IN EFI_SMBUS_OPERATION Operation, - IN BOOLEAN PecCheck, - IN OUT UINTN *Length, - IN OUT VOID *Buffer - ); - -/** - This function is user-defined, and is called when the SlaveAddress/Data pair happens. - - @param[in] PeiServices A pointer to the system PEI Services Table. - @param[in] This A pointer to the EFI_PEI_SMBUS_PPI instance. - @param[in] SlaveAddress The SMBUS hardware address to which the SMBUS - device is preassigned or allocated. - @param[in] Data Data of the SMBus host notify command, which denotes that - the caller wants to be called. - - @return Status Code returned by callback function. - -**/ -typedef -EFI_STATUS -(EFIAPI *EFI_PEI_SMBUS_NOTIFY_FUNCTION)( - IN EFI_PEI_SERVICES **PeiServices, - IN EFI_PEI_SMBUS_PPI *SmbusPpi, - IN EFI_SMBUS_DEVICE_ADDRESS SlaveAddress, - IN UINTN Data - ); - -/** - The ArpDevice() function enumerates either the entire bus or a specific - device identified by SmbusUdid. - - @param[in] PeiServices A pointer to the system PEI Services Table. - @param[in] This A pointer to the EFI_PEI_SMBUS_PPI instance. - @param[in] ArpAll A Boolean expression that indicates if the host - drivers need to enumerate all the devices or to - enumerate only the device that is identified - by SmbusUdid. If ArpAll is TRUE, SmbusUdid and - SlaveAddress are optional and ignored if entered. - If ArpAll is FALSE, ArpDevice will enumerate - SmbusUdid, and the address will be at SlaveAddress. - @param[in] SmbusUdid The targeted SMBus Unique Device Identifier (UDID). - The UDID may not exist for SMBus devices with fixed - addresses. - @param[in, out] SlaveAddress The new SMBus address for the slave device for - which the operation is targeted. - This address may be NULL. - - @retval EFI_SUCCESS The SMBus slave device address was set. - @retval EFI_INVALID_PARAMETER SlaveAddress is NULL. - @retval EFI_OUT_OF_RESOURCES The request could not be completed - due to a lack of resources. - @retval EFI_TIMEOUT The SMBus slave device did not respond. - @retval EFI_DEVICE_ERROR The request was not completed because the transaction failed. - @retval EFI_UNSUPPORTED ArpDevice() is not implemented by this PEIM. - This return value is not defined in the Framework Specification. - This return value was introduced in the PI Specification. - -**/ -typedef -EFI_STATUS -(EFIAPI *EFI_PEI_SMBUS_PPI_ARP_DEVICE)( - IN EFI_PEI_SERVICES **PeiServices, - IN EFI_PEI_SMBUS_PPI *This, - IN BOOLEAN ArpAll, - IN EFI_SMBUS_UDID *SmbusUdid, OPTIONAL - IN OUT EFI_SMBUS_DEVICE_ADDRESS *SlaveAddress OPTIONAL - ); - -/** - The GetArpMap() function returns the mapping of all the SMBus devices - that are enumerated by the SMBus host driver. - - @param[in] PeiServices A pointer to the system PEI Services Table. - @param[in] This A pointer to the EFI_PEI_SMBUS_PPI instance. - @param[in, out] Length The size of the buffer that contains the SMBus device map. - @param[in, out] SmbusDeviceMap The pointer to the device map as enumerated - by the SMBus controller driver. - - @retval EFI_SUCCESS The device map was returned correctly in the buffer. - @retval EFI_UNSUPPORTED GetArpMap() are not implemented by this PEIM. - This return value was not defined in the Framework Specification. - This return value was introduced in the PI Specification. - -**/ -typedef -EFI_STATUS -(EFIAPI *EFI_PEI_SMBUS_PPI_GET_ARP_MAP)( - IN EFI_PEI_SERVICES **PeiServices, - IN EFI_PEI_SMBUS_PPI *This, - IN OUT UINTN *Length, - IN OUT EFI_SMBUS_DEVICE_MAP **SmbusDeviceMap - ); - -/** - Allows a device driver to register for a callback when the bus driver detects a state that it needs to - propagate to other PEIMs that are registered for a callback. - - The Notify() function registers all the callback functions to allow the - bus driver to call these functions when the SlaveAddress/Data pair occur. - All functions to be registered with EFI_PEI_SMBUS_PPI_NOTIFY must be of type - EFI_PEI_SMBUS_NOTIFY_FUNCTION. - - @param[in] PeiServices A pointer to the system PEI Services Table. - @param[in] This A pointer to the EFI_PEI_SMBUS_PPI instance. - @param[in] SlaveAddress The address that the host controller detects as - sending a message and triggers all the registered functions. - @param[in] Data Data that the host controller detects as sending a message - and triggers all the registered functions. - @param[in] NotifyFunction The function to call when the bus driver - detects the SlaveAddress and Data pair. - - @retval EFI_SUCCESS NotifyFunction has been registered. - @retval EFI_UNSUPPORTED Notify() are not implemented by this PEIM. - This return value is not defined in the Framework Specification. - This return value was introduced in the PI Specification. - -**/ -typedef -EFI_STATUS -(EFIAPI *EFI_PEI_SMBUS_PPI_NOTIFY)( - IN EFI_PEI_SERVICES **PeiServices, - IN EFI_PEI_SMBUS_PPI *This, - IN EFI_SMBUS_DEVICE_ADDRESS SlaveAddress, - IN UINTN Data, - IN EFI_PEI_SMBUS_NOTIFY_FUNCTION NotifyFunction - ); - -/// -/// Provides the basic I/O interfaces that a PEIM uses to access -/// its SMBus controller and the slave devices attached to it. -/// -struct _EFI_PEI_SMBUS_PPI { - /// - /// Executes the SMBus operation to an SMBus slave device. - /// - EFI_PEI_SMBUS_PPI_EXECUTE_OPERATION Execute; - - /// - /// Allows an SMBus 2.0 device(s) to be Address Resolution Protocol (ARP) - /// - EFI_PEI_SMBUS_PPI_ARP_DEVICE ArpDevice; - - /// - /// Allows a PEIM to retrieve the address that was allocated by the SMBus - /// host controller during enumeration/ARP. - /// - EFI_PEI_SMBUS_PPI_GET_ARP_MAP GetArpMap; - - /// - /// Allows a driver to register for a callback to the SMBus host - /// controller driver when the bus issues a notification to the bus controller PEIM. - /// - EFI_PEI_SMBUS_PPI_NOTIFY Notify; -}; - -extern EFI_GUID gEfiPeiSmbusPpiGuid; - -#endif diff --git a/IntelFrameworkPkg/Include/Protocol/AcpiS3Save.h b/IntelFrameworkPkg/Include/Protocol/AcpiS3Save.h deleted file mode 100644 index 0d466bd50..000000000 --- a/IntelFrameworkPkg/Include/Protocol/AcpiS3Save.h +++ /dev/null @@ -1,128 +0,0 @@ -/** @file - This protocol is used to prepare all information that is needed for the S3 resume boot path. This - protocol is not required for all platforms. - -Copyright (c) 2006 - 2010, Intel Corporation. All rights reserved.
-This program and the accompanying materials are licensed and made available under -the terms and conditions of the BSD License that accompanies this distribution. -The full text of the license may be found at -http://opensource.org/licenses/bsd-license.php. - -THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, -WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. - - @par Revision Reference: - This Protocol is defined in Framework of S3 Resume Boot Path Spec. - Version 0.9. - -**/ - -#ifndef _ACPI_S3_SAVE_PROTOCOL_H_ -#define _ACPI_S3_SAVE_PROTOCOL_H_ - -// -// Forward reference for pure ANSI compatability -// -typedef struct _EFI_ACPI_S3_SAVE_PROTOCOL EFI_ACPI_S3_SAVE_PROTOCOL; - -// -// S3 Save Protocol GUID -// -#define EFI_ACPI_S3_SAVE_GUID \ - { \ - 0x125f2de1, 0xfb85, 0x440c, {0xa5, 0x4c, 0x4d, 0x99, 0x35, 0x8a, 0x8d, 0x38 } \ - } - -// -// Protocol Data Structures -// - -/** - This function is used to: - - - Prepare all information that is needed in the S3 resume boot path. This information can include - the following: - -- Framework boot script table - -- RSDT pointer - -- Reserved memory for the S3 resume - - - Get the minimum legacy memory length (meaning below 1 MB) that is required for the S3 resume boot path. - If LegacyMemoryAddress is NULL, the firmware will be unable to jump into a real-mode - waking vector. However, it might still be able to jump into a flat-mode waking vector as long as the - OS provides a flat-mode waking vector. It is the caller's responsibility to ensure the - LegacyMemoryAddress is valid. If the LegacyMemoryAddress is higher than 1 MB, - EFI_INVALID_PARAMETER will be returned. - - @param This A pointer to the EFI_ACPI_S3_SAVE_PROTOCOL instance. - @param LegacyMemoryAddress The base of legacy memory. - - @retval EFI_SUCCESS All information was saved successfully. - @retval EFI_INVALID_PARAMETER The memory range is not located below 1 MB. - @retval EFI_OUT_OF_RESOURCES Resources were insufficient to save all the information. - @retval EFI_NOT_FOUND Some necessary information cannot be found. - -**/ -typedef -EFI_STATUS -(EFIAPI *EFI_ACPI_S3_SAVE)( - IN EFI_ACPI_S3_SAVE_PROTOCOL * This, - IN VOID * LegacyMemoryAddress - ); - -/** - This function returns the size of the legacy memory (meaning below 1 MB) that is required during an S3 - resume. Before the Framework-based firmware transfers control to the OS, it has to transition from - flat mode into real mode in case the OS supplies only a real-mode waking vector. This transition - requires a certain amount of legacy memory. After getting the size of legacy memory - below, the caller is responsible for allocating the legacy memory below 1 MB according to - the size that is returned. The specific implementation of allocating the legacy memory is out of the - scope of this specification. - - @param This A pointer to the EFI_ACPI_S3_SAVE_PROTOCOL instance. - @param Size The returned size of legacy memory below 1MB. - - @retval EFI_SUCCESS Size was successfully returned. - @retval EFI_INVALID_PARAMETER The pointer Size is NULL. - -**/ -typedef -EFI_STATUS -(EFIAPI *EFI_ACPI_GET_LEGACY_MEMORY_SIZE)( - IN EFI_ACPI_S3_SAVE_PROTOCOL * This, - OUT UINTN * Size -); - -/** - The EFI_ACPI_S3_SAVE_PROTOCOL is responsible for preparing all the information that the - Framework needs to restore the platform's preboot state during an S3 resume boot. This - information can include the following: - - The Framework boot script table, containing all necessary operations to initialize the platform. - - ACPI table information, such as RSDT, through which the OS waking vector can be located. - - The range of reserved memory that can be used on the S3 resume boot path. - This protocol can be used after the Framework makes sure that the boot process is complete and - that no hardware has been left unconfigured. Where to call this protocol to save information is implementation-specific. - In the case of an EFI-aware OS, ExitBootServices() can be a choice to provide this hook. - The currently executing EFI OS loader image calls ExitBootServices()to terminate all boot - services. After ExitBootServices() successfully completes, the loader becomes responsible - for the continued operation of the system. - On a normal boot, ExitBootServices() checks if the platform supports S3 by looking for - EFI_ACPI_S3_SAVE_PROTOCOL. If the protocol exists, ExitBootServices()will assume - that the target platform supports an S3 resume and then call EFI_ACPI_S3_SAVE_PROTOCOL - to save the S3 resume information. The entire Framework boot script table will then be generated, - assuming the platform currently is in the preboot state. -**/ -struct _EFI_ACPI_S3_SAVE_PROTOCOL { - /// - /// Gets the size of legacy memory below 1 MB that is required for S3 resume. - /// - EFI_ACPI_GET_LEGACY_MEMORY_SIZE GetLegacyMemorySize; - - /// - /// Prepare all information for an S3 resume. - /// - EFI_ACPI_S3_SAVE S3Save; -}; - -extern EFI_GUID gEfiAcpiS3SaveProtocolGuid; - -#endif diff --git a/IntelFrameworkPkg/Include/Protocol/AcpiSupport.h b/IntelFrameworkPkg/Include/Protocol/AcpiSupport.h deleted file mode 100644 index 278ef8e42..000000000 --- a/IntelFrameworkPkg/Include/Protocol/AcpiSupport.h +++ /dev/null @@ -1,148 +0,0 @@ -/** @file - This protocol provides some basic services to support publishing ACPI system tables. The - services handle many of the more mundane tasks that are required to publish a set of tables. The - services will: - - Generate common tables. - - Update the table links. - - Ensure that tables are properly aligned and use correct types of memory. - - Update checksum values and IDs. - - Complete the final installation of the tables. - -Copyright (c) 2007 - 2010, Intel Corporation. All rights reserved.
-This program and the accompanying materials are licensed and made available under -the terms and conditions of the BSD License that accompanies this distribution. -The full text of the license may be found at -http://opensource.org/licenses/bsd-license.php. - -THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, -WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. - - @par Revision Reference: - This Protocol is defined in Framework ACPI Specification. - Version 0.9. - -**/ - -#ifndef _ACPI_SUPPORT_PROTOCOL_H_ -#define _ACPI_SUPPORT_PROTOCOL_H_ - -#include - -typedef struct _EFI_ACPI_SUPPORT_PROTOCOL EFI_ACPI_SUPPORT_PROTOCOL; - -// -// ACPI Support Protocol GUID -// -#define EFI_ACPI_SUPPORT_GUID \ - { \ - 0xdbff9d55, 0x89b7, 0x46da, {0xbd, 0xdf, 0x67, 0x7d, 0x3d, 0xc0, 0x24, 0x1d } \ - } - - -// -// Protocol Member Functions -// - -/** - Returns a requested ACPI table. - - @param This A pointer to the EFI_ACPI_SUPPORT_PROTOCOL instance. - @param Index The zero-based index of the table to retrieve. - @param Table The pointer for returning the table buffer. - @param Version Updated with the ACPI versions to which this table belongs. - @param Handle The pointer for identifying the table. - - @retval EFI_SUCCESS The function completed successfully. - @retval EFI_NOT_FOUND The requested index is too large and a table was not found. - -**/ -typedef -EFI_STATUS -(EFIAPI *EFI_ACPI_GET_ACPI_TABLE)( - IN EFI_ACPI_SUPPORT_PROTOCOL *This, - IN INTN Index, - OUT VOID **Table, - OUT EFI_ACPI_TABLE_VERSION *Version, - OUT UINTN *Handle - ); - -/** - Used to add, remove, or update ACPI tables. - - @param This A pointer to the EFI_ACPI_SUPPORT_PROTOCOL instance. - @param Table The pointer to the new table to add or update. - @param Checksum If TRUE, indicates that the checksum should be - calculated for this table. - @param Version Indicates to which version(s) of ACPI the table should be added. - @param Handle The pointer to the handle of the table to remove or update. - - @retval EFI_SUCCESS The function completed successfully. - @retval EFI_INVALID_PARAMETER *Handle was zero and Table was NULL. - @retval EFI_ABORTED Could not complete the desired action. - -**/ -typedef -EFI_STATUS -(EFIAPI *EFI_ACPI_SET_ACPI_TABLE)( - IN EFI_ACPI_SUPPORT_PROTOCOL *This, - IN VOID *Table OPTIONAL, - IN BOOLEAN Checksum, - IN EFI_ACPI_TABLE_VERSION Version, - IN OUT UINTN *Handle - ); - -/** - Causes one or more versions of the ACPI tables to be published in - the EFI system configuration tables. - - The PublishTables() function installs the ACPI tables for the versions that are specified in - Version. No tables are published for Version equal to EFI_ACPI_VERSION_NONE. Once - published, tables will continue to be updated as tables are modified with - EFI_ACPI_SUPPORT_PROTOCOL.SetAcpiTable(). - - @param This A pointer to the EFI_ACPI_SUPPORT_PROTOCOL instance. - @param Version Indicates to which version(s) of ACPI the table should be published. - - @retval EFI_SUCCESS The function completed successfully. - @retval EFI_ABORTED An error occurred and the function could not complete successfully. - -**/ -typedef -EFI_STATUS -(EFIAPI *EFI_ACPI_PUBLISH_TABLES)( - IN EFI_ACPI_SUPPORT_PROTOCOL *This, - IN EFI_ACPI_TABLE_VERSION Version - ); - -// -// ACPI Support Protocol -// -/** - This protocol provides some basic services to support publishing ACPI system - tables. The services handle many of the more mundane tasks that are required - to publish a set of tables. -**/ -struct _EFI_ACPI_SUPPORT_PROTOCOL { - /// - /// Returns a table specified by an index if it exists. - /// - EFI_ACPI_GET_ACPI_TABLE GetAcpiTable; - - /// - /// Adds, removes, or updates ACPI tables. - /// - EFI_ACPI_SET_ACPI_TABLE SetAcpiTable; - - /// - /// Publishes the ACPI tables. - /// - EFI_ACPI_PUBLISH_TABLES PublishTables; -}; - -// -// Extern the GUID for protocol users. -// -extern EFI_GUID gEfiAcpiSupportProtocolGuid; - -#endif - diff --git a/IntelFrameworkPkg/Include/Protocol/BootScriptSave.h b/IntelFrameworkPkg/Include/Protocol/BootScriptSave.h deleted file mode 100644 index a8710abc8..000000000 --- a/IntelFrameworkPkg/Include/Protocol/BootScriptSave.h +++ /dev/null @@ -1,86 +0,0 @@ -/** @file - This protocol is used to store or record various boot scripts into boot - script tables. - -Copyright (c) 2007 - 2010, Intel Corporation. All rights reserved.
-This program and the accompanying materials are licensed and made available under -the terms and conditions of the BSD License that accompanies this distribution. -The full text of the license may be found at -http://opensource.org/licenses/bsd-license.php. - -THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, -WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. - - @par Revision Reference: - This protocol defined in the Boot Script Specification, Version 0.91. - -**/ - -#ifndef _BOOT_SCRIPT_SAVE_PROTOCOL_H_ -#define _BOOT_SCRIPT_SAVE_PROTOCOL_H_ - -/// -/// S3 Save Protocol GUID. -/// -#define EFI_BOOT_SCRIPT_SAVE_PROTOCOL_GUID \ - { \ - 0x470e1529, 0xb79e, 0x4e32, {0xa0, 0xfe, 0x6a, 0x15, 0x6d, 0x29, 0xf9, 0xb2 } \ - } - -typedef struct _EFI_BOOT_SCRIPT_SAVE_PROTOCOL EFI_BOOT_SCRIPT_SAVE_PROTOCOL; - -/** - Adds a record into a specified Framework boot script table. - - @param This A pointer to the EFI_BOOT_SCRIPT_SAVE_PROTOCOL instance. - @param TableName The name of the script table. Currently, the only meaningful - value is EFI_ACPI_S3_RESUME_SCRIPT_TABLE. - @param OpCode The operation code (opcode) number. - @param ... The argument list that is specific to each opcode. - - @retval EFI_SUCCESS The operation succeeded. A record was added into the specified script table. - @retval EFI_INVALID_PARAMETER The parameter is illegal, or the given boot script is not supported. - @retval EFI_OUT_OF_RESOURCES There is insufficient memory to store the boot script. - -**/ -typedef -EFI_STATUS -(EFIAPI *EFI_BOOT_SCRIPT_WRITE)( - IN EFI_BOOT_SCRIPT_SAVE_PROTOCOL *This, - IN UINT16 TableName, - IN UINT16 OpCode, - ... - ); - -/** - Closes the specified script table. - - @param This A pointer to the EFI_BOOT_SCRIPT_SAVE_PROTOCOL instance. - @param TableName The name of the script table. - @param Address A pointer to the physical address where the table begins. - - @retval EFI_SUCCESS The table was successfully returned. - @retval EFI_NOT_FOUND The specified table was not created previously. - @retval EFI_OUT_OF_RESOURCES Memory is insufficient to hold the reorganized boot script table. - -**/ -typedef -EFI_STATUS -(EFIAPI *EFI_BOOT_SCRIPT_CLOSE_TABLE)( - IN EFI_BOOT_SCRIPT_SAVE_PROTOCOL *This, - IN UINT16 TableName, - OUT EFI_PHYSICAL_ADDRESS *Address - ); - -/// -/// The EFI_BOOT_SCRIPT_SAVE_PROTOCOL publishes the Framework boot script abstractions -/// to store or record various boot scripts into boot script tables. -/// -struct _EFI_BOOT_SCRIPT_SAVE_PROTOCOL { - EFI_BOOT_SCRIPT_WRITE Write; ///< Writes various boot scripts to a boot script table. - EFI_BOOT_SCRIPT_CLOSE_TABLE CloseTable; ///< Retrieves and closes a script table. -}; - -extern EFI_GUID gEfiBootScriptSaveProtocolGuid; - -#endif diff --git a/IntelFrameworkPkg/Include/Protocol/CpuIo.h b/IntelFrameworkPkg/Include/Protocol/CpuIo.h deleted file mode 100644 index ec75da09f..000000000 --- a/IntelFrameworkPkg/Include/Protocol/CpuIo.h +++ /dev/null @@ -1,46 +0,0 @@ -/** @file - This code abstracts the CPU IO Protocol which installed by some platform or chipset-specific - PEIM that abstracts the processor-visible I/O operations. - - Note: This is a runtime protocol and can be used by runtime drivers after ExitBootServices(). - It is different from the PI 1.2 CPU I/O 2 Protocol, which is a boot services only protocol - and may not be used by runtime drivers after ExitBootServices(). - -Copyright (c) 2007 - 2010, Intel Corporation. All rights reserved.
-This program and the accompanying materials are licensed and made available under -the terms and conditions of the BSD License that accompanies this distribution. -The full text of the license may be found at -http://opensource.org/licenses/bsd-license.php. - -THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, -WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. - - @par Revision Reference: - CPU IO Protocol is defined in Framework of EFI CPU IO Protocol Spec - Version 0.9. - -**/ - -#ifndef _CPUIO_H_ -#define _CPUIO_H_ - -#include - -#define EFI_CPU_IO_PROTOCOL_GUID \ - { \ - 0xB0732526, 0x38C8, 0x4b40, {0x88, 0x77, 0x61, 0xC7, 0xB0, 0x6A, 0xAC, 0x45 } \ - } - -// -// Framework CPU IO protocol structure is the same as CPU IO 2 protocol defined in PI 1.2 spec. -// However, there is a significant different between the Framework CPU I/O -// Protocol and the PI 1.2 CPU I/O 2 Protocol. The Framework one is a runtime -// protocol, which means it can be used by runtime drivers after ExitBootServices(). -// The PI one is not runtime safe, so it is a boot services only protocol and may -// not be used by runtime drivers after ExitBootServices(). -// -typedef EFI_CPU_IO2_PROTOCOL EFI_CPU_IO_PROTOCOL; - -extern EFI_GUID gEfiCpuIoProtocolGuid; - -#endif diff --git a/IntelFrameworkPkg/Include/Protocol/DataHub.h b/IntelFrameworkPkg/Include/Protocol/DataHub.h deleted file mode 100644 index eb828fc6f..000000000 --- a/IntelFrameworkPkg/Include/Protocol/DataHub.h +++ /dev/null @@ -1,222 +0,0 @@ -/** @file - The data hub protocol is used both by agents wishing to log - data and those wishing to be made aware of all information that - has been logged. This protocol may only be called <= TPL_NOTIFY. - -Copyright (c) 2007 - 2010, Intel Corporation. All rights reserved.
-This program and the accompanying materials are licensed and made available under -the terms and conditions of the BSD License that accompanies this distribution. -The full text of the license may be found at -http://opensource.org/licenses/bsd-license.php. - -THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, -WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. - - @par Revision Reference: - The Data Hub Protocol is defined in Framework for EFI Data Hub Specification - Version 0.9. - -**/ - -#ifndef __DATA_HUB_H__ -#define __DATA_HUB_H__ - -#define EFI_DATA_HUB_PROTOCOL_GUID \ - { \ - 0xae80d021, 0x618e, 0x11d4, {0xbc, 0xd7, 0x0, 0x80, 0xc7, 0x3c, 0x88, 0x81 } \ - } - -// -// EFI generic Data Hub Header -// -// A Data Record is an EFI_DATA_RECORD_HEADER followed by RecordSize bytes of -// data. The format of the data is defined by the DataRecordGuid. -// -// If EFI_DATA_RECORD_HEADER is extended in the future, the Version number and HeaderSize must -// change. -// -// The logger is responcible for initializing: -// Version, HeaderSize, RecordSize, DataRecordGuid, DataRecordClass -// -// The Data Hub driver is responcible for initializing: -// LogTime and LogMonotonicCount. -// -#define EFI_DATA_RECORD_HEADER_VERSION 0x0100 -typedef struct { - UINT16 Version; - UINT16 HeaderSize; - UINT32 RecordSize; - EFI_GUID DataRecordGuid; - EFI_GUID ProducerName; - UINT64 DataRecordClass; - EFI_TIME LogTime; - UINT64 LogMonotonicCount; -} EFI_DATA_RECORD_HEADER; - -// -// Definition of DataRecordClass. These are used to filter out class types -// at a very high level. The DataRecordGuid still defines the format of -// the data. See the Data Hub Specification for rules on what can and can not be a -// new DataRecordClass -// -#define EFI_DATA_RECORD_CLASS_DEBUG 0x0000000000000001 -#define EFI_DATA_RECORD_CLASS_ERROR 0x0000000000000002 -#define EFI_DATA_RECORD_CLASS_DATA 0x0000000000000004 -#define EFI_DATA_RECORD_CLASS_PROGRESS_CODE 0x0000000000000008 - -// -// Forward reference for pure ANSI compatability -// -typedef struct _EFI_DATA_HUB_PROTOCOL EFI_DATA_HUB_PROTOCOL; - -/** - Logs a data record to the system event log. - - @param This The EFI_DATA_HUB_PROTOCOL instance. - @param DataRecordGuid A GUID that indicates the format of the data passed into RawData. - @param ProducerName A GUID that indicates the identity of the caller to this API. - @param DataRecordClass This class indicates the generic type of the data record. - @param RawData The DataRecordGuid-defined data to be logged. - @param RawDataSize The size in bytes of RawData. - - @retval EFI_SUCCESS Data was logged. - @retval EFI_OUT_OF_RESOURCES Data was not logged due to lack of system resources. - -**/ -typedef -EFI_STATUS -(EFIAPI *EFI_DATA_HUB_LOG_DATA)( - IN EFI_DATA_HUB_PROTOCOL *This, - IN EFI_GUID *DataRecordGuid, - IN EFI_GUID *ProducerName, - IN UINT64 DataRecordClass, - IN VOID *RawData, - IN UINT32 RawDataSize - ); - -/** - Allows the system data log to be searched. - - @param This The EFI_DATA_HUB_PROTOCOL instance. - @param MonotonicCount On input, it specifies the Record to return. - An input of zero means to return the first record, - as does an input of one. - @param FilterDriver If FilterDriver is not passed in a MonotonicCount - of zero, it means to return the first data record. - If FilterDriver is passed in, then a MonotonicCount - of zero means to return the first data not yet read - by FilterDriver. - @param Record Returns a dynamically allocated memory buffer with - a data record that matches MonotonicCount. - - @retval EFI_SUCCESS Data was returned in Record. - @retval EFI_INVALID_PARAMETER FilterDriver was passed in but does not exist. - @retval EFI_NOT_FOUND MonotonicCount does not match any data record - in the system. If a MonotonicCount of zero was - passed in, then no data records exist in the system. - @retval EFI_OUT_OF_RESOURCES Record was not returned due to lack - of system resources. - @note Inconsistent with specification here: - In Framework for EFI Data Hub Specification, Version 0.9, This definition - is named as EFI_DATA_HUB_GET_NEXT_DATA_RECORD. The inconsistency is - maintained for backward compatibility. -**/ -typedef -EFI_STATUS -(EFIAPI *EFI_DATA_HUB_GET_NEXT_RECORD)( - IN EFI_DATA_HUB_PROTOCOL *This, - IN OUT UINT64 *MonotonicCount, - IN EFI_EVENT *FilterDriver OPTIONAL, - OUT EFI_DATA_RECORD_HEADER **Record - ); - -/** - Registers an event to be signaled every time a data record is logged in the system. - - @param This The EFI_DATA_HUB_PROTOCOL instance. - @param FilterEvent The EFI_EVENT to signal whenever data that matches - FilterClass is logged in the system. - @param FilterTpl The maximum EFI_TPL at which FilterEvent can be - signaled. It is strongly recommended that you use - the lowest EFI_TPL possible. - @param FilterClass FilterEvent will be signaled whenever a bit - in EFI_DATA_RECORD_HEADER.DataRecordClass is also - set in FilterClass. If FilterClass is zero, no - class-based filtering will be performed. - @param FilterDataRecordGuid FilterEvent will be signaled whenever - FilterDataRecordGuid matches - EFI_DATA_RECORD_HEADER.DataRecordGuid. - If FilterDataRecordGuid is NULL, then no GUID-based - filtering will be performed. - - @retval EFI_SUCCESS The filter driver event was registered - @retval EFI_ALREADY_STARTED FilterEvent was previously registered and cannot - be registered again. - @retval EFI_OUT_OF_RESOURCES The filter driver event was not registered - due to lack of system resources. - @note Inconsistent with specification here: - In Framework for EFI Data Hub Specification, Version 0.9, This definition - is named as EFI_DATA_HUB_REGISTER_DATA_FILTER_DRIVER. The inconsistency - is maintained for backward compatibility. -**/ -typedef -EFI_STATUS -(EFIAPI *EFI_DATA_HUB_REGISTER_FILTER_DRIVER)( - IN EFI_DATA_HUB_PROTOCOL *This, - IN EFI_EVENT FilterEvent, - IN EFI_TPL FilterTpl, - IN UINT64 FilterClass, - IN EFI_GUID *FilterDataRecordGuid OPTIONAL - ); - -/** - Stops a filter driver from being notified when data records are logged. - - @param This The EFI_DATA_HUB_PROTOCOL instance. - @param FilterEvent The EFI_EVENT to remove from the list of events to be - signaled every time errors are logged. - - @retval EFI_SUCCESS The filter driver represented by FilterEvent was shut off. - @retval EFI_NOT_FOUND FilterEvent did not exist. - @note Inconsistent with specification here: - In Framework for EFI Data Hub Specification, Version 0.9, This definition - is named as EFI_DATA_HUB_UNREGISTER_DATA_FILTER_DRIVER. The inconsistency - is maintained for backward compatibility. -**/ -typedef -EFI_STATUS -(EFIAPI *EFI_DATA_HUB_UNREGISTER_FILTER_DRIVER)( - IN EFI_DATA_HUB_PROTOCOL *This, - IN EFI_EVENT FilterEvent - ); - -/** - This protocol is used to log information and register filter drivers - to receive data records. -**/ -struct _EFI_DATA_HUB_PROTOCOL { - /// - /// Logs a data record. - /// - EFI_DATA_HUB_LOG_DATA LogData; - - /// - /// Gets a data record. Used both to view the memory-based log and to - /// get information about which data records have been consumed by a filter driver. - /// - EFI_DATA_HUB_GET_NEXT_RECORD GetNextRecord; - - /// - /// Allows the registration of an EFI event to act as a filter driver for all data records that are logged. - /// - EFI_DATA_HUB_REGISTER_FILTER_DRIVER RegisterFilterDriver; - - /// - /// Used to remove a filter driver that was added with RegisterFilterDriver(). - /// - EFI_DATA_HUB_UNREGISTER_FILTER_DRIVER UnregisterFilterDriver; -}; - -extern EFI_GUID gEfiDataHubProtocolGuid; - -#endif diff --git a/IntelFrameworkPkg/Include/Protocol/FirmwareVolume.h b/IntelFrameworkPkg/Include/Protocol/FirmwareVolume.h deleted file mode 100644 index 8c19f0192..000000000 --- a/IntelFrameworkPkg/Include/Protocol/FirmwareVolume.h +++ /dev/null @@ -1,346 +0,0 @@ -/** @file - This file declares the Firmware Volume Protocol. - - The Firmware Volume Protocol provides file-level access to the firmware volume. - Each firmware volume driver must produce an instance of the Firmware Volume - Protocol if the firmware volume is to be visible to the system. The Firmware - Volume Protocol also provides mechanisms for determining and modifying some - attributes of the firmware volume. - -Copyright (c) 2007 - 2010, Intel Corporation. All rights reserved.
-This program and the accompanying materials are licensed and made available under -the terms and conditions of the BSD License that accompanies this distribution. -The full text of the license may be found at -http://opensource.org/licenses/bsd-license.php. - -THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, -WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. - - @par Revision Reference: - This protocol is defined in Firmware Volume specification. - Version 0.9. - -**/ - -#ifndef _FIRMWARE_VOLUME_H_ -#define _FIRMWARE_VOLUME_H_ - - -// -// Firmware Volume Protocol GUID definition -// -#define EFI_FIRMWARE_VOLUME_PROTOCOL_GUID \ - { \ - 0x389F751F, 0x1838, 0x4388, {0x83, 0x90, 0xCD, 0x81, 0x54, 0xBD, 0x27, 0xF8 } \ - } - -#define FV_DEVICE_SIGNATURE SIGNATURE_32 ('_', 'F', 'V', '_') - -typedef struct _EFI_FIRMWARE_VOLUME_PROTOCOL EFI_FIRMWARE_VOLUME_PROTOCOL; - -// -// FRAMEWORK_EFI_FV_ATTRIBUTES bit definitions -// -typedef UINT64 FRAMEWORK_EFI_FV_ATTRIBUTES; - -// -// ************************************************************ -// FRAMEWORK_EFI_FV_ATTRIBUTES bit definitions -// ************************************************************ -// -#define EFI_FV_READ_DISABLE_CAP 0x0000000000000001ULL -#define EFI_FV_READ_ENABLE_CAP 0x0000000000000002ULL -#define EFI_FV_READ_STATUS 0x0000000000000004ULL - -#define EFI_FV_WRITE_DISABLE_CAP 0x0000000000000008ULL -#define EFI_FV_WRITE_ENABLE_CAP 0x0000000000000010ULL -#define EFI_FV_WRITE_STATUS 0x0000000000000020ULL - -#define EFI_FV_LOCK_CAP 0x0000000000000040ULL -#define EFI_FV_LOCK_STATUS 0x0000000000000080ULL -#define EFI_FV_WRITE_POLICY_RELIABLE 0x0000000000000100ULL - -#define EFI_FV_ALIGNMENT_CAP 0x0000000000008000ULL -#define EFI_FV_ALIGNMENT_2 0x0000000000010000ULL -#define EFI_FV_ALIGNMENT_4 0x0000000000020000ULL -#define EFI_FV_ALIGNMENT_8 0x0000000000040000ULL -#define EFI_FV_ALIGNMENT_16 0x0000000000080000ULL -#define EFI_FV_ALIGNMENT_32 0x0000000000100000ULL -#define EFI_FV_ALIGNMENT_64 0x0000000000200000ULL -#define EFI_FV_ALIGNMENT_128 0x0000000000400000ULL -#define EFI_FV_ALIGNMENT_256 0x0000000000800000ULL -#define EFI_FV_ALIGNMENT_512 0x0000000001000000ULL -#define EFI_FV_ALIGNMENT_1K 0x0000000002000000ULL -#define EFI_FV_ALIGNMENT_2K 0x0000000004000000ULL -#define EFI_FV_ALIGNMENT_4K 0x0000000008000000ULL -#define EFI_FV_ALIGNMENT_8K 0x0000000010000000ULL -#define EFI_FV_ALIGNMENT_16K 0x0000000020000000ULL -#define EFI_FV_ALIGNMENT_32K 0x0000000040000000ULL -#define EFI_FV_ALIGNMENT_64K 0x0000000080000000ULL - -// -// Protocol API definitions -// - -/** - Retrieves attributes, insures positive polarity of attribute bits, and returns - resulting attributes in an output parameter. - - @param This Indicates the EFI_FIRMWARE_VOLUME_PROTOCOL instance. - @param Attributes Output buffer containing attributes. - - @retval EFI_SUCCESS The firmware volume attributes were returned. -**/ -typedef -EFI_STATUS -(EFIAPI *FRAMEWORK_EFI_FV_GET_ATTRIBUTES)( - IN EFI_FIRMWARE_VOLUME_PROTOCOL *This, - OUT FRAMEWORK_EFI_FV_ATTRIBUTES *Attributes - ); - -/** - Sets volume attributes - - @param This Indicates the EFI_FIRMWARE_VOLUME_PROTOCOL instance. - @param Attributes On input, Attributes is a pointer to an - EFI_FV_ATTRIBUTES containing the desired firmware - volume settings. On successful return, it contains - the new settings of the firmware volume. On - unsuccessful return, Attributes is not modified - and the firmware volume settings are not changed. - - @retval EFI_INVALID_PARAMETER A bit in Attributes was invalid. - @retval EFI_SUCCESS The requested firmware volume attributes were set - and the resulting EFI_FV_ATTRIBUTES is returned in - Attributes. - @retval EFI_ACCESS_DENIED The Device is locked and does not permit modification. - -**/ -typedef -EFI_STATUS -(EFIAPI *FRAMEWORK_EFI_FV_SET_ATTRIBUTES)( - IN EFI_FIRMWARE_VOLUME_PROTOCOL *This, - IN OUT FRAMEWORK_EFI_FV_ATTRIBUTES *Attributes - ); - -/** - Read the requested file (NameGuid) or file information from the firmware volume - and returns data in Buffer. - - @param This The EFI_FIRMWARE_VOLUME_PROTOCOL instance. - @param NameGuid The pointer to EFI_GUID, which is the filename of - the file to read. - @param Buffer The pointer to pointer to buffer in which contents of file are returned. -
- If Buffer is NULL, only type, attributes, and size - are returned as there is no output buffer. -
- If Buffer != NULL and *Buffer == NULL, the output - buffer is allocated from BS pool by ReadFile. -
- If Buffer != NULL and *Buffer != NULL, the output - buffer has been allocated by the caller and is being - passed in. - @param BufferSize On input: The buffer size. On output: The size - required to complete the read. - @param FoundType The pointer to the type of the file whose data - is returned. - @param FileAttributes The pointer to attributes of the file whose data - is returned. - @param AuthenticationStatus The pointer to the authentication status of the data. - - @retval EFI_SUCCESS The call completed successfully. - @retval EFI_WARN_BUFFER_TOO_SMALL The buffer is too small to contain the requested output. - The buffer filled, and the output is truncated. - @retval EFI_NOT_FOUND NameGuid was not found in the firmware volume. - @retval EFI_DEVICE_ERROR A hardware error occurred when attempting to - access the firmware volume. - @retval EFI_ACCESS_DENIED The firmware volume is configured to disallow reads. - @retval EFI_OUT_OF_RESOURCES An allocation failure occurred. - -**/ -typedef -EFI_STATUS -(EFIAPI *FRAMEWORK_EFI_FV_READ_FILE)( - IN EFI_FIRMWARE_VOLUME_PROTOCOL *This, - IN EFI_GUID *NameGuid, - IN OUT VOID **Buffer, - IN OUT UINTN *BufferSize, - OUT EFI_FV_FILETYPE *FoundType, - OUT EFI_FV_FILE_ATTRIBUTES *FileAttributes, - OUT UINT32 *AuthenticationStatus - ); - -/** - Read the requested section from the specified file and returns data in Buffer. - - @param This Indicates the EFI_FIRMWARE_VOLUME_PROTOCOL instance. - @param NameGuid Filename identifying the file from which to read. - @param SectionType The section type to retrieve. - @param SectionInstance The instance of SectionType to retrieve. - @param Buffer Pointer to pointer to buffer in which contents of - a file are returned. -
- If Buffer is NULL, only type, attributes, and size - are returned as there is no output buffer. -
- If Buffer != NULL and *Buffer == NULL, the output - buffer is allocated from BS pool by ReadFile. -
- If Buffer != NULL and *Buffer != NULL, the output - buffer has been allocated by the caller and is being - passed in. - @param BufferSize The pointer to the buffer size passed in, and on - output the size required to complete the read. - @param AuthenticationStatus The pointer to the authentication status of the data. - - @retval EFI_SUCCESS The call completed successfully. - @retval EFI_WARN_BUFFER_TOO_SMALL The buffer is too small to contain the requested output. - The buffer is filled and the output is truncated. - @retval EFI_OUT_OF_RESOURCES An allocation failure occurred. - @retval EFI_NOT_FOUND The name was not found in the firmware volume. - @retval EFI_DEVICE_ERROR A hardware error occurred when attempting to - access the firmware volume. - @retval EFI_ACCESS_DENIED The firmware volume is configured to disallow reads. - -**/ -typedef -EFI_STATUS -(EFIAPI *FRAMEWORK_EFI_FV_READ_SECTION)( - IN EFI_FIRMWARE_VOLUME_PROTOCOL *This, - IN EFI_GUID *NameGuid, - IN EFI_SECTION_TYPE SectionType, - IN UINTN SectionInstance, - IN OUT VOID **Buffer, - IN OUT UINTN *BufferSize, - OUT UINT32 *AuthenticationStatus - ); - -typedef UINT32 FRAMEWORK_EFI_FV_WRITE_POLICY; - -#define FRAMEWORK_EFI_FV_UNRELIABLE_WRITE 0x00000000 -#define FRAMEWORK_EFI_FV_RELIABLE_WRITE 0x00000001 - -typedef struct { - EFI_GUID *NameGuid; - EFI_FV_FILETYPE Type; - EFI_FV_FILE_ATTRIBUTES FileAttributes; - VOID *Buffer; - UINT32 BufferSize; -} FRAMEWORK_EFI_FV_WRITE_FILE_DATA; - -/** - Write the supplied file (NameGuid) to the FV. - - @param This Indicates the EFI_FIRMWARE_VOLUME_PROTOCOL instance. - @param NumberOfFiles Indicates the number of file records pointed to - by FileData. - @param WritePolicy Indicates the level of reliability of the write - with respect to things like power failure events. - @param FileData A pointer to an array of EFI_FV_WRITE_FILE_DATA - structures. Each element in the array indicates - a file to write, and there are NumberOfFiles - elements in the input array. - - @retval EFI_SUCCESS The write completed successfully. - @retval EFI_OUT_OF_RESOURCES The firmware volume does not have enough free - space to store file(s). - @retval EFI_DEVICE_ERROR A hardware error occurred when attempting to - access the firmware volume. - @retval EFI_WRITE_PROTECTED The firmware volume is configured to disallow writes. - @retval EFI_NOT_FOUND A delete was requested, but the requested file was - not found in the firmware volume. - @retval EFI_INVALID_PARAMETER A delete was requested with a multiple file write. - An unsupported WritePolicy was requested. - An unknown file type was specified. - A file system specific error has occurred. -**/ -typedef -EFI_STATUS -(EFIAPI *FRAMEWORK_EFI_FV_WRITE_FILE)( - IN EFI_FIRMWARE_VOLUME_PROTOCOL *This, - IN UINT32 NumberOfFiles, - IN FRAMEWORK_EFI_FV_WRITE_POLICY WritePolicy, - IN FRAMEWORK_EFI_FV_WRITE_FILE_DATA *FileData - ); - -/** - Given the input key, search for the next matching file in the volume. - - @param This Indicates the EFI_FIRMWARE_VOLUME_PROTOCOL instance. - @param Key Pointer to a caller allocated buffer that contains - an implementation-specific key that is used to track - where to begin searching on successive calls. - @param FileType The pointer to the file type to filter for. - @param NameGuid The pointer to Guid filename of the file found. - @param Attributes The pointer to Attributes of the file found. - @param Size The pointer to Size in bytes of the file found. - - @retval EFI_SUCCESS The output parameters are filled with data obtained from - the first matching file that was found. - @retval EFI_NOT_FOUND No files of type FileType were found. - @retval EFI_DEVICE_ERROR A hardware error occurred when attempting to access - the firmware volume. - @retval EFI_ACCESS_DENIED The firmware volume is configured to disallow reads. - -**/ -typedef -EFI_STATUS -(EFIAPI *FRAMEWORK_EFI_FV_GET_NEXT_FILE)( - IN EFI_FIRMWARE_VOLUME_PROTOCOL *This, - IN OUT VOID *Key, - IN OUT EFI_FV_FILETYPE *FileType, - OUT EFI_GUID *NameGuid, - OUT EFI_FV_FILE_ATTRIBUTES *Attributes, - OUT UINTN *Size - ); - -// -// Protocol interface structure -// -struct _EFI_FIRMWARE_VOLUME_PROTOCOL { - /// - /// Retrieves volume capabilities and current settings. - /// - FRAMEWORK_EFI_FV_GET_ATTRIBUTES GetVolumeAttributes; - - /// - /// Modifies the current settings of the firmware volume. - /// - FRAMEWORK_EFI_FV_SET_ATTRIBUTES SetVolumeAttributes; - - /// - /// Reads an entire file from the firmware volume. - /// - FRAMEWORK_EFI_FV_READ_FILE ReadFile; - - /// - /// Reads a single section from a file into a buffer. - /// - FRAMEWORK_EFI_FV_READ_SECTION ReadSection; - - /// - /// Writes an entire file into the firmware volume. - /// - FRAMEWORK_EFI_FV_WRITE_FILE WriteFile; - - /// - /// Provides service to allow searching the firmware volume. - /// - FRAMEWORK_EFI_FV_GET_NEXT_FILE GetNextFile; - - /// - /// Data field that indicates the size in bytes of the Key input buffer for - /// the GetNextFile() API. - /// - UINT32 KeySize; - - /// - /// Handle of the parent firmware volume. - /// - EFI_HANDLE ParentHandle; -}; - -extern EFI_GUID gEfiFirmwareVolumeProtocolGuid; - -#endif diff --git a/IntelFrameworkPkg/Include/Protocol/FrameworkFirmwareVolumeBlock.h b/IntelFrameworkPkg/Include/Protocol/FrameworkFirmwareVolumeBlock.h deleted file mode 100644 index 3468ceb38..000000000 --- a/IntelFrameworkPkg/Include/Protocol/FrameworkFirmwareVolumeBlock.h +++ /dev/null @@ -1,353 +0,0 @@ -/** @file - This file provides control over block-oriented firmware devices. - -Copyright (c) 2006 - 2010, Intel Corporation. All rights reserved.
-This program and the accompanying materials are licensed and made available under -the terms and conditions of the BSD License that accompanies this distribution. -The full text of the license may be found at -http://opensource.org/licenses/bsd-license.php. - -THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, -WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. - - @par Revision Reference: - This protocol is defined in framework spec: Firmware Volume Block Specification. - -**/ - -#ifndef __FRAMEWORK_FIRMWARE_VOLUME_BLOCK_H__ -#define __FRAMEWORK_FIRMWARE_VOLUME_BLOCK_H__ - -#define FRAMEWORK_EFI_FIRMWARE_VOLUME_BLOCK_PROTOCOL_GUID \ -{ 0xDE28BC59, 0x6228, 0x41BD, {0xBD, 0xF6, 0xA3, 0xB9, 0xAD,0xB5, 0x8D, 0xA1 } } - -typedef struct _FRAMEWORK_EFI_FIRMWARE_VOLUME_BLOCK_PROTOCOL FRAMEWORK_EFI_FIRMWARE_VOLUME_BLOCK_PROTOCOL; -/// -/// The type of EFI FVB attribute per the Framework specification. -/// -typedef UINT32 EFI_FVB_ATTRIBUTES; - -/** - The GetAttributes() function retrieves the attributes and - current settings of the block. - - @param This Indicates the FRAMEWORK_EFI_FIRMWARE_VOLUME_BLOCK_PROTOCOL instance. - - @param Attributes Pointer to EFI_FVB_ATTRIBUTES in which the - attributes and current settings are - returned. - - @retval EFI_SUCCESS The firmware volume attributes were - returned. - -**/ -typedef -EFI_STATUS -(EFIAPI * FRAMEWORK_EFI_FVB_GET_ATTRIBUTES)( - IN FRAMEWORK_EFI_FIRMWARE_VOLUME_BLOCK_PROTOCOL *This, - OUT EFI_FVB_ATTRIBUTES *Attributes -); - - -/** - The SetAttributes() function sets configurable firmware volume - attributes and returns the new settings of the firmware volume. - - @param This Indicates the FRAMEWORK_EFI_FIRMWARE_VOLUME_BLOCK_PROTOCOL instance. - - @param Attributes On input, Attributes is a pointer to - EFI_FVB_ATTRIBUTES that contains the - desired firmware volume settings. On - successful return, it contains the new - settings of the firmware volume. - - @retval EFI_SUCCESS The firmware volume attributes were returned. - - @retval EFI_INVALID_PARAMETER The attributes requested are in - conflict with the capabilities - as declared in the firmware - volume header. - -**/ -typedef -EFI_STATUS -(EFIAPI * FRAMEWORK_EFI_FVB_SET_ATTRIBUTES)( - IN FRAMEWORK_EFI_FIRMWARE_VOLUME_BLOCK_PROTOCOL *This, - IN OUT EFI_FVB_ATTRIBUTES *Attributes -); - - -/** - The GetPhysicalAddress() function retrieves the base address of - a memory-mapped firmware volume. This function should be called - only for memory-mapped firmware volumes. - - @param This Indicates the FRAMEWORK_EFI_FIRMWARE_VOLUME_BLOCK_PROTOCOL instance. - - @param Address Pointer to a caller-allocated - EFI_PHYSICAL_ADDRESS that, on successful - return from GetPhysicalAddress(), contains the - base address of the firmware volume. - - @retval EFI_SUCCESS The firmware volume base address is returned. - - @retval EFI_NOT_SUPPORTED The firmware volume is not memory mapped. - -**/ -typedef -EFI_STATUS -(EFIAPI * FRAMEWORK_EFI_FVB_GET_PHYSICAL_ADDRESS)( - IN FRAMEWORK_EFI_FIRMWARE_VOLUME_BLOCK_PROTOCOL *This, - OUT EFI_PHYSICAL_ADDRESS *Address -); - -/** - The GetBlockSize() function retrieves the size of the requested - block. It also returns the number of additional blocks with - the identical size. The GetBlockSize() function is used to - retrieve the block map (see EFI_FIRMWARE_VOLUME_HEADER). - - - @param This Indicates the FRAMEWORK_EFI_FIRMWARE_VOLUME_BLOCK_PROTOCOL instance. - - @param Lba Indicates the block for which to return the size. - - @param BlockSize The pointer to a caller-allocated UINTN in which - the size of the block is returned. - - @param NumberOfBlocks The pointer to a caller-allocated UINTN in - which the number of consecutive blocks, - starting with Lba, is returned. All - blocks in this range have a size of - BlockSize. - - - @retval EFI_SUCCESS The firmware volume base address was returned. - - @retval EFI_INVALID_PARAMETER The requested LBA is out of range. - -**/ -typedef -EFI_STATUS -(EFIAPI * FRAMEWORK_EFI_FVB_GET_BLOCK_SIZE)( - IN FRAMEWORK_EFI_FIRMWARE_VOLUME_BLOCK_PROTOCOL *This, - IN EFI_LBA Lba, - OUT UINTN *BlockSize, - OUT UINTN *NumberOfBlocks -); - - -/** - Reads the specified number of bytes into a buffer from the specified block. - - The Read() function reads the requested number of bytes from the - requested block and stores them in the provided buffer. - Implementations should be mindful that the firmware volume - might be in the ReadDisabled state. If it is in this state, - the Read() function must return the status code - EFI_ACCESS_DENIED without modifying the contents of the - buffer. The Read() function must also prevent spanning block - boundaries. If a read is requested that would span a block - boundary, the read must read up to the boundary but not - beyond. The output parameter NumBytes must be set to correctly - indicate the number of bytes actually read. The caller must be - aware that a read may be partially completed. - - @param This Indicates the FRAMEWORK_EFI_FIRMWARE_VOLUME_BLOCK_PROTOCOL instance. - - @param Lba The starting logical block index - from which to read. - - @param Offset Offset into the block at which to begin reading. - - @param NumBytes The pointer to a UINTN. At entry, *NumBytes - contains the total size of the buffer. At - exit, *NumBytes contains the total number of - bytes read. - - @param Buffer The pointer to a caller-allocated buffer that will - be used to hold the data that is read. - - @retval EFI_SUCCESS The firmware volume was read successfully - and contents are in Buffer. - - @retval EFI_BAD_BUFFER_SIZE A read was attempted across an LBA - boundary. On output, NumBytes - contains the total number of bytes - returned in Buffer. - - @retval EFI_ACCESS_DENIED The firmware volume is in the - ReadDisabled state. - - @retval EFI_DEVICE_ERROR The block device is not - functioning correctly and could - not be read. - -**/ -typedef -EFI_STATUS -(EFIAPI *FRAMEWORK_EFI_FVB_READ)( - IN FRAMEWORK_EFI_FIRMWARE_VOLUME_BLOCK_PROTOCOL *This, - IN EFI_LBA Lba, - IN UINTN Offset, - IN OUT UINTN *NumBytes, - IN OUT UINT8 *Buffer -); - -/** - Writes the specified number of bytes from the input buffer to the block. - - The Write() function writes the specified number of bytes from - the provided buffer to the specified block and offset. If the - firmware volume is sticky write, the caller must ensure that - all the bits of the specified range to write are in the - EFI_FVB_ERASE_POLARITY state before calling the Write() - function, or else the result will be unpredictable. This - unpredictability arises because, for a sticky-write firmware - volume, a write may negate a bit in the EFI_FVB_ERASE_POLARITY - state but cannot flip it back again. In general, before - calling the Write() function, the caller should call the - EraseBlocks() function first to erase the specified block to - write. A block erase cycle will transition bits from the - (NOT)EFI_FVB_ERASE_POLARITY state back to the - EFI_FVB_ERASE_POLARITY state. Implementors should note - that the firmware volume might be in the WriteDisabled - state. If it is in this state, the Write() function must - return the status code EFI_ACCESS_DENIED without modifying the - contents of the firmware volume. The Write() function must - also prevent spanning block boundaries. If a write is - requested that spans a block boundary, the write must store up - to the boundary but not beyond. The output parameter NumBytes - must be set to correctly indicate the number of bytes actually - written. The caller must be aware that a write may be - partially completed. All writes, partial or otherwise, must be - fully flushed to the hardware before the Write() service - returns. - - @param This Indicates the FRAMEWORK_EFI_FIRMWARE_VOLUME_BLOCK_PROTOCOL instance. - - @param Lba The starting logical block index to write to. - - @param Offset Offset into the block at which to begin writing. - - @param NumBytes The pointer to a UINTN. Input: the total size of the buffer. - Output: the total number of bytes actually written. - - @param Buffer The pointer to a caller-allocated buffer that - contains the source for the write. - - @retval EFI_SUCCESS The firmware volume was written successfully. - - @retval EFI_BAD_BUFFER_SIZE The write was attempted across an - LBA boundary. On output, NumBytes - contains the total number of bytes - actually written. - - @retval EFI_ACCESS_DENIED The firmware volume is in the - WriteDisabled state. - - @retval EFI_DEVICE_ERROR The block device is malfunctioning - and could not be written. - - -**/ -typedef -EFI_STATUS -(EFIAPI * FRAMEWORK_EFI_FVB_WRITE)( - IN FRAMEWORK_EFI_FIRMWARE_VOLUME_BLOCK_PROTOCOL *This, - IN EFI_LBA Lba, - IN UINTN Offset, - IN OUT UINTN *NumBytes, - IN UINT8 *Buffer -); - - - - -/// -/// EFI_LBA_LIST_TERMINATOR. -/// -#define FRAMEWORK_EFI_LBA_LIST_TERMINATOR 0xFFFFFFFFFFFFFFFFULL - - -/** - Erases and initializes a firmware volume block. - - The EraseBlocks() function erases one or more blocks as denoted - by the variable argument list. The entire parameter list of - blocks must be verified before erasing any blocks. If a block is - requested that does not exist within the associated firmware - volume (it has a larger index than the last block of the - firmware volume), the EraseBlocks() function must return the - status code EFI_INVALID_PARAMETER without modifying the contents - of the firmware volume. Implementors should note that - the firmware volume might be in the WriteDisabled state. If it - is in this state, the EraseBlocks() function must return the - status code EFI_ACCESS_DENIED without modifying the contents of - the firmware volume. All calls to EraseBlocks() must be fully - flushed to the hardware before the EraseBlocks() service - returns. - - @param This Indicates the FRAMEWORK_EFI_FIRMWARE_VOLUME_BLOCK_PROTOCOL - instance. - - @param ... A list of tuples. - Each tuple describes a range of LBAs to erase - and consists of the following: - - An EFI_LBA that indicates the starting LBA - - A UINTN that indicates the number of blocks to - erase - - The list is terminated with an - EFI_LBA_LIST_TERMINATOR. For example, the - following indicates that two ranges of blocks - (5-7 and 10-11) are to be erased: EraseBlocks - (This, 5, 3, 10, 2, EFI_LBA_LIST_TERMINATOR); - - @retval EFI_SUCCESS The erase request successfully - completed. - - @retval EFI_ACCESS_DENIED The firmware volume is in the - WriteDisabled state. - @retval EFI_DEVICE_ERROR The block device is not functioning - correctly and could not be written. - The firmware device may have been - partially erased. - @retval EFI_INVALID_PARAMETER One or more of the LBAs listed - in the variable argument list do - not exist in the firmware volume. - -**/ -typedef -EFI_STATUS -(EFIAPI * FRAMEWORK_EFI_FVB_ERASE_BLOCKS)( - IN FRAMEWORK_EFI_FIRMWARE_VOLUME_BLOCK_PROTOCOL *This, - ... -); - -/// -/// The Firmware Volume Block Protocol is the low-level interface -/// to a firmware volume. File-level access to a firmware volume -/// should not be done using the Firmware Volume Block Protocol. -/// Normal access to a firmware volume must use the Firmware -/// Volume Protocol. Typically, only the file system driver that -/// produces the Firmware Volume Protocol will bind to the -/// Firmware Volume Block Protocol. -/// -struct _FRAMEWORK_EFI_FIRMWARE_VOLUME_BLOCK_PROTOCOL { - FRAMEWORK_EFI_FVB_GET_ATTRIBUTES GetAttributes; - FRAMEWORK_EFI_FVB_SET_ATTRIBUTES SetAttributes; - FRAMEWORK_EFI_FVB_GET_PHYSICAL_ADDRESS GetPhysicalAddress; - FRAMEWORK_EFI_FVB_GET_BLOCK_SIZE GetBlockSize; - FRAMEWORK_EFI_FVB_READ Read; - FRAMEWORK_EFI_FVB_WRITE Write; - FRAMEWORK_EFI_FVB_ERASE_BLOCKS EraseBlocks; - /// - /// The handle of the parent firmware volume. - /// - EFI_HANDLE ParentHandle; -}; - -extern EFI_GUID gFramerworkEfiFirmwareVolumeBlockProtocolGuid; - -#endif diff --git a/IntelFrameworkPkg/Include/Protocol/FrameworkFormBrowser.h b/IntelFrameworkPkg/Include/Protocol/FrameworkFormBrowser.h deleted file mode 100644 index 74c25e273..000000000 --- a/IntelFrameworkPkg/Include/Protocol/FrameworkFormBrowser.h +++ /dev/null @@ -1,175 +0,0 @@ -/** @file - The EFI_FORM_BROWSER_PROTOCOL is the interface to the EFI - Configuration Driver. This interface enables the caller to direct the - configuration driver to use either the HII database or the passed-in - packet of data. This will also allow the caller to post messages - into the configuration drivers internal mailbox. - -Copyright (c) 2006 - 2010, Intel Corporation. All rights reserved.
-This program and the accompanying materials are licensed and made available under -the terms and conditions of the BSD License that accompanies this distribution. -The full text of the license may be found at -http://opensource.org/licenses/bsd-license.php. - -THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, -WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. - - Module Name: FrameworkFormBrowser.h - - @par Revision Reference: - This protocol is defined in HII spec 0.92. - -**/ - -#ifndef __FRAMEWORK_FORM_BROWSER_H__ -#define __FRAMEWORK_FORM_BROWSER_H__ - -#include - - -#define EFI_FORM_BROWSER_PROTOCOL_GUID \ - { \ - 0xe5a1333e, 0xe1b4, 0x4d55, {0xce, 0xeb, 0x35, 0xc3, 0xef, 0x13, 0x34, 0x43 } \ - } - -#define EFI_FORM_BROWSER_COMPATIBILITY_PROTOCOL_GUID \ - { \ - 0xfb7c852, 0xadca, 0x4853, { 0x8d, 0xf, 0xfb, 0xa7, 0x1b, 0x1c, 0xe1, 0x1a } \ - } - -typedef struct _EFI_FORM_BROWSER_PROTOCOL EFI_FORM_BROWSER_PROTOCOL; - -typedef struct { - UINT32 Length; - UINT16 Type; - UINT8 Data[1]; -} EFI_HII_PACKET; - -typedef struct { - EFI_HII_IFR_PACK *IfrData; - EFI_HII_STRING_PACK *StringData; -} EFI_IFR_PACKET; - -typedef struct { - UINTN LeftColumn; - UINTN RightColumn; - UINTN TopRow; - UINTN BottomRow; -} FRAMEWORK_EFI_SCREEN_DESCRIPTOR; - -/** - Provides direction to the configuration driver whether to use the HII - database or a passed-in set of data. This function also establishes a - pointer to the calling driver's callback interface. - - @param This A pointer to the EFI_FORM_BROWSER_PROTOCOL instance. - @param UseDatabase Determines whether the HII database is to be - used to gather information. If the value is FALSE, - the configuration driver will get the information - provided in the passed-in Packet parameters. - @param Handle A pointer to an array of HII handles to display. - This value should correspond to the value of the - HII form package that is required to be displayed. - @param HandleCount The number of handles in the array specified by Handle. - @param Packet A pointer to a set of data containing pointers to IFR - and/or string data. - @param CallbackHandle The handle to the driver's callback interface. - This parameter is used only when the UseDatabase - parameter is FALSE and an application wants to - register a callback with the browser. - @param NvMapOverride This buffer is used only when there is no NV variable - to define the current settings and the caller needs - to provide to the browser the current settings for - the "fake" NV variable. - @param ScreenDimensions Allows the browser to be called so that it occupies - a portion of the physical screen instead of dynamically - determining the screen dimensions. - @param ResetRequired This BOOLEAN value denotes whether a reset is required - based on the data that might have been changed. - The ResetRequired parameter is primarily applicable - for configuration applications, and is an - optional parameter. - - @retval EFI_SUCCESS The function completed successfully. - @retval EFI_NOT_FOUND The variable was not found. - @retval EFI_BUFFER_TOO_SMALL The DataSize is too small for the result. - DataSize has been updated with the size needed to - complete the request. - @retval EFI_INVALID_PARAMETER One of the parameters has an invalid value. - @retval EFI_DEVICE_ERROR The variable could not be saved due to a hardware failure. - -**/ -typedef -EFI_STATUS -(EFIAPI *EFI_SEND_FORM)( - IN EFI_FORM_BROWSER_PROTOCOL *This, - IN BOOLEAN UseDatabase, - IN FRAMEWORK_EFI_HII_HANDLE *Handle, - IN UINTN HandleCount, - IN EFI_IFR_PACKET *Packet, OPTIONAL - IN EFI_HANDLE CallbackHandle, OPTIONAL - IN UINT8 *NvMapOverride, OPTIONAL - IN FRAMEWORK_EFI_SCREEN_DESCRIPTOR *ScreenDimensions, OPTIONAL - OUT BOOLEAN *ResetRequired OPTIONAL - ); - -/** - Routine used to abstract a generic dialog interface and return the selected - key or string. - - @param NumberOfLines The number of lines for the dialog box. - @param HotKey Defines whether a single character is parsed (TRUE) - and returned in KeyValue, or if a string is returned - in StringBuffer. - @param MaximumStringSize The maximum size in bytes of a typed-in string. - Because each character is a CHAR16, the minimum - string returned is two bytes. - @param StringBuffer The passed-in pointer to the buffer that will hold - the typed in string if HotKey is FALSE. - @param KeyValue The EFI_INPUT_KEY value returned if HotKey is TRUE. - @param String The pointer to the first string in the list of strings - that comprise the dialog box. - @param ... A series of NumberOfLines text strings that will be used - to construct the dialog box. - - @retval EFI_SUCCESS The dialog was displayed and user interaction was received. - @retval EFI_DEVICE_ERROR The user typed in an ESC character to exit the routine. - @retval EFI_INVALID_PARAMETER One of the parameters was invalid - -**/ -typedef -EFI_STATUS -(EFIAPI *EFI_CREATE_POP_UP)( - IN UINTN NumberOfLines, - IN BOOLEAN HotKey, - IN UINTN MaximumStringSize, - OUT CHAR16 *StringBuffer, - OUT EFI_INPUT_KEY *KeyValue, - IN CHAR16 *String, - ... - ); - -/** - The EFI_FORM_BROWSER_PROTOCOL is the interface to call for drivers to - leverage the EFI configuration driver interface. -**/ -struct _EFI_FORM_BROWSER_PROTOCOL { - /// - /// Provides direction to the configuration driver whether to use the HII - /// database or to use a passed-in set of data. This function also establishes - /// a pointer to the calling driver's callback interface. - /// - EFI_SEND_FORM SendForm; - - /// - /// Routine used to abstract a generic dialog interface and return the - /// selected key or string. - /// - EFI_CREATE_POP_UP CreatePopUp; -}; - -extern EFI_GUID gEfiFormBrowserProtocolGuid; -extern EFI_GUID gEfiFormBrowserCompatibilityProtocolGuid; - - -#endif diff --git a/IntelFrameworkPkg/Include/Protocol/FrameworkFormCallback.h b/IntelFrameworkPkg/Include/Protocol/FrameworkFormCallback.h deleted file mode 100644 index 2d769bc3b..000000000 --- a/IntelFrameworkPkg/Include/Protocol/FrameworkFormCallback.h +++ /dev/null @@ -1,222 +0,0 @@ -/** @file - The EFI_FORM_CALLBACK_PROTOCOL is the defined interface for access to custom - NV storage devices and for communication of user selections in a more - interactive environment. This protocol should be published by hardware - specific drivers that want to export access to custom hardware storage or - publish IFR that need to call back the original driver. - -Copyright (c) 2006 - 2010, Intel Corporation. All rights reserved.
-This program and the accompanying materials are licensed and made available under -the terms and conditions of the BSD License that accompanies this distribution. -The full text of the license may be found at -http://opensource.org/licenses/bsd-license.php. - -THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, -WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. - - @par Revision Reference: - This protocol is defined in HII spec 0.92. - -**/ - -#ifndef __FRAMEWORK_FORM_CALLBACK_H__ -#define __FRAMEWORK_FORM_CALLBACK_H__ - -#include -#include - -#define EFI_FORM_CALLBACK_PROTOCOL_GUID \ - { \ - 0xf3e4543d, 0xcf35, 0x6cef, {0x35, 0xc4, 0x4f, 0xe6, 0x34, 0x4d, 0xfc, 0x54 } \ - } - -// -// Forward reference for pure ANSI compatability -// -typedef struct _EFI_FORM_CALLBACK_PROTOCOL EFI_FORM_CALLBACK_PROTOCOL; - -/// -/// Inconsistent with specification here: -/// RESET_REQUIRED, EXIT_REQUIRED, SAVE_REQUIRED, NV_CHANGED and NV_NOT_CHANGED are not -/// defined in HII specification. These Flags of EFI_IFR_DATA_ENTRY should be defined -/// to describe the standard behavior of the browser after the callback. -/// -/// If this flag is set, the browser will exit and reset after processing callback results. -/// -#define RESET_REQUIRED 1 -/// -/// If this flag is set, the browser will exit after processing callback results. -/// -#define EXIT_REQUIRED 2 -/// -/// If this flag is set, the browser will save the NV data after processing callback results. -/// -#define SAVE_REQUIRED 4 -/// -/// If this flag is set, the browser will turn the NV flag on after processing callback results. -/// -#define NV_CHANGED 8 -/// -/// If this flag is set, the browser will turn the NV flag off after processing callback results. -/// -#define NV_NOT_CHANGED 16 - -#pragma pack(1) -typedef struct { - UINT8 OpCode; ///< Likely a string, numeric, or one-of - UINT8 Length; ///< Length of the EFI_IFR_DATA_ENTRY packet. - UINT16 Flags; ///< Flags settings to determine what behavior is desired from the browser after the callback. - VOID *Data; ///< The data in the form based on the op-code type. This is not a pointer to the data; the data follows immediately. - /// - /// If the OpCode is a OneOf or Numeric type - Data is a UINT16 value. - /// If the OpCode is a String type - Data is a CHAR16[x] type. - /// If the OpCode is a Checkbox type - Data is a UINT8 value. - /// If the OpCode is a NV Access type - Data is a EFI_IFR_NV_DATA structure. - /// -} EFI_IFR_DATA_ENTRY; - -typedef struct { - VOID *NvRamMap; ///< If the flag of the op-code specified retrieval of a copy of the NVRAM map. - // - // this is a pointer to a buffer copy - // - UINT32 EntryCount; ///< Number of EFI_IFR_DATA_ENTRY entries. - // - // EFI_IFR_DATA_ENTRY Data[1]; // The in-line Data entries. - // -} EFI_IFR_DATA_ARRAY; - - -typedef union { - EFI_IFR_DATA_ARRAY DataArray; ///< Primarily used by those that call back to their drivers and use HII as a repository. - EFI_IFR_PACKET DataPacket; ///< Primarily used by those that do not use HII as a repository. - CHAR16 String[1]; ///< If returning an error - fill the string with null-terminated contents. -} EFI_HII_CALLBACK_PACKET; - -typedef struct { - FRAMEWORK_EFI_IFR_OP_HEADER Header; - UINT16 QuestionId; ///< Offset into the map. - UINT8 StorageWidth; ///< Width of the value. - // - // CHAR8 Data[1]; // The Data itself - // -} EFI_IFR_NV_DATA; - -#pragma pack() -// -// The following types are currently defined: -// -/** - Returns the value of a variable. - - @param This A pointer to the EFI_FORM_CALLBACK_PROTOCOL instance. - @param VariableName A NULL-terminated Unicode string that is the - name of the vendor's variable. - @param VendorGuid A unique identifier for the vendor. - @param Attributes If not NULL, a pointer to the memory location to - return the attribute's bit-mask for the variable. - @param DataSize The size in bytes of the Buffer. A size of zero causes - the variable to be deleted. - @param Buffer The buffer to return the contents of the variable. - - @retval EFI_SUCCESS The function completed successfully. - @retval EFI_NOT_FOUND The variable was not found. - @retval EFI_BUFFER_TOO_SMALL The DataSize is too small for the result. - DataSize has been updated with the size needed to complete the request. - @retval EFI_INVALID_PARAMETER One of the parameters has an invalid value. - @retval EFI_DEVICE_ERROR The variable could not be saved due to a hardware failure. - -**/ -typedef -EFI_STATUS -(EFIAPI *EFI_NV_READ)( - IN EFI_FORM_CALLBACK_PROTOCOL *This, - IN CHAR16 *VariableName, - IN EFI_GUID *VendorGuid, - OUT UINT32 *Attributes OPTIONAL, - IN OUT UINTN *DataSize, - OUT VOID *Buffer - ); - -/** - Sets the value of a variable. - - @param This A pointer to the EFI_FORM_CALLBACK_PROTOCOL instance. - @param VariableName A NULL-terminated Unicode string that is the - name of the vendor's variable. Each VariableName - is unique for each VendorGuid. - @param VendorGuid A unique identifier for the vendor. - @param Attributes Attributes bit-mask to set for the variable. - Inconsistent with specification here: - Attributes data type has been changed from - UINT32 * to UINT32, because the input parameter is - not necessary to use a pointer date type. - @param DataSize The size in bytes of the Buffer. A size of zero causes - the variable to be deleted. - @param Buffer The buffer containing the contents of the variable. - @param ResetRequired Returns a value from the driver that abstracts this - information and will enable a system to know if a - system reset is required to achieve the configuration - changes being enabled through this function. - - @retval EFI_SUCCESS The firmware has successfully stored the variable and - its data as defined by the Attributes. - @retval EFI_OUT_OF_RESOURCES Not enough storage is available to hold - the variable and its data. - @retval EFI_INVALID_PARAMETER An invalid combination of Attributes bits - was supplied, or the DataSize exceeds the maximum allowed. - @retval EFI_DEVICE_ERROR The variable could not be saved due to a hardware failure. - -**/ -typedef -EFI_STATUS -(EFIAPI *EFI_NV_WRITE)( - IN EFI_FORM_CALLBACK_PROTOCOL *This, - IN CHAR16 *VariableName, - IN EFI_GUID *VendorGuid, - IN UINT32 Attributes, - IN UINTN DataSize, - IN VOID *Buffer, - OUT BOOLEAN *ResetRequired - ); - -/** - This function is called to provide results data to the driver. - - @param This A pointer to the EFI_FORM_CALLBACK_PROTOCOL instance. - @param KeyValue A unique value which is sent to the original exporting - driver so that it can identify the type of data - to expect. The format of the data tends to vary based - on the opcode that generated the callback. - @param Data A pointer to the data being sent to the original exporting driver. - @param Packet A pointer to a packet of information that a driver passes - back to the browser. - - @return Status Code - -**/ -typedef -EFI_STATUS -(EFIAPI *EFI_FORM_CALLBACK)( - IN EFI_FORM_CALLBACK_PROTOCOL *This, - IN UINT16 KeyValue, - IN EFI_IFR_DATA_ARRAY *Data, - OUT EFI_HII_CALLBACK_PACKET **Packet - ); - -/** - The EFI_FORM_CALLBACK_PROTOCOL is the defined interface for access to - custom NVS devices as well as communication of user selections in a more - interactive environment. This protocol should be published by platform-specific - drivers that want to export access to custom hardware storage or publish IFR - that has a requirement to call back the original driver. -**/ -struct _EFI_FORM_CALLBACK_PROTOCOL { - EFI_NV_READ NvRead; ///< The read operation to access the NV data serviced by a hardware-specific driver. - EFI_NV_WRITE NvWrite; ///< The write operation to access the NV data serviced by a hardware-specific driver. - EFI_FORM_CALLBACK Callback; ///< The function that is called from the configuration browser to communicate key value pairs. -}; - -extern EFI_GUID gEfiFormCallbackProtocolGuid; - -#endif diff --git a/IntelFrameworkPkg/Include/Protocol/FrameworkHii.h b/IntelFrameworkPkg/Include/Protocol/FrameworkHii.h deleted file mode 100644 index 9f32805f8..000000000 --- a/IntelFrameworkPkg/Include/Protocol/FrameworkHii.h +++ /dev/null @@ -1,1032 +0,0 @@ -/** @file - This file defines the Human Interface Infrastructure protocol, which is - used by resources that want to publish IFR/Font/String data and have it - collected by the Configuration engine. - -Copyright (c) 2007 - 2010, Intel Corporation. All rights reserved.
-This program and the accompanying materials are licensed and made available under -the terms and conditions of the BSD License that accompanies this distribution. -The full text of the license may be found at -http://opensource.org/licenses/bsd-license.php. - -THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, -WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. - - @par Revision Reference: - This protocol is defined in Framework for EFI Human Interface Infrastructure - Specification Version 0.92. - -**/ - -#ifndef _FRAMEWORK_HII_H_ -#define _FRAMEWORK_HII_H_ - -// -// EFI_GRAPHICS_OUTPUT_BLT_PIXEL is defined in MdePkg/Protocol/GraphicsOutput.h -// -#include -/// -/// In both EDK and EDK II, there is an incompatbile change in the Framework HII protocol. -/// This change should cause a change of GUID in both of code and HII specification. But we -/// updated the GUID in code in EDK and EDK II. The 0.92 specification is not updated. This -/// is a known issue. -/// -/// -/// Note that EFI_HII_PROTOCOL_GUID is different from that defined in the Framework HII -/// 0.92 specification because the specification changed part of HII interfaces but did not update the protocol -/// GUID. -/// -#define EFI_HII_PROTOCOL_GUID \ - { \ - 0xd7ad636e, 0xb997, 0x459b, {0xbf, 0x3f, 0x88, 0x46, 0x89, 0x79, 0x80, 0xe1} \ - } - -#define EFI_HII_COMPATIBILITY_PROTOCOL_GUID \ - { \ - 0x5542cce1, 0xdf5c, 0x4d1b, { 0xab, 0xca, 0x36, 0x4f, 0x77, 0xd3, 0x99, 0xfb } \ - } - -typedef UINT32 RELOFST; - -typedef struct _EFI_HII_PROTOCOL EFI_HII_PROTOCOL; - -/// -/// Note: Name difference between code and the Framework HII 0.92 specificaiton. -/// Add FRAMEWORK_ prefix to avoid a name confict with EFI_HII_HANDLE, defined in the -/// UEFI 2.1d specification. -/// -typedef UINT16 FRAMEWORK_EFI_HII_HANDLE; - -/// -/// HII package type values -/// -#define EFI_HII_FONT 1 -#define EFI_HII_STRING 2 -#define EFI_HII_IFR 3 -#define EFI_HII_KEYBOARD 4 -#define EFI_HII_HANDLES 5 -#define EFI_HII_VARIABLE 6 -#define EFI_HII_DEVICE_PATH 7 - -// -// References to string tokens must use this macro to enable scanning for -// token usages. -// -#define STRING_TOKEN(t) t - -// -// The following types are currently defined: -// EFI_FORM_ID has been defined in UEFI spec. -// -typedef UINT16 EFI_FORM_LABEL; - -#pragma pack(1) - -/// -/// The header found at the start of each package. -/// -typedef struct { - UINT32 Length; ///< The size of the package in bytes. - UINT16 Type; ///< The type of the package. -} EFI_HII_PACK_HEADER; - -/// -/// The IFR package structure. -/// Immediately following the EFI_HII_IFR_PACK structure will be a series of IFR opcodes. -/// -typedef struct { - EFI_HII_PACK_HEADER Header; ///< Header of the IFR package. -} EFI_HII_IFR_PACK; - -/// -/// HII Handle package structure. -/// -typedef struct { - /// - /// Header of the package. - /// - EFI_HII_PACK_HEADER Header; ///< Must be filled in. - /// - /// The image handle of the driver to which the package is referring. - /// - EFI_HANDLE ImageHandle; ///< Must be filled in. - /// - /// The handle of the device that is being described by this package. - /// - EFI_HANDLE DeviceHandle; ///< Optional. - /// - /// The handle of the parent of the device that is being described by this package. - /// - EFI_HANDLE ControllerHandle; ///< Optional. - /// - /// The handle that was registered to receive EFI_FORM_CALLBACK_PROTOCOL calls from other drivers. - /// - EFI_HANDLE CallbackHandle; ///< Optional. - /// - /// Note this field is not defined in the Framework HII 0.92 specificaiton. - /// Unused. Reserved for source code compatibility. - /// - EFI_HANDLE COBExportHandle; ///< Optional. -} EFI_HII_HANDLE_PACK; - -/// -/// The variable package structure. -/// -typedef struct { - /// - /// The header of the package. - /// - EFI_HII_PACK_HEADER Header; - /// - /// The GUID of the EFI variable. - /// - EFI_GUID VariableGuid; - /// - /// The length in bytes of the EFI variable. - /// - UINT32 VariableNameLength; - /// - /// The unique value for this variable. - /// - UINT16 VariableId; - // - // CHAR16 VariableName[]; //Null-terminated - // -} EFI_HII_VARIABLE_PACK; - -/// -/// The device path package structure. -/// -typedef struct { - /// - /// The header of the package. - /// - EFI_HII_PACK_HEADER Header; - // - // EFI_DEVICE_PATH DevicePath[]; - // -} EFI_HII_DEVICE_PATH_PACK; - -typedef struct { - /// - /// A unique value that correlates to the original HII handle. - /// - FRAMEWORK_EFI_HII_HANDLE HiiHandle; - /// - /// If an IFR pack exists in a data table that does not contain strings, - /// then the strings for that IFR pack are located in another data table - /// that contains a string pack and has a matching HiiDataTable.PackageGuid. - /// - EFI_GUID PackageGuid; - /// - /// The size of the EFI_HII_DATA_TABLE in bytes. - /// - UINT32 DataTableSize; - /// - /// The byte offset from the start of this structure to the IFR data. - /// If the offset value is 0, then no IFR data is enclosed. - /// - UINT32 IfrDataOffset; - /// - /// The byte offset from the start of this structure to the string data. - /// If the offset value is 0, then no string data is enclosed. - /// - UINT32 StringDataOffset; - /// - /// The byte offset from the start of this structure to the variable data. - /// If the offset value is 0, then no variable data is enclosed. - /// - UINT32 VariableDataOffset; - /// - /// The byte offset from the start of this structure to the device path data. - /// If the offset value is 0, then no DevicePath data is enclosed. - /// - UINT32 DevicePathOffset; - /// - /// The number of VariableData[] elements in the array. - /// - UINT32 NumberOfVariableData; - /// - /// The number of language string packages. - /// - UINT32 NumberOfLanguages; - // - // EFI_HII_DEVICE_PATH_PACK DevicePath[]; - // EFI_HII_VARIABLE_PACK VariableData[]; - // EFI_HII_IFR_PACK IfrData; - // EFI_HII_STRING_PACK StringData[]; - // -} EFI_HII_DATA_TABLE; - -/// -/// The structure defining the format for exporting data from the HII Database. -/// -typedef struct { - /// - /// Number of EFI_HII_DATA_TABLE entries. - /// - UINT32 NumberOfHiiDataTables; - /// - /// Defines the revision of the EFI_HII_DATA_TABLE structure. - /// - EFI_GUID Revision; - // - // EFI_HII_DATA_TABLE HiiDataTable[]; - // -} EFI_HII_EXPORT_TABLE; - -/// -/// The structure used to pass data to update a form or form package -/// that has previously been registered with the EFI HII database. -/// -typedef struct { - /// - /// If TRUE, indicates that the FormCallbackHandle value will - /// be used to update the contents of the CallBackHandle entry in the form set. - /// - BOOLEAN FormSetUpdate; - /// - /// This parameter is valid only when FormSetUpdate is TRUE. - /// The value in this parameter will be used to update the contents - /// of the CallbackHandle entry in the form set. - /// - EFI_PHYSICAL_ADDRESS FormCallbackHandle; - /// - /// If TRUE, indicates that the FormTitle contents will be - /// used to update the FormValue's title. - /// - BOOLEAN FormUpdate; - /// - /// Specifies which form is to be updated if the FormUpdate value is TRUE. - /// - UINT16 FormValue; - /// - /// This parameter is valid only when the FormUpdate parameter is TRUE. - /// The value in this parameter will be used to update the contents of the form title. - /// - STRING_REF FormTitle; - /// - /// The number of Data entries in this structure. - UINT16 DataCount; - /// - /// An array of 1+ opcodes, specified by DataCount. - /// - UINT8 *Data; -} EFI_HII_UPDATE_DATA; - -// -// String attributes -// -#define LANG_RIGHT_TO_LEFT 0x00000001 - -/// -/// A string package is used to localize strings to a particular -/// language. The package is associated with a particular driver -/// or set of drivers. Tools are used to associate tokens with -/// string references in forms and in programs. These tokens are -/// language agnostic. When paired with a language pack (directly -/// or indirectly), the string token resolves into an actual -/// UNICODE string. NumStringPointers determines how many -/// StringPointers (offset values) there are, as well as the total -/// number of Strings that are defined. -/// -typedef struct { - /// - /// The header of the package. - /// - EFI_HII_PACK_HEADER Header; - /// - /// The string containing one or more ISO 639-2 three-character designator(s) - /// of the language or languages whose translations are contained in this language pack. - /// The first designator indicates the primary language, while the others are secondary languages. - /// - RELOFST LanguageNameString; - /// - /// Contains the offset into this structure of a printable name of the language - /// for use when prompting the user. The language printed is to be the primary language. - /// - RELOFST PrintableLanguageName; - /// - /// The number of Strings and StringPointers contained within the string package. - /// - UINT32 NumStringPointers; - /// - /// Indicates the direction the language is to be printed. - /// - UINT32 Attributes; - // - // RELOFST StringPointers[]; - // EFI_STRING Strings[]; - // -} EFI_HII_STRING_PACK; - - -/// -/// A font list consists of a font header followed by a series -/// of glyph structures. Note that fonts are not language specific. -/// -typedef struct { - /// - /// The header of the package. - /// - EFI_HII_PACK_HEADER Header; - /// - /// The number of NarrowGlyphs that are included in the font package. - /// - UINT16 NumberOfNarrowGlyphs; - /// - /// The number of WideGlyphs that are included in the font package. - /// - UINT16 NumberOfWideGlyphs; - //EFI_NARROW_GLYPH NarrowGlyphs[]; - //EFI_WIDE_GLYPH WideGlyphs[]; -} EFI_HII_FONT_PACK; - -/// -/// The definition of a specific physical key -/// -/// Note: The name difference between code and the Framework HII 0.92 specification. -/// Add FRAMEWORK_ prefix to avoid name confict with EFI_KEY_DESCRIPTOR defined in the -/// UEFI 2.1d specification. -/// -typedef struct { - /// - /// Used to describe a physical key on a keyboard. - /// - EFI_KEY Key; - /// - /// The Unicode value for the Key. - CHAR16 Unicode; - /// - /// The Unicode value for the key with the shift key being held down. - /// - CHAR16 ShiftedUnicode; - /// - /// The Unicode value for the key with the Alt-GR being held down. - /// - CHAR16 AltGrUnicode; - /// - /// The Unicode value for the key with the Alt-GR and shift keys being held down. - /// - CHAR16 ShiftedAltGrUnicode; - /// - /// Modifier keys are defined to allow for special functionality that - /// is not necessarily accomplished by a printable character. - /// - UINT16 Modifier; -} FRAMEWORK_EFI_KEY_DESCRIPTOR; - -/// -/// This structure allows a sparse set of keys to be redefined -/// or a complete redefinition of the keyboard layout. Most -/// keyboards have a lot of commonality in their layouts, therefore -/// only defining those keys that need to change from the default -/// minimizes the passed in information. -/// -/// Additionally, when an update occurs, the active keyboard layout -/// will be switched to the newly updated keyboard layout. This -/// allows for situations that when a keyboard layout driver is -/// loaded as part of system initialization, the system will default -/// the keyboard behavior to the new layout. -/// -typedef struct { - /// - /// The header of the package. - EFI_HII_PACK_HEADER Header; - /// - /// A pointer to a buffer containing an array of EFI_KEY_DESCRIPTOR entries. - /// Each entry will reflect the definition of a specific physical key. - /// - FRAMEWORK_EFI_KEY_DESCRIPTOR *Descriptor; - /// - /// The number of Descriptor entries being described. - /// - UINT8 DescriptorCount; -} EFI_HII_KEYBOARD_PACK; - -/// -/// The packages structure that will be used to pass contents into the HII database. -/// -/// The EFI_HII_PACKAGES can contain various number of packages of different types just -/// after the structure as inline data. -/// -typedef struct { - /// - /// The number of packages being defined in this structure. - /// - UINTN NumberOfPackages; - /// - /// The GUID to be used to identify this set of packages that are being exported - /// to the HII database. - /// - EFI_GUID *GuidId; - // - // EFI_HII_HANDLE_PACK *HandlePack; // Only one pack. - // EFI_HII_IFR_PACK *IfrPack; // Only one pack. - // EFI_HII_FONT_PACK *FontPack[]; // Multiple packs ok - // EFI_HII_STRING_PACK *StringPack[]; // Multiple packs ok - // EFI_HII_KEYBOARD_PACK *KeyboardPack[]; // Multiple packs ok - // -} EFI_HII_PACKAGES; - -/// -/// The packed link list that contains all the discernable defaults of variables -/// for the opcodes that are defined in this Handle's domain of data. -/// -typedef struct _EFI_HII_VARIABLE_PACK_LIST { - /// - /// A pointer points to the next data structure of type - /// EFI_HII_VARIABLE_PACK_LIST in the packed link list. - /// - struct _EFI_HII_VARIABLE_PACK_LIST *NextVariablePack; - /// - /// A pointer points to the content of the variable entry defined by GUID/name/data. - /// - EFI_HII_VARIABLE_PACK *VariablePack; - //EFI_HII_VARIABLE_PACK Content -} EFI_HII_VARIABLE_PACK_LIST; - - -#pragma pack() - -/** - Registers the various packs that are passed in via the Packages parameter. - - @param This A pointer to the EFI_HII_PROTOCOL instance. - @param Packages A pointer to an EFI_HII_PACKAGES package instance. - @param Handle A pointer to the FRAMEWORK_EFI_HII_HANDLE instance. - - @retval EFI_SUCCESS Data was extracted from Packages, the database - was updated with the data, and Handle returned successfully. - @retval EFI_INVALID_PARAMETER The content of Packages was invalid. - -**/ -typedef -EFI_STATUS -(EFIAPI *EFI_HII_NEW_PACK)( - IN EFI_HII_PROTOCOL *This, - IN EFI_HII_PACKAGES *Packages, - OUT FRAMEWORK_EFI_HII_HANDLE *Handle - ); - -/** - Removes a package from the HII database. - - @param This A pointer to the EFI_HII_PROTOCOL instance. - @param Handle The handle that was registered to the data that - is requested for removal. - - @retval EFI_SUCCESS The data associated with the Handle was removed - from the HII database. - @retval EFI_INVALID_PARAMETER The Handle was not valid. - -**/ -typedef -EFI_STATUS -(EFIAPI *EFI_HII_REMOVE_PACK)( - IN EFI_HII_PROTOCOL *This, - IN FRAMEWORK_EFI_HII_HANDLE Handle - ); - -/** - Determines the handles that are currently active in the database. - - @param This A pointer to the EFI_HII_PROTOCOL instance. - @param HandleBufferLength On input, a pointer to the length of the handle - buffer. On output, the length of the handle buffer that is required - for the handles found. - @param Handle An array of FRAMEWORK_EFI_HII_HANDLE instances returned. - - @retval EFI_SUCCESS Handle was updated successfully. - @retval EFI_BUFFER_TOO_SMALL The HandleBufferLength parameter indicates - that Handle is too small to support the number of handles. - -**/ -typedef -EFI_STATUS -(EFIAPI *EFI_HII_FIND_HANDLES)( - IN EFI_HII_PROTOCOL *This, - IN OUT UINT16 *HandleBufferLength, - OUT FRAMEWORK_EFI_HII_HANDLE *Handle - ); - -/** - Exports the contents of the database into a buffer. - - @param This A pointer to the EFI_HII_PROTOCOL instance. - @param Handle A FRAMEWORK_EFI_HII_HANDLE that corresponds to the desired - handle to export. If the value is 0, the entire database will be exported. - The data is exported in a format described by the - structure definition of EFI_HII_EXPORT_TABLE. - @param BufferSize - On input, a pointer to the length of the buffer. On output, the length - of the buffer that is required for the export data. - @param Buffer A pointer to a buffer that will contain the results of the export function. - - @retval EFI_SUCCESS The buffer was successfully filled with BufferSize amount of data. - @retval EFI_BUFFER_TOO_SMALL The value in BufferSize was too small to contain the export data. - -**/ -typedef -EFI_STATUS -(EFIAPI *EFI_HII_EXPORT)( - IN EFI_HII_PROTOCOL *This, - IN FRAMEWORK_EFI_HII_HANDLE Handle, - IN OUT UINTN *BufferSize, - OUT VOID *Buffer - ); - -/** - Remove any new strings that were added after the initial string export - for this handle. - - @param This A pointer to the EFI_HII_PROTOCOL instance. - @param Handle The handle on which the string resides. - - @retval EFI_SUCCESS Successfully removed strings from the handle. - @retval EFI_INVALID_PARAMETER The Handle was unknown. - -**/ -typedef -EFI_STATUS -(EFIAPI *EFI_HII_RESET_STRINGS)( - IN EFI_HII_PROTOCOL *This, - IN FRAMEWORK_EFI_HII_HANDLE Handle - ); - -/** - Tests if all of the characters in a string have corresponding font characters. - - @param This A pointer to the EFI_HII_PROTOCOL instance. - @param StringToTest A pointer to a Unicode string. - @param FirstMissing A pointer to an index into the string. On input, - the index of the first character in the StringToTest - to examine. On exit, the index of the first character - encountered for which a glyph is unavailable. - If all glyphs in the string are available, the - index is the index of the terminator of the string. - @param GlyphBufferSize A pointer to a value. On output, if the function - returns EFI_SUCCESS, it contains the amount of - memory that is required to store the string's - glyph equivalent. - - @retval EFI_SUCCESS All glyphs are available. Note that an empty string - always returns this value. - @retval EFI_NOT_FOUND A glyph was not found for a character. - -**/ -typedef -EFI_STATUS -(EFIAPI *EFI_HII_TEST_STRING)( - IN EFI_HII_PROTOCOL *This, - IN CHAR16 *StringToTest, - IN OUT UINT32 *FirstMissing, - OUT UINT32 *GlyphBufferSize - ); - -/** - Translates a Unicode character into the corresponding font glyph. - - Note that this function prototype name is different from that in the Framework HII 0.92 specification - to avoid name confict with EFI_HII_GET_GLYPH defined in the UEFI 2.1d specification. - - @param This A pointer to the EFI_HII_PROTOCOL instance. - @param Source A pointer to a Unicode string. - @param Index On input, the offset into the string from which to - fetch the character. On successful completion, the - index is updated to the first character past the - character(s) making up the just extracted glyph. - @param GlyphBuffer Pointer to an array where the glyphs corresponding - to the characters in the source may be stored. - GlyphBuffer is assumed to be wide enough to accept - a wide glyph character. - @param BitWidth If EFI_SUCCESS was returned, the UINT16 pointed to by - this value is filled with the length of the glyph in - pixels. It is unchanged if the call was unsuccessful. - @param InternalStatus The cell pointed to by this parameter must be - initialized to zero prior to invoking the call the - first time for any string. - - @retval EFI_SUCCESS Found the corresponding font glyph for a Unicode - character. - @retval EFI_NOT_FOUND A glyph for a character was not found. - -**/ -typedef -EFI_STATUS -(EFIAPI *FRAMEWORK_EFI_HII_GET_GLYPH)( - IN EFI_HII_PROTOCOL *This, - IN CHAR16 *Source, - IN OUT UINT16 *Index, - OUT UINT8 **GlyphBuffer, - OUT UINT16 *BitWidth, - IN OUT UINT32 *InternalStatus - ); - -/** - Translates a glyph into the format required for input to the Universal - Graphics Adapter (UGA) Block Transfer (BLT) routines. - - @param This A pointer to the EFI_HII_PROTOCOL instance. - @param GlyphBuffer A pointer to the buffer that contains glyph data. - @param Foreground The foreground setting requested to be used for the - generated BltBuffer data. - @param Background The background setting requested to be used for the - generated BltBuffer data. - @param Count The entry in the BltBuffer upon which to act. - @param Width The width in bits of the glyph being converted. - @param Height The height in bits of the glyph being converted - @param BltBuffer A pointer to the buffer that contains the data that is - ready to be used by the UGA BLT routines. - - @retval EFI_SUCCESS Successfully translated a glyph into the required - format for input to UGA BLT routines. - @retval EFI_NOT_FOUND A glyph for a character was not found. - @note Inconsistent with specification here: - In Framework Spec, HII specification 0.92. The type of 3rd, 4th and 8th parameter is EFI_UGA_PIXEL. - Here the definition uses the EFI_GRAPHICS_OUTPUT_BLT_PIXEL, which is defined in UEFI 2.1 specification. -**/ -typedef -EFI_STATUS -(EFIAPI *EFI_HII_GLYPH_TO_BLT)( - IN EFI_HII_PROTOCOL *This, - IN UINT8 *GlyphBuffer, - IN EFI_GRAPHICS_OUTPUT_BLT_PIXEL Foreground, - IN EFI_GRAPHICS_OUTPUT_BLT_PIXEL Background, - IN UINTN Count, - IN UINTN Width, - IN UINTN Height, - IN OUT EFI_GRAPHICS_OUTPUT_BLT_PIXEL *BltBuffer - ); - -/** - Allows a new string to be added to an already existing string package. - - Note that this function prototype name is different from that in the Framework HII 0.92 specification - to avoid name confict with EFI_HII_NEW_STRING defined in the UEFI 2.1d specification. - - @param This A pointer to the EFI_HII_PROTOCOL instance. - @param Pointer to a NULL-terminated string containing a single - ISO 639-2 language identifier, indicating the language - in which the string is translated. - @param Handle The handle of the language pack to which the string - is to be added. - @param Reference The identifier of the string to be added. If the - reference value is zero, then the string will be - assigned a new identifier on that handle for - the language specified. Otherwise, the string will - be updated with the NewString Value. - @param NewString The string to be added. - - @retval EFI_SUCCESS The string was effectively registered. - @retval EFI_INVALID_PARAMETER The Handle was unknown. - -**/ -typedef -EFI_STATUS -(EFIAPI *FRAMEWORK_EFI_HII_NEW_STRING)( - IN EFI_HII_PROTOCOL *This, - IN CHAR16 *Language, - IN FRAMEWORK_EFI_HII_HANDLE Handle, - IN OUT STRING_REF *Reference, - IN CHAR16 *NewString - ); - -/** - Allows a program to determine the primary languages that are supported - on a given handle. - - @param This A pointer to the EFI_HII_PROTOCOL instance. - @param Handle The handle on which the strings reside. - @param LanguageString A string allocated by GetPrimaryLanguages() that - contains a list of all primary languages registered - on the handle. - - @retval EFI_SUCCESS LanguageString was correctly returned. - @retval EFI_INVALID_PARAMETER The Handle was unknown. - -**/ -typedef -EFI_STATUS -(EFIAPI *EFI_HII_GET_PRI_LANGUAGES)( - IN EFI_HII_PROTOCOL *This, - IN FRAMEWORK_EFI_HII_HANDLE Handle, - OUT EFI_STRING *LanguageString - ); - -/** - Allows a program to determine which secondary languages are supported - on a given handle for a given primary language. - - @param This A pointer to the EFI_HII_PROTOCOL instance. - @param Handle The handle on which the strings reside. - @param PrimaryLanguage Pointer to a NULL-terminated string containing a - single ISO 639-2 language identifier, indicating - the primary language. - @param LanguageString A string allocated by GetSecondaryLanguages() - containing a list of all secondary languages - registered on the handle. - - @retval EFI_SUCCESS LanguageString was correctly returned. - @retval EFI_INVALID_PARAMETER The Handle was unknown. - -**/ -typedef -EFI_STATUS -(EFIAPI *EFI_HII_GET_SEC_LANGUAGES)( - IN EFI_HII_PROTOCOL *This, - IN FRAMEWORK_EFI_HII_HANDLE Handle, - IN CHAR16 *PrimaryLanguage, - OUT EFI_STRING *LanguageString - ); - -/** - Extracts a string from a package already registered with the EFI HII database. - - Note that this function prototype name is different from that in the Framework HII 0.92 specification - to avoid name confict with EFI_HII_GET_STRING defined in the UEFI 2.1d specification. - - @param This A pointer to the EFI_HII_PROTOCOL instance. - @param Handle The handle on which the string resides. - @param Token The string token assigned to the string. - @param Raw If TRUE, the string is returned unedited in the - internal storage format. If false, the string - returned is edited by replacing with - and by removing special characters such as the - prefix. - @param LanguageString Pointer to a NULL-terminated string containing a - single ISO 639-2 language identifier, indicating - the language to print. If the LanguageString is - empty (starts with a NULL), the default system - language will be used to determine the language. - @param BufferLength Length of the StringBuffer. - @param StringBuffer The buffer designed to receive the characters in the string. - - @retval EFI_SUCCESS StringBuffer is filled with a NULL-terminated string. - @retval EFI_INVALID_PARAMETER The handle or string token is unknown. - @retval EFI_BUFFER_TOO_SMALL The buffer provided was not large enough to - allow the entire string to be stored. - -**/ -typedef -EFI_STATUS -(EFIAPI *FRAMEWORK_EFI_HII_GET_STRING)( - IN EFI_HII_PROTOCOL *This, - IN FRAMEWORK_EFI_HII_HANDLE Handle, - IN STRING_REF Token, - IN BOOLEAN Raw, - IN CHAR16 *LanguageString, - IN OUT UINTN *BufferLength, - OUT EFI_STRING StringBuffer - ); - -/** - Allows a program to extract a part of a string of not more than a given width. - - @param This A pointer to the EFI_HII_PROTOCOL instance. - @param Handle The handle on which the string resides. - @param Token The string token assigned to the string. - @param Index On input, the offset into the string where the - line is to start. On output, the index is updated - to point beyond the last character returned in - the call. - @param LineWidth The maximum width of the line in units of narrow glyphs. - @param LanguageString The pointer to a NULL-terminated string containing a - single ISO 639-2 language identifier, indicating - the language to print. - @param BufferLength The pointer to the length of the StringBuffer. - @param StringBuffer The buffer designed to receive the characters in - the string. - - @retval EFI_SUCCESS StringBuffer filled with characters that will fit - on the line. - @retval EFI_NOT_FOUND The font glyph for at least one of the characters in - the string is not in the font database. - @retval EFI_BUFFER_TOO_SMALL The buffer provided was not large enough - to allow the entire string to be stored. - -**/ -typedef -EFI_STATUS -(EFIAPI *EFI_HII_GET_LINE)( - IN EFI_HII_PROTOCOL *This, - IN FRAMEWORK_EFI_HII_HANDLE Handle, - IN STRING_REF Token, - IN OUT UINT16 *Index, - IN UINT16 LineWidth, - IN CHAR16 *LanguageString, - IN OUT UINT16 *BufferLength, - OUT EFI_STRING StringBuffer - ); - -/** - Allows a program to extract a form or form package that has previously - been registered with the HII database. - - @param This A pointer to the EFI_HII_PROTOCOL instance. - @param Handle Handle on which the form resides. - @param FormId The ID of the form to return. If the ID is zero, - the entire form package is returned. - @param BufferLength On input, the length of the Buffer. On output, - the length of the returned buffer, - @param Buffer The buffer designed to receive the form(s). - - @retval EFI_SUCCESS Buffer filled with the requested forms. BufferLength - was updated. - @retval EFI_INVALID_PARAMETER The handle is unknown. - @retval EFI_NOT_FOUND A form on the requested handle cannot be found with - the requested FormId. - @retval EFI_BUFFER_TOO_SMALL The buffer provided was not large enough - to allow the form to be stored. - -**/ -typedef -EFI_STATUS -(EFIAPI *EFI_HII_GET_FORMS)( - IN EFI_HII_PROTOCOL *This, - IN FRAMEWORK_EFI_HII_HANDLE Handle, - IN EFI_FORM_ID FormId, - IN OUT UINTN *BufferLength, - OUT UINT8 *Buffer - ); - -/** - Extracts the defaults that are associated with a given handle in the HII database. - - @param This A pointer to the EFI_HII_PROTOCOL instance. - @param Handle The HII handle from which will have default data retrieved. - @param DefaultMask The mask used to specify some type of default - override when extracting the default image data. - @param VariablePackList An indirect pointer to the first entry of a link - list with type EFI_HII_VARIABLE_PACK_LIST. - - @retval EFI_SUCCESS The VariablePackList was populated with the appropriate - default setting data. - @retval EFI_NOT_FOUND The IFR does not have any explicit or default map(s). - @retval EFI_INVALID_PARAMETER The HII database entry associated with Handle - contains invalid data. - -**/ -typedef -EFI_STATUS -(EFIAPI *EFI_HII_GET_DEFAULT_IMAGE)( - IN EFI_HII_PROTOCOL *This, - IN FRAMEWORK_EFI_HII_HANDLE Handle, - IN UINTN DefaultMask, - OUT EFI_HII_VARIABLE_PACK_LIST **VariablePackList - ); - -/** - Allows the caller to update a form or form package that has previously been - registered with the EFI HII database. - - @param This A pointer to the EFI_HII_PROTOCOL instance. - @param Handle Handle of the package where the form to be updated resides. - @param Label The label inside the form package where the update is to take place. - @param AddData If TRUE, adding data at a given Label; otherwise, - if FALSE, removing data at a given Label. - @param Data The buffer containing the new tags to insert after the Label - - @retval EFI_SUCCESS The form was updated with the new tags. - @retval EFI_INVALID_PARAMETER The buffer for the buffer length does not - contain an integral number of tags. - @retval EFI_NOT_FOUND The Handle, Label, or FormId was not found. - -**/ -typedef -EFI_STATUS -(EFIAPI *EFI_HII_UPDATE_FORM)( - IN EFI_HII_PROTOCOL *This, - IN FRAMEWORK_EFI_HII_HANDLE Handle, - IN EFI_FORM_LABEL Label, - IN BOOLEAN AddData, - IN EFI_HII_UPDATE_DATA *Data - ); - -/** - Retrieves the current keyboard layout. - - Note that this function prototype name is different from that in the Framework HII 0.92 specification - to avoid name confict with EFI_HII_GET_KEYBOARD_LAYOUT defined in the UEFI 2.1d specification. - - @param This A pointer to the EFI_HII_PROTOCOL instance. - @param DescriptorCount A pointer to the number of Descriptor entries being - described in the keyboard layout being retrieved. - @param Descriptor A pointer to a buffer containing an array of - FRAMEWORK_EFI_KEY_DESCRIPTOR entries. Each entry - will reflect the definition of a specific physical key. - - @retval EFI_SUCCESS The keyboard layout was retrieved successfully. - -**/ -typedef -EFI_STATUS -(EFIAPI *FRAMEWORK_EFI_HII_GET_KEYBOARD_LAYOUT)( - IN EFI_HII_PROTOCOL *This, - OUT UINT16 *DescriptorCount, - OUT FRAMEWORK_EFI_KEY_DESCRIPTOR *Descriptor - ); - -/// -/// The HII Protocol manages the HII database, which is a repository for data -/// having to do with fonts, strings, forms, keyboards, and other future human -/// interface items. -/// -struct _EFI_HII_PROTOCOL { - /// - /// Extracts the various packs from a package list. - /// - EFI_HII_NEW_PACK NewPack; - - /// - /// Removes a package from the HII database. - /// - EFI_HII_REMOVE_PACK RemovePack; - - /// - /// Determines the handles that are currently active in the database. - /// - EFI_HII_FIND_HANDLES FindHandles; - - /// - /// Exports the entire contents of the database to a buffer. - /// - EFI_HII_EXPORT ExportDatabase; - - /// - /// Tests if all of the characters in a string have corresponding font characters. - /// - EFI_HII_TEST_STRING TestString; - - /// - /// Translates a Unicode character into the corresponding font glyph. - /// - FRAMEWORK_EFI_HII_GET_GLYPH GetGlyph; - - /// - /// Converts a glyph value into a format that is ready for a UGA BLT command. - /// - EFI_HII_GLYPH_TO_BLT GlyphToBlt; - - /// - /// Allows a new string to be added to an already existing string package. - /// - FRAMEWORK_EFI_HII_NEW_STRING NewString; - - /// - /// Allows a program to determine the primary languages that are supported - /// on a given handle. - /// - EFI_HII_GET_PRI_LANGUAGES GetPrimaryLanguages; - - /// - /// Allows a program to determine which secondary languages are supported - /// on a given handle for a given primary language. - /// - EFI_HII_GET_SEC_LANGUAGES GetSecondaryLanguages; - - /// - /// Extracts a string from a package that is already registered with the - /// EFI HII database. - /// - FRAMEWORK_EFI_HII_GET_STRING GetString; - - /// - /// Removes any new strings that were added after the initial string export - /// for this handle. - /// - /// Note this function is not defined in the Framework HII 0.92 specification. - /// - EFI_HII_RESET_STRINGS ResetStrings; - - /// - /// Allows a program to extract a part of a string of not more than a given width. - /// - EFI_HII_GET_LINE GetLine; - - /// - /// Allows a program to extract a form or form package that has been previously registered. - /// - EFI_HII_GET_FORMS GetForms; - - /// - /// Allows a program to extract the nonvolatile image that represents the default storage image. - /// - EFI_HII_GET_DEFAULT_IMAGE GetDefaultImage; - - /// - /// Allows a program to update a previously registered form. - /// - EFI_HII_UPDATE_FORM UpdateForm; - - /// - /// Allows a program to extract the current keyboard layout. - /// - FRAMEWORK_EFI_HII_GET_KEYBOARD_LAYOUT GetKeyboardLayout; -}; - -extern EFI_GUID gEfiHiiProtocolGuid; -extern EFI_GUID gEfiHiiCompatibilityProtocolGuid; - -#endif - diff --git a/IntelFrameworkPkg/Include/Protocol/FrameworkMpService.h b/IntelFrameworkPkg/Include/Protocol/FrameworkMpService.h deleted file mode 100644 index b1c8f5515..000000000 --- a/IntelFrameworkPkg/Include/Protocol/FrameworkMpService.h +++ /dev/null @@ -1,662 +0,0 @@ -/** @file - When installed, the Framework MP Services Protocol produces a collection of - services that are needed for MP management, such as initialization and management - of application processors. - - @par Note: - This protocol has been deprecated and has been replaced by the MP Services - Protocol from the UEFI Platform Initialization Specification 1.2, Volume 2: - Driver Execution Environment Core Interface. - - The MP Services Protocol provides a generalized way of performing following tasks: - - Retrieving information of multi-processor environment and MP-related status of - specific processors. - - Dispatching user-provided function to APs. - - Maintain MP-related processor status. - - The MP Services Protocol must be produced on any system with more than one logical - processor. - - The Protocol is available only during boot time. - - MP Services Protocol is hardware-independent. Most of the logic of this protocol - is architecturally neutral. It abstracts the multi-processor environment and - status of processors, and provides interfaces to retrieve information, maintain, - and dispatch. - - MP Services Protocol may be consumed by ACPI module. The ACPI module may use this - protocol to retrieve data that are needed for an MP platform and report them to OS. - MP Services Protocol may also be used to program and configure processors, such - as MTRR synchronization for memory space attributes setting in DXE Services. - MP Services Protocol may be used by non-CPU DXE drivers to speed up platform boot - by taking advantage of the processing capabilities of the APs, for example, using - APs to help test system memory in parallel with other device initialization. - Diagnostics applications may also use this protocol for multi-processor. - -Copyright (c) 1999 - 2010, Intel Corporation. All rights reserved.
-This program and the accompanying materials are licensed and made available under -the terms and conditions of the BSD License that accompanies this distribution. -The full text of the license may be found at -http://opensource.org/licenses/bsd-license.php. - -THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, -WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. - -**/ - -#ifndef _FRAMEWORK_MP_SERVICE_PROTOCOL_H_ -#define _FRAMEWORK_MP_SERVICE_PROTOCOL_H_ - -#include - -/// -/// Global ID for the FRAMEWORK_EFI_MP_SERVICES_PROTOCOL. -/// -#define FRAMEWORK_EFI_MP_SERVICES_PROTOCOL_GUID \ - { \ - 0xf33261e7, 0x23cb, 0x11d5, {0xbd, 0x5c, 0x0, 0x80, 0xc7, 0x3c, 0x88, 0x81} \ - } - -/// -/// Forward declaration for the EFI_MP_SERVICES_PROTOCOL. -/// -typedef struct _FRAMEWORK_EFI_MP_SERVICES_PROTOCOL FRAMEWORK_EFI_MP_SERVICES_PROTOCOL; - -/// -/// Fixed delivery mode that may be used as the DeliveryMode parameter in SendIpi(). -/// -#define DELIVERY_MODE_FIXED 0x0 - -/// -/// Lowest priority delivery mode that may be used as the DeliveryMode parameter in SendIpi(). -/// -#define DELIVERY_MODE_LOWEST_PRIORITY 0x1 - -/// -/// SMI delivery mode that may be used as the DeliveryMode parameter in SendIpi(). -/// -#define DELIVERY_MODE_SMI 0x2 - -/// -/// Remote read delivery mode that may be used as the DeliveryMode parameter in SendIpi(). -/// -#define DELIVERY_MODE_REMOTE_READ 0x3 - -/// -/// NMI delivery mode that may be used as the DeliveryMode parameter in SendIpi(). -/// -#define DELIVERY_MODE_NMI 0x4 - -/// -/// INIT delivery mode that may be used as the DeliveryMode parameter in SendIpi(). -/// -#define DELIVERY_MODE_INIT 0x5 - -/// -/// Startup IPI delivery mode that may be used as the DeliveryMode parameter in SendIpi(). -/// -#define DELIVERY_MODE_SIPI 0x6 - -/// -/// The DeliveryMode parameter in SendIpi() must be less than this maximum value. -/// -#define DELIVERY_MODE_MAX 0x7 - -/// -/// IPF specific value for the state field of the Self Test State Parameter. -/// -#define EFI_MP_HEALTH_FLAGS_STATUS_HEALTHY 0x0 - -/// -/// IPF specific value for the state field of the Self Test State Parameter. -/// -#define EFI_MP_HEALTH_FLAGS_STATUS_PERFORMANCE_RESTRICTED 0x1 - -/// -/// IPF specific value for the state field of the Self Test State Parameter. -/// -#define EFI_MP_HEALTH_FLAGS_STATUS_FUNCTIONALLY_RESTRICTED 0x2 - -typedef union { - /// - /// Bitfield structure for the IPF Self Test State Parameter. - /// - struct { - UINT32 Status:2; - UINT32 Tested:1; - UINT32 Reserved1:13; - UINT32 VirtualMemoryUnavailable:1; - UINT32 Ia32ExecutionUnavailable:1; - UINT32 FloatingPointUnavailable:1; - UINT32 MiscFeaturesUnavailable:1; - UINT32 Reserved2:12; - } Bits; - /// - /// IA32 and X64 BIST data of the processor. - /// - UINT32 Uint32; -} EFI_MP_HEALTH_FLAGS; - -typedef struct { - /// - /// @par IA32, X64: - /// BIST (built-in self-test) data of the processor. - /// - /// @par IPF: - /// Lower 32 bits of the self-test state parameter. For definition of self-test - /// state parameter, please refer to Intel(R) Itanium(R) Architecture Software - /// Developer's Manual, Volume 2: System Architecture. - /// - EFI_MP_HEALTH_FLAGS Flags; - /// - /// @par IA32, X64: - /// Not used. - /// - /// @par IPF: - /// Higher 32 bits of self test state parameter. - /// - UINT32 TestStatus; -} EFI_MP_HEALTH; - -typedef enum { - EfiCpuAP = 0, ///< The CPU is an AP (Application Processor). - EfiCpuBSP, ///< The CPU is the BSP (Boot-Strap Processor). - EfiCpuDesignationMaximum -} EFI_CPU_DESIGNATION; - -typedef struct { - /// - /// @par IA32, X64: - /// The lower 8 bits contains local APIC ID, and higher bits are reserved. - /// - /// @par IPF: - /// The lower 16 bits contains id/eid as physical address of local SAPIC - /// unit, and higher bits are reserved. - /// - UINT32 ApicID; - /// - /// This field indicates whether the processor is enabled. If the value is - /// TRUE, then the processor is enabled. Otherwise, it is disabled. - /// - BOOLEAN Enabled; - /// - /// This field indicates whether the processor is playing the role of BSP. - /// If the value is EfiCpuAP, then the processor is AP. If the value is - /// EfiCpuBSP, then the processor is BSP. - /// - EFI_CPU_DESIGNATION Designation; - /// - /// @par IA32, X64: - /// The Flags field of this EFI_MP_HEALTH data structure holds BIST (built-in - /// self test) data of the processor. The TestStatus field is not used, and - /// the value is always zero. - /// - /// @par IPF: - /// Bit format of this field is the same as the definition of self-test state - /// parameter, in Intel(R) Itanium(R) Architecture Software Developer's Manual, - /// Volume 2: System Architecture. - /// - EFI_MP_HEALTH Health; - /// - /// Zero-based physical package number that identifies the cartridge of the - /// processor. - /// - UINTN PackageNumber; - /// - /// Zero-based physical core number within package of the processor. - /// - UINTN NumberOfCores; - /// - /// Zero-based logical thread number within core of the processor. - /// - UINTN NumberOfThreads; - /// - /// This field is reserved. - /// - UINT64 ProcessorPALCompatibilityFlags; - /// - /// @par IA32, X64: - /// This field is not used, and the value is always zero. - /// - /// @par IPF: - /// This field is a mask number that is handed off by the PAL about which - /// processor tests are performed and which are masked. - /// - UINT64 ProcessorTestMask; -} EFI_MP_PROC_CONTEXT; - -/** - This service retrieves general information of multiprocessors in the system. - - This function is used to get the following information: - - Number of logical processors in system - - Maximal number of logical processors supported by system - - Number of enabled logical processors. - - Rendezvous interrupt number (IPF-specific) - - Length of the rendezvous procedure. - - @param[in] This The pointer to the FRAMEWORK_EFI_MP_SERVICES_PROTOCOL - instance. - @param[out] NumberOfCPUs The pointer to the total number of logical processors - in the system, including the BSP and disabled - APs. If NULL, this parameter is ignored. - @param[out] MaximumNumberOfCPUs Pointer to the maximum number of processors - supported by the system. If NULL, this - parameter is ignored. - @param[out] NumberOfEnabledCPUs The pointer to the number of enabled logical - processors that exist in system, including - the BSP. If NULL, this parameter is ignored. - @param[out] RendezvousIntNumber This parameter is only meaningful for IPF. - - IA32, X64: The returned value is zero. - If NULL, this parameter is ignored. - - IPF: Pointer to the rendezvous interrupt - number that is used for AP wake-up. - @param[out] RendezvousProcLength The pointer to the length of rendezvous procedure. - - IA32, X64: The returned value is 0x1000. - If NULL, this parameter is ignored. - - IPF: The returned value is zero. - - @retval EFI_SUCCESS Multiprocessor general information was successfully retrieved. - -**/ -typedef -EFI_STATUS -(EFIAPI *EFI_MP_SERVICES_GET_GENERAL_MP_INFO)( - IN FRAMEWORK_EFI_MP_SERVICES_PROTOCOL *This, - OUT UINTN *NumberOfCPUs OPTIONAL, - OUT UINTN *MaximumNumberOfCPUs OPTIONAL, - OUT UINTN *NumberOfEnabledCPUs OPTIONAL, - OUT UINTN *RendezvousIntNumber OPTIONAL, - OUT UINTN *RendezvousProcLength OPTIONAL - ); - -/** - This service gets detailed MP-related information of the requested processor. - - This service gets detailed MP-related information of the requested processor - at the instant this call is made. Note the following: - - The processor information may change during the course of a boot session. - - The data of information presented here is entirely MP related. - Information regarding the number of caches and their sizes, frequency of operation, - slot numbers is all considered platform-related information and will not be - presented here. - - @param[in] This The pointer to the FRAMEWORK_EFI_MP_SERVICES_PROTOCOL - instance. - @param[in] ProcessorNumber The handle number of the processor. The range - is from 0 to the total number of logical - processors minus 1. The total number of - logical processors can be retrieved by - GetGeneralMPInfo(). - @param[in,out] BufferLength On input, pointer to the size in bytes of - ProcessorContextBuffer. On output, if the - size of ProcessorContextBuffer is not large - enough, the value pointed by this parameter - is updated to size in bytes that is needed. - If the size of ProcessorContextBuffer is - sufficient, the value is not changed from - input. - @param[out] ProcessorContextBuffer The pointer to the buffer where the data of - requested processor will be deposited. - The buffer is allocated by caller. - - @retval EFI_SUCCESS Processor information was successfully returned. - @retval EFI_BUFFER_TOO_SMALL The size of ProcessorContextBuffer is too small. - The value pointed by BufferLength has been updated - to size in bytes that is needed. - @retval EFI_INVALID_PARAMETER IA32, X64:BufferLength is NULL. - @retval EFI_INVALID_PARAMETER IA32, X64:ProcessorContextBuffer is NULL. - @retval EFI_INVALID_PARAMETER IA32, X64:Processor with the handle specified by - ProcessorNumber does not exist. - @retval EFI_NOT_FOUND IPF: Processor with the handle specified by - ProcessorNumber does not exist. - -**/ -typedef -EFI_STATUS -(EFIAPI *EFI_MP_SERVICES_GET_PROCESSOR_CONTEXT)( - IN FRAMEWORK_EFI_MP_SERVICES_PROTOCOL *This, - IN UINTN ProcessorNumber, - IN OUT UINTN *BufferLength, - OUT EFI_MP_PROC_CONTEXT *ProcessorContextBuffer - ); - -/** - This function is used to dispatch all enabled APs to the function specified - by Procedure. APs can run either simultaneously or one by one. The caller can - also configure the BSP to either wait for APs or just proceed with the next - task. It is the responsibility of the caller of the StartupAllAPs() to make - sure that the nature of the code that will be run on the BSP and the dispatched - APs is well controlled. The MP Services Protocol does not guarantee that the - function that either processor is executing is MP-safe. Hence, the tasks that - can be run in parallel are limited to certain independent tasks and well- - controlled exclusive code. EFI services and protocols may not be called by APs - unless otherwise specified. - - @param[in] This The pointer to the FRAMEWORK_EFI_MP_SERVICES_PROTOCOL - instance. - @param[in] Procedure A pointer to the function to be run on enabled - APs of the system. - @param[in] SingleThread Flag that requests APs to execute one at a - time or simultaneously. - - IA32, X64: - If TRUE, then all the enabled APs execute - the function specified by Procedure one by - one, in ascending order of processor handle - number. If FALSE, then all the enabled APs - execute the function specified by Procedure - simultaneously. - - IPF: - If TRUE, then all the enabled APs execute - the function specified by Procedure simultaneously. - If FALSE, then all the enabled APs execute the - function specified by Procedure one by one, in - ascending order of processor handle number. The - time interval of AP dispatching is determined - by WaitEvent and TimeoutInMicrosecs. - @param[in] WaitEvent Event to signal when APs have finished. - - IA32, X64: - If not NULL, when all APs finish after timeout - expires, the event will be signaled. If NULL, - the parameter is ignored. - - IPF: - If SingleThread is TRUE, this parameter - is ignored. If SingleThread is FALSE (i.e. - dispatch APs one by one), this parameter - determines whether the BSP waits after each - AP is dispatched. If it is NULL, the BSP - does not wait after each AP is dispatched. - If it is not NULL, the BSP waits after each - AP is dispatched, and the time interval is - determined by TimeoutInMicrosecs. Type - EFI_EVENT is defined in CreateEvent() in - the Unified Extensible Firmware Interface - Specification. - @param[in] TimeoutInMicrosecsond Time to wait for APs to finish. - - IA32, X64: - If the value is zero, it means no timeout - limit. The BSP waits until all APs finish. - If the value is not zero, the BSP waits - until all APs finish or timeout expires. - If timeout expires, EFI_TIMEOUT is returned, - and the BSP will then check APs?status - periodically, with time interval of 16 - microseconds. - - IPF: - If SingleThread is TRUE and FailedCPUList - is NULL, this parameter is ignored. If - SingleThread is TRUE and FailedCPUList is - not NULL, this parameter determines whether - the BSP waits until all APs finish their - procedure. If it is zero, the BSP does not - wait for APs. If it is non-zero, it waits - until all APs finish. If SingleThread is - FALSE and WaitEvent is NULL, this parameter - is ignored. If SingleThread is FALSE and - WaitEvent is not NULL, the BSP waits after - each AP is dispatched and this value - determines time interval. If the value is - zero, the length of time interval is 10ms. - If the value is non-zero, the BSP waits - until dispatched AP finishes and then - dispatch the next. - @param[in] ProcedureArgument The pointer to the optional parameter of the - function specified by Procedure. - @param[out] FailedCPUList List of APs that did not finish. - - IA32, X64: - If not NULL, it records handle numbers of - all logical processors that fail to accept - caller-provided function (busy or disabled). - If NULL, this parameter is ignored. - - IPF: - If not NULL, it records status of all - logical processors, with processor handle - number as index. If a logical processor - fails to accept caller-provided function - because it is busy, the status is EFI_NOT_READY. - If it fails to accept function due to other - reasons, the status is EFI_NOT_AVAILABLE_YET. - If timeout expires, the status is EFI_TIMEOUT. - Otherwise, the value is EFI_SUCCESS. If NULL, - this parameter is ignored. - - @retval EFI_SUCCESS IA32, X64: All dispatched APs have finished - before the timeout expires. - @retval EFI_SUCCESS IA32, X64: Only 1 logical processor exists - in system. - @retval EFI_INVALID_PARAMETER IA32, X64: Procedure is NULL. - @retval EFI_TIMEOUT IA32, X64: The timeout expires before all - dispatched APs have finished. - @retval EFI_SUCCESS IPF: This function always returns EFI_SUCCESS. - -**/ -typedef -EFI_STATUS -(EFIAPI *FRAMEWORK_EFI_MP_SERVICES_STARTUP_ALL_APS)( - IN FRAMEWORK_EFI_MP_SERVICES_PROTOCOL *This, - IN FRAMEWORK_EFI_AP_PROCEDURE Procedure, - IN BOOLEAN SingleThread, - IN EFI_EVENT WaitEvent OPTIONAL, - IN UINTN TimeoutInMicroSecs, - IN VOID *ProcArguments OPTIONAL, - OUT UINTN *FailedCPUList OPTIONAL - ); - -/** - This function is used to dispatch one enabled AP to the function provided by - the caller. The caller can request the BSP to either wait for the AP or just - proceed with the next task. - - @param[in] This The pointer to the FRAMEWORK_EFI_MP_SERVICES_PROTOCOL - instance. - @param[in] Procedure A pointer to the function to be run on the - designated AP. - @param[in] ProcessorNumber The handle number of AP. The range is from - 0 to the total number of logical processors - minus 1. The total number of logical - processors can be retrieved by GetGeneralMPInfo(). - @param[in] WaitEvent Event to signal when APs have finished. - - IA32, X64: - If not NULL, when the AP finishes after timeout - expires, the event will be signaled. If NULL, - the parameter is ignored. - - IPF: - This parameter determines whether the BSP - waits after the AP is dispatched. If it is - NULL, the BSP does not wait after the AP - is dispatched. If it is not NULL, the BSP - waits after the AP is dispatched, and the - time interval is determined by TimeoutInMicrosecs. - Type EFI_EVENT is defined in CreateEvent() - in the Unified Extensible Firmware Interface - Specification. - @param[in] TimeoutInMicrosecsond Time to wait for APs to finish. - - IA32, X64: - If the value is zero, it means no timeout - limit. The BSP waits until the AP finishes. - If the value is not zero, the BSP waits until - the AP finishes or timeout expires. If timeout - expires, EFI_TIMEOUT is returned, and the - BSP will then check the AP's status periodically, - with time interval of 16 microseconds. - - IPF: - If WaitEvent is NULL, this parameter is ignored. - If WaitEvent is not NULL, the BSP waits after - the AP is dispatched and this value determines - time interval. If the value is zero, the length - of time interval is 10ms. If the value is - non-zero, the BSP waits until the AP finishes. - @param[in] ProcedureArgument The pointer to the optional parameter of the - function specified by Procedure. - - @retval EFI_SUCCESS Specified AP has finished before the timeout - expires. - @retval EFI_TIMEOUT The timeout expires before specified AP has - finished. - @retval EFI_INVALID_PARAMETER IA32, X64: Processor with the handle specified - by ProcessorNumber does not exist. - @retval EFI_INVALID_PARAMETER IA32, X64: Specified AP is busy or disabled. - @retval EFI_INVALID_PARAMETER IA32, X64: Procedure is NULL. - @retval EFI_INVALID_PARAMETER IA32, X64: ProcessorNumber specifies the BSP - @retval EFI_NOT_READY IPF: Specified AP is busy - @retval EFI_NOT_AVAILABLE_YET IPF: ProcessorNumber specifies the BSP - @retval EFI_NOT_AVAILABLE_YET IPF: Specified AP is disabled. - @retval EFI_NOT_AVAILABLE_YET IPF: Specified AP is unhealthy or untested. - -**/ -typedef -EFI_STATUS -(EFIAPI *FRAMEWORK_EFI_MP_SERVICES_STARTUP_THIS_AP)( - IN FRAMEWORK_EFI_MP_SERVICES_PROTOCOL *This, - IN FRAMEWORK_EFI_AP_PROCEDURE Procedure, - IN UINTN ProcessorNumber, - IN EFI_EVENT WaitEvent OPTIONAL, - IN UINTN TimeoutInMicroSecs, - IN OUT VOID *ProcArguments OPTIONAL - ); - -/** - This service switches the requested AP to be the BSP from that point onward. - The new BSP can take over the execution of the old BSP and continue seamlessly - from where the old one left off. This call can only be performed by the - current BSP. - - @param[in] This The pointer to the FRAMEWORK_EFI_MP_SERVICES_PROTOCOL - instance. - @param[in] ProcessorNumber The handle number of AP. The range is from 0 to - the total number of logical processors minus 1. - The total number of logical processors can be - retrieved by GetGeneralMPInfo(). - @param[in] EnableOldBSP If TRUE, then the old BSP will be listed as an - enabled AP. Otherwise, it will be disabled. - - @retval EFI_SUCCESS BSP successfully switched. - @retval EFI_INVALID_PARAMETER The processor with the handle specified by - ProcessorNumber does not exist. - @retval EFI_INVALID_PARAMETER ProcessorNumber specifies the BSP. - @retval EFI_NOT_READY IA32, X64: Specified AP is busy or disabled. - @retval EFI_INVALID_PARAMETER IPF: Specified AP is disabled. - @retval EFI_INVALID_PARAMETER IPF: Specified AP is unhealthy or untested. - @retval EFI_NOT_READY IPF: Specified AP is busy. - -**/ -typedef -EFI_STATUS -(EFIAPI *FRAMEWORK_EFI_MP_SERVICES_SWITCH_BSP)( - IN FRAMEWORK_EFI_MP_SERVICES_PROTOCOL *This, - IN UINTN ProcessorNumber, - IN BOOLEAN EnableOldBSP - ); - -/** - This service sends an IPI to a specified AP. Caller can specify vector number - and delivery mode of the interrupt. - - @param[in] This The pointer to the FRAMEWORK_EFI_MP_SERVICES_PROTOCOL - instance. - @param[in] ProcessorNumber The handle number of AP. The range is from 0 to - the total number of logical processors minus 1. - The total number of logical processors can be - retrieved by GetGeneralMPInfo(). - @param[in] VectorNumber The vector number of the interrupt. - @param[in] DeliveryMode The delivery mode of the interrupt. - - @retval EFI_SUCCESS IPI was successfully sent. - @retval EFI_INVALID_PARAMETER ProcessorNumber specifies the BSP. - @retval EFI_INVALID_PARAMETER IA32, X64: Processor with the handle specified - by ProcessorNumber does not exist. - @retval EFI_INVALID_PARAMETER IA32, X64: VectorNumber is greater than 255. - @retval EFI_INVALID_PARAMETER IA32, X64: DeliveryMode is greater than or equal - to DELIVERY_MODE_MAX. - @retval EFI_NOT_READY IA32, X64: IPI is not accepted by the target - processor within 10 microseconds. - @retval EFI_INVALID_PARAMETER IPF: Specified AP is disabled. - @retval EFI_INVALID_PARAMETER IPF: Specified AP is unhealthy or untested. - @retval EFI_NOT_READY IPF: Specified AP is busy. - -**/ -typedef -EFI_STATUS -(EFIAPI *EFI_MP_SERVICES_SEND_IPI)( - IN FRAMEWORK_EFI_MP_SERVICES_PROTOCOL *This, - IN UINTN ProcessorNumber, - IN UINTN VectorNumber, - IN UINTN DeliveryMode - ); - -/** - This service lets the caller enable or disable an AP. The caller can optionally - specify the health status of the AP by Health. It is usually used to update the - health status of the processor after some processor test. - - @param[in] This The pointer to the FRAMEWORK_EFI_MP_SERVICES_PROTOCOL - instance. - @param[in] ProcessorNumber The handle number of AP. The range is from 0 to - the total number of logical processors minus 1. - The total number of logical processors can be - retrieved by GetGeneralMPInfo(). - @param[in] NewAPState Indicates whether the new, desired state of the - AP is enabled or disabled. TRUE for enabling, - FALSE otherwise. - @param[in] HealthState If not NULL, it points to the value that specifies - the new health status of the AP. If it is NULL, - this parameter is ignored. - - @retval EFI_SUCCESS AP successfully enabled or disabled. - @retval EFI_INVALID_PARAMETER ProcessorNumber specifies the BSP. - @retval EFI_INVALID_PARAMETER IA32, X64: Processor with the handle specified - by ProcessorNumber does not exist. - @retval EFI_INVALID_PARAMETER IPF: If an unhealthy or untested AP is to be - enabled. - -**/ -typedef -EFI_STATUS -(EFIAPI *FRAMEWORK_EFI_MP_SERVICES_ENABLEDISABLEAP)( - IN FRAMEWORK_EFI_MP_SERVICES_PROTOCOL *This, - IN UINTN ProcessorNumber, - IN BOOLEAN NewAPState, - IN EFI_MP_HEALTH *HealthState OPTIONAL - ); - -/** - This service lets the caller processor get its handle number, with which any - processor in the system can be uniquely identified. The range is from 0 to the - total number of logical processors minus 1. The total number of logical - processors can be retrieved by GetGeneralMPInfo(). This service may be called - from the BSP and APs. - - @param[in] This The pointer to the FRAMEWORK_EFI_MP_SERVICES_PROTOCOL - instance. - @param[out] ProcessorNumber A pointer to the handle number of AP. The range is - from 0 to the total number of logical processors - minus 1. The total number of logical processors - can be retrieved by GetGeneralMPInfo(). - -@retval EFI_SUCCESS This function always returns EFI_SUCCESS. - -**/ -typedef -EFI_STATUS -(EFIAPI *FRAMEWORK_EFI_MP_SERVICES_WHOAMI)( - IN FRAMEWORK_EFI_MP_SERVICES_PROTOCOL *This, - OUT UINTN *ProcessorNumber - ); - -/// -/// Framework MP Services Protocol structure. -/// -struct _FRAMEWORK_EFI_MP_SERVICES_PROTOCOL { - EFI_MP_SERVICES_GET_GENERAL_MP_INFO GetGeneralMPInfo; - EFI_MP_SERVICES_GET_PROCESSOR_CONTEXT GetProcessorContext; - FRAMEWORK_EFI_MP_SERVICES_STARTUP_ALL_APS StartupAllAPs; - FRAMEWORK_EFI_MP_SERVICES_STARTUP_THIS_AP StartupThisAP; - FRAMEWORK_EFI_MP_SERVICES_SWITCH_BSP SwitchBSP; - EFI_MP_SERVICES_SEND_IPI SendIPI; - FRAMEWORK_EFI_MP_SERVICES_ENABLEDISABLEAP EnableDisableAP; - FRAMEWORK_EFI_MP_SERVICES_WHOAMI WhoAmI; -}; - -extern EFI_GUID gFrameworkEfiMpServiceProtocolGuid; - -#endif diff --git a/IntelFrameworkPkg/Include/Protocol/Legacy8259.h b/IntelFrameworkPkg/Include/Protocol/Legacy8259.h deleted file mode 100644 index c843de101..000000000 --- a/IntelFrameworkPkg/Include/Protocol/Legacy8259.h +++ /dev/null @@ -1,297 +0,0 @@ -/** @file - This protocol abstracts the 8259 interrupt controller. This includes - PCI IRQ routing needed to program the PCI Interrupt Line register. - -Copyright (c) 2007 - 2010, Intel Corporation. All rights reserved.
-This program and the accompanying materials are licensed and made available under -the terms and conditions of the BSD License that accompanies this distribution. -The full text of the license may be found at -http://opensource.org/licenses/bsd-license.php. - -THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, -WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. - - @par Revision Reference: - This protocol is defined in Framework for EFI Compatibility Support Module spec - Version 0.97. - -**/ - -#ifndef _EFI_LEGACY_8259_H_ -#define _EFI_LEGACY_8259_H_ - - -#define EFI_LEGACY_8259_PROTOCOL_GUID \ - { \ - 0x38321dba, 0x4fe0, 0x4e17, {0x8a, 0xec, 0x41, 0x30, 0x55, 0xea, 0xed, 0xc1 } \ - } - -typedef struct _EFI_LEGACY_8259_PROTOCOL EFI_LEGACY_8259_PROTOCOL; - -typedef enum { - Efi8259Irq0, - Efi8259Irq1, - Efi8259Irq2, - Efi8259Irq3, - Efi8259Irq4, - Efi8259Irq5, - Efi8259Irq6, - Efi8259Irq7, - Efi8259Irq8, - Efi8259Irq9, - Efi8259Irq10, - Efi8259Irq11, - Efi8259Irq12, - Efi8259Irq13, - Efi8259Irq14, - Efi8259Irq15, - Efi8259IrqMax -} EFI_8259_IRQ; - -typedef enum { - Efi8259LegacyMode, - Efi8259ProtectedMode, - Efi8259MaxMode -} EFI_8259_MODE; - -/** - Get the 8259 interrupt masks for Irq0 - Irq15. A different mask exists for - the legacy mode mask and the protected mode mask. The base address for the 8259 - is different for legacy and protected mode, so two masks are required. - - @param This The protocol instance pointer. - @param MasterBase The base vector for the Master PIC in the 8259 controller. - @param SlaveBase The base vector for the Slave PIC in the 8259 controller. - - @retval EFI_SUCCESS The new bases were programmed. - @retval EFI_DEVICE_ERROR A device error occured programming the vector bases. - -**/ -typedef -EFI_STATUS -(EFIAPI *EFI_LEGACY_8259_SET_VECTOR_BASE)( - IN EFI_LEGACY_8259_PROTOCOL *This, - IN UINT8 MasterBase, - IN UINT8 SlaveBase - ); - -/** - Get the 8259 interrupt masks for Irq0 - Irq15. A different mask exists for - the legacy mode mask and the protected mode mask. The base address for the 8259 - is different for legacy and protected mode, so two masks are required. - - @param This The protocol instance pointer. - @param LegacyMask Bit 0 is Irq0 - Bit 15 is Irq15. - @param LegacyEdgeLevel Bit 0 is Irq0 - Bit 15 is Irq15. - @param ProtectedMask Bit 0 is Irq0 - Bit 15 is Irq15. - @param ProtectedEdgeLevel Bit 0 is Irq0 - Bit 15 is Irq15. - - @retval EFI_SUCCESS 8259 status returned. - @retval EFI_DEVICE_ERROR Error reading 8259. - -**/ -typedef -EFI_STATUS -(EFIAPI *EFI_LEGACY_8259_GET_MASK)( - IN EFI_LEGACY_8259_PROTOCOL *This, - OUT UINT16 *LegacyMask, OPTIONAL - OUT UINT16 *LegacyEdgeLevel, OPTIONAL - OUT UINT16 *ProtectedMask, OPTIONAL - OUT UINT16 *ProtectedEdgeLevel OPTIONAL - ); - -/** - Set the 8259 interrupt masks for Irq0 - Irq15. A different mask exists for - the legacy mode mask and the protected mode mask. The base address for the 8259 - is different for legacy and protected mode, so two masks are required. - Also set the edge/level masks. - - @param This The protocol instance pointer. - @param LegacyMask Bit 0 is Irq0 - Bit 15 is Irq15. - @param LegacyEdgeLevel Bit 0 is Irq0 - Bit 15 is Irq15. - @param ProtectedMask Bit 0 is Irq0 - Bit 15 is Irq15. - @param ProtectedEdgeLevel Bit 0 is Irq0 - Bit 15 is Irq15. - - @retval EFI_SUCCESS 8259 status returned. - @retval EFI_DEVICE_ERROR Error writing 8259. - -**/ -typedef -EFI_STATUS -(EFIAPI *EFI_LEGACY_8259_SET_MASK)( - IN EFI_LEGACY_8259_PROTOCOL *This, - IN UINT16 *LegacyMask, OPTIONAL - IN UINT16 *LegacyEdgeLevel, OPTIONAL - IN UINT16 *ProtectedMask, OPTIONAL - IN UINT16 *ProtectedEdgeLevel OPTIONAL - ); - -/** - Set the 8259 mode of operation. The base address for the 8259 is different for - legacy and protected mode. The legacy mode requires the master 8259 to have a - master base of 0x08 and the slave base of 0x70. The protected mode base locations - are not defined. Interrupts must be masked by the caller before this function - is called. The interrupt mask from the current mode is saved. The interrupt - mask for the new mode is Mask, or if Mask does not exist the previously saved - mask is used. - - @param This The protocol instance pointer. - @param Mode The mode of operation. i.e. the real mode or protected mode. - @param Mask Optional interupt mask for the new mode. - @param EdgeLevel Optional trigger mask for the new mode. - - @retval EFI_SUCCESS 8259 programmed. - @retval EFI_DEVICE_ERROR Error writing to 8259. - -**/ -typedef -EFI_STATUS -(EFIAPI *EFI_LEGACY_8259_SET_MODE)( - IN EFI_LEGACY_8259_PROTOCOL *This, - IN EFI_8259_MODE Mode, - IN UINT16 *Mask, OPTIONAL - IN UINT16 *EdgeLevel OPTIONAL - ); - -/** - Convert from IRQ to processor interrupt vector number. - - @param This The protocol instance pointer. - @param Irq 8259 IRQ0 - IRQ15. - @param Vector The processor vector number that matches an Irq. - - @retval EFI_SUCCESS The Vector matching Irq is returned. - @retval EFI_INVALID_PARAMETER The Irq not valid. - -**/ -typedef -EFI_STATUS -(EFIAPI *EFI_LEGACY_8259_GET_VECTOR)( - IN EFI_LEGACY_8259_PROTOCOL *This, - IN EFI_8259_IRQ Irq, - OUT UINT8 *Vector - ); - -/** - Enable Irq by unmasking interrupt in 8259 - - @param This The protocol instance pointer. - @param Irq 8259 IRQ0 - IRQ15. - @param LevelTriggered TRUE if level triggered. FALSE if edge triggered. - - @retval EFI_SUCCESS The Irq was enabled on 8259. - @retval EFI_INVALID_PARAMETER The Irq is not valid. - -**/ -typedef -EFI_STATUS -(EFIAPI *EFI_LEGACY_8259_ENABLE_IRQ)( - IN EFI_LEGACY_8259_PROTOCOL *This, - IN EFI_8259_IRQ Irq, - IN BOOLEAN LevelTriggered - ); - -/** - Disable Irq by masking interrupt in 8259 - - @param This The protocol instance pointer. - @param Irq 8259 IRQ0 - IRQ15. - - @retval EFI_SUCCESS The Irq was disabled on 8259. - @retval EFI_INVALID_PARAMETER The Irq is not valid. - -**/ -typedef -EFI_STATUS -(EFIAPI *EFI_LEGACY_8259_DISABLE_IRQ)( - IN EFI_LEGACY_8259_PROTOCOL *This, - IN EFI_8259_IRQ Irq - ); - -/** - PciHandle represents a PCI config space of a PCI function. Vector - represents Interrupt Pin (from PCI config space) and it is the data - that is programmed into the Interrupt Line (from the PCI config space) - register. - - @param This The protocol instance pointer. - @param PciHandle The PCI function to return the vector for. - @param Vector The vector for the function it matches. - - @retval EFI_SUCCESS A valid Vector was returned. - @retval EFI_INVALID_PARAMETER PciHandle not valid. - -**/ -typedef -EFI_STATUS -(EFIAPI *EFI_LEGACY_8259_GET_INTERRUPT_LINE)( - IN EFI_LEGACY_8259_PROTOCOL *This, - IN EFI_HANDLE PciHandle, - OUT UINT8 *Vector - ); - -/** - Send an EOI to 8259 - - @param This The protocol instance pointer. - @param Irq 8259 IRQ0 - IRQ15. - - @retval EFI_SUCCESS EOI was successfully sent to 8259. - @retval EFI_INVALID_PARAMETER The Irq isnot valid. - -**/ -typedef -EFI_STATUS -(EFIAPI *EFI_LEGACY_8259_END_OF_INTERRUPT)( - IN EFI_LEGACY_8259_PROTOCOL *This, - IN EFI_8259_IRQ Irq - ); - -/** - @par Protocol Description: - Abstracts the 8259 and APIC hardware control between EFI usage and - Compatibility16 usage. - - @param SetVectorBase - Sets the vector bases for master and slave PICs. - - @param GetMask - Gets IRQ and edge/level masks for 16-bit real mode and 32-bit protected mode. - - @param SetMask - Sets the IRQ and edge\level masks for 16-bit real mode and 32-bit protected mode. - - @param SetMode - Sets PIC mode to 16-bit real mode or 32-bit protected mode. - - @param GetVector - Gets the base vector assigned to an IRQ. - - @param EnableIrq - Enables an IRQ. - - @param DisableIrq - Disables an IRQ. - - @param GetInterruptLine - Gets an IRQ that is assigned to a PCI device. - - @param EndOfInterrupt - Issues the end of interrupt command. - -**/ -struct _EFI_LEGACY_8259_PROTOCOL { - EFI_LEGACY_8259_SET_VECTOR_BASE SetVectorBase; - EFI_LEGACY_8259_GET_MASK GetMask; - EFI_LEGACY_8259_SET_MASK SetMask; - EFI_LEGACY_8259_SET_MODE SetMode; - EFI_LEGACY_8259_GET_VECTOR GetVector; - EFI_LEGACY_8259_ENABLE_IRQ EnableIrq; - EFI_LEGACY_8259_DISABLE_IRQ DisableIrq; - EFI_LEGACY_8259_GET_INTERRUPT_LINE GetInterruptLine; - EFI_LEGACY_8259_END_OF_INTERRUPT EndOfInterrupt; -}; - -extern EFI_GUID gEfiLegacy8259ProtocolGuid; - -#endif diff --git a/IntelFrameworkPkg/Include/Protocol/LegacyBios.h b/IntelFrameworkPkg/Include/Protocol/LegacyBios.h deleted file mode 100644 index b7ec0cc43..000000000 --- a/IntelFrameworkPkg/Include/Protocol/LegacyBios.h +++ /dev/null @@ -1,1559 +0,0 @@ -/** @file - The EFI Legacy BIOS Protocol is used to abstract legacy Option ROM usage - under EFI and Legacy OS boot. This file also includes all the related - COMPATIBILIY16 structures and defintions. - - Note: The names for EFI_IA32_REGISTER_SET elements were picked to follow - well known naming conventions. - - Thunk is the code that switches from 32-bit protected environment into the 16-bit real-mode - environment. Reverse thunk is the code that does the opposite. - -Copyright (c) 2007 - 2015, Intel Corporation. All rights reserved.
-This program and the accompanying materials are licensed and made available under -the terms and conditions of the BSD License that accompanies this distribution. -The full text of the license may be found at -http://opensource.org/licenses/bsd-license.php. - -THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, -WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. - - @par Revision Reference: - This protocol is defined in Framework for EFI Compatibility Support Module spec - Version 0.98. - -**/ - -#ifndef _EFI_LEGACY_BIOS_H_ -#define _EFI_LEGACY_BIOS_H_ - -/// -/// -/// -#pragma pack(1) - -typedef UINT8 SERIAL_MODE; -typedef UINT8 PARALLEL_MODE; - -#define EFI_COMPATIBILITY16_TABLE_SIGNATURE SIGNATURE_32 ('I', 'F', 'E', '$') - -/// -/// There is a table located within the traditional BIOS in either the 0xF000:xxxx or 0xE000:xxxx -/// physical address range. It is located on a 16-byte boundary and provides the physical address of the -/// entry point for the Compatibility16 functions. These functions provide the platform-specific -/// information that is required by the generic EfiCompatibility code. The functions are invoked via -/// thunking by using EFI_LEGACY_BIOS_PROTOCOL.FarCall86() with the 32-bit physical -/// entry point. -/// -typedef struct { - /// - /// The string "$EFI" denotes the start of the EfiCompatibility table. Byte 0 is "I," byte - /// 1 is "F," byte 2 is "E," and byte 3 is "$" and is normally accessed as a DWORD or UINT32. - /// - UINT32 Signature; - - /// - /// The value required such that byte checksum of TableLength equals zero. - /// - UINT8 TableChecksum; - - /// - /// The length of this table. - /// - UINT8 TableLength; - - /// - /// The major EFI revision for which this table was generated. - /// - UINT8 EfiMajorRevision; - - /// - /// The minor EFI revision for which this table was generated. - /// - UINT8 EfiMinorRevision; - - /// - /// The major revision of this table. - /// - UINT8 TableMajorRevision; - - /// - /// The minor revision of this table. - /// - UINT8 TableMinorRevision; - - /// - /// Reserved for future usage. - /// - UINT16 Reserved; - - /// - /// The segment of the entry point within the traditional BIOS for Compatibility16 functions. - /// - UINT16 Compatibility16CallSegment; - - /// - /// The offset of the entry point within the traditional BIOS for Compatibility16 functions. - /// - UINT16 Compatibility16CallOffset; - - /// - /// The segment of the entry point within the traditional BIOS for EfiCompatibility - /// to invoke the PnP installation check. - /// - UINT16 PnPInstallationCheckSegment; - - /// - /// The Offset of the entry point within the traditional BIOS for EfiCompatibility - /// to invoke the PnP installation check. - /// - UINT16 PnPInstallationCheckOffset; - - /// - /// EFI system resources table. Type EFI_SYSTEM_TABLE is defined in the IntelPlatform - ///Innovation Framework for EFI Driver Execution Environment Core Interface Specification (DXE CIS). - /// - UINT32 EfiSystemTable; - - /// - /// The address of an OEM-provided identifier string. The string is null terminated. - /// - UINT32 OemIdStringPointer; - - /// - /// The 32-bit physical address where ACPI RSD PTR is stored within the traditional - /// BIOS. The remained of the ACPI tables are located at their EFI addresses. The size - /// reserved is the maximum for ACPI 2.0. The EfiCompatibility will fill in the ACPI - /// RSD PTR with either the ACPI 1.0b or 2.0 values. - /// - UINT32 AcpiRsdPtrPointer; - - /// - /// The OEM revision number. Usage is undefined but provided for OEM module usage. - /// - UINT16 OemRevision; - - /// - /// The 32-bit physical address where INT15 E820 data is stored within the traditional - /// BIOS. The EfiCompatibility code will fill in the E820Pointer value and copy the - /// data to the indicated area. - /// - UINT32 E820Pointer; - - /// - /// The length of the E820 data and is filled in by the EfiCompatibility code. - /// - UINT32 E820Length; - - /// - /// The 32-bit physical address where the $PIR table is stored in the traditional BIOS. - /// The EfiCompatibility code will fill in the IrqRoutingTablePointer value and - /// copy the data to the indicated area. - /// - UINT32 IrqRoutingTablePointer; - - /// - /// The length of the $PIR table and is filled in by the EfiCompatibility code. - /// - UINT32 IrqRoutingTableLength; - - /// - /// The 32-bit physical address where the MP table is stored in the traditional BIOS. - /// The EfiCompatibility code will fill in the MpTablePtr value and copy the data - /// to the indicated area. - /// - UINT32 MpTablePtr; - - /// - /// The length of the MP table and is filled in by the EfiCompatibility code. - /// - UINT32 MpTableLength; - - /// - /// The segment of the OEM-specific INT table/code. - /// - UINT16 OemIntSegment; - - /// - /// The offset of the OEM-specific INT table/code. - /// - UINT16 OemIntOffset; - - /// - /// The segment of the OEM-specific 32-bit table/code. - /// - UINT16 Oem32Segment; - - /// - /// The offset of the OEM-specific 32-bit table/code. - /// - UINT16 Oem32Offset; - - /// - /// The segment of the OEM-specific 16-bit table/code. - /// - UINT16 Oem16Segment; - - /// - /// The offset of the OEM-specific 16-bit table/code. - /// - UINT16 Oem16Offset; - - /// - /// The segment of the TPM binary passed to 16-bit CSM. - /// - UINT16 TpmSegment; - - /// - /// The offset of the TPM binary passed to 16-bit CSM. - /// - UINT16 TpmOffset; - - /// - /// A pointer to a string identifying the independent BIOS vendor. - /// - UINT32 IbvPointer; - - /// - /// This field is NULL for all systems not supporting PCI Express. This field is the base - /// value of the start of the PCI Express memory-mapped configuration registers and - /// must be filled in prior to EfiCompatibility code issuing the Compatibility16 function - /// Compatibility16InitializeYourself(). - /// Compatibility16InitializeYourself() is defined in Compatability16 - /// Functions. - /// - UINT32 PciExpressBase; - - /// - /// Maximum PCI bus number assigned. - /// - UINT8 LastPciBus; - - /// - /// Start Address of Upper Memory Area (UMA) to be set as Read/Write. If - /// UmaAddress is a valid address in the shadow RAM, it also indicates that the region - /// from 0xC0000 to (UmaAddress - 1) can be used for Option ROM. - /// - UINT32 UmaAddress; - - /// - /// Upper Memory Area size in bytes to be set as Read/Write. If zero, no UMA region - /// will be set as Read/Write (i.e. all Shadow RAM is set as Read-Only). - /// - UINT32 UmaSize; - - /// - /// Start Address of high memory that can be used for permanent allocation. If zero, - /// high memory is not available for permanent allocation. - /// - UINT32 HiPermanentMemoryAddress; - - /// - /// Size of high memory that can be used for permanent allocation in bytes. If zero, - /// high memory is not available for permanent allocation. - /// - UINT32 HiPermanentMemorySize; -} EFI_COMPATIBILITY16_TABLE; - -/// -/// Functions provided by the CSM binary which communicate between the EfiCompatibility -/// and Compatability16 code. -/// -/// Inconsistent with the specification here: -/// The member's name started with "Compatibility16" [defined in Intel Framework -/// Compatibility Support Module Specification / 0.97 version] -/// has been changed to "Legacy16" since keeping backward compatible. -/// -typedef enum { - /// - /// Causes the Compatibility16 code to do any internal initialization required. - /// Input: - /// AX = Compatibility16InitializeYourself - /// ES:BX = Pointer to EFI_TO_COMPATIBILITY16_INIT_TABLE - /// Return: - /// AX = Return Status codes - /// - Legacy16InitializeYourself = 0x0000, - - /// - /// Causes the Compatibility16 BIOS to perform any drive number translations to match the boot sequence. - /// Input: - /// AX = Compatibility16UpdateBbs - /// ES:BX = Pointer to EFI_TO_COMPATIBILITY16_BOOT_TABLE - /// Return: - /// AX = Returned status codes - /// - Legacy16UpdateBbs = 0x0001, - - /// - /// Allows the Compatibility16 code to perform any final actions before booting. The Compatibility16 - /// code is read/write. - /// Input: - /// AX = Compatibility16PrepareToBoot - /// ES:BX = Pointer to EFI_TO_COMPATIBILITY16_BOOT_TABLE structure - /// Return: - /// AX = Returned status codes - /// - Legacy16PrepareToBoot = 0x0002, - - /// - /// Causes the Compatibility16 BIOS to boot. The Compatibility16 code is Read/Only. - /// Input: - /// AX = Compatibility16Boot - /// Output: - /// AX = Returned status codes - /// - Legacy16Boot = 0x0003, - - /// - /// Allows the Compatibility16 code to get the last device from which a boot was attempted. This is - /// stored in CMOS and is the priority number of the last attempted boot device. - /// Input: - /// AX = Compatibility16RetrieveLastBootDevice - /// Output: - /// AX = Returned status codes - /// BX = Priority number of the boot device. - /// - Legacy16RetrieveLastBootDevice = 0x0004, - - /// - /// Allows the Compatibility16 code rehook INT13, INT18, and/or INT19 after dispatching a legacy OpROM. - /// Input: - /// AX = Compatibility16DispatchOprom - /// ES:BX = Pointer to EFI_DISPATCH_OPROM_TABLE - /// Output: - /// AX = Returned status codes - /// BX = Number of non-BBS-compliant devices found. Equals 0 if BBS compliant. - /// - Legacy16DispatchOprom = 0x0005, - - /// - /// Finds a free area in the 0xFxxxx or 0xExxxx region of the specified length and returns the address - /// of that region. - /// Input: - /// AX = Compatibility16GetTableAddress - /// BX = Allocation region - /// 00 = Allocate from either 0xE0000 or 0xF0000 64 KB blocks. - /// Bit 0 = 1 Allocate from 0xF0000 64 KB block - /// Bit 1 = 1 Allocate from 0xE0000 64 KB block - /// CX = Requested length in bytes. - /// DX = Required address alignment. Bit mapped. First non-zero bit from the right is the alignment. - /// Output: - /// AX = Returned status codes - /// DS:BX = Address of the region - /// - Legacy16GetTableAddress = 0x0006, - - /// - /// Enables the EfiCompatibility module to do any nonstandard processing of keyboard LEDs or state. - /// Input: - /// AX = Compatibility16SetKeyboardLeds - /// CL = LED status. - /// Bit 0 Scroll Lock 0 = Off - /// Bit 1 NumLock - /// Bit 2 Caps Lock - /// Output: - /// AX = Returned status codes - /// - Legacy16SetKeyboardLeds = 0x0007, - - /// - /// Enables the EfiCompatibility module to install an interrupt handler for PCI mass media devices that - /// do not have an OpROM associated with them. An example is SATA. - /// Input: - /// AX = Compatibility16InstallPciHandler - /// ES:BX = Pointer to EFI_LEGACY_INSTALL_PCI_HANDLER structure - /// Output: - /// AX = Returned status codes - /// - Legacy16InstallPciHandler = 0x0008 -} EFI_COMPATIBILITY_FUNCTIONS; - - -/// -/// EFI_DISPATCH_OPROM_TABLE -/// -typedef struct { - UINT16 PnPInstallationCheckSegment; ///< A pointer to the PnpInstallationCheck data structure. - UINT16 PnPInstallationCheckOffset; ///< A pointer to the PnpInstallationCheck data structure. - UINT16 OpromSegment; ///< The segment where the OpROM was placed. Offset is assumed to be 3. - UINT8 PciBus; ///< The PCI bus. - UINT8 PciDeviceFunction; ///< The PCI device * 0x08 | PCI function. - UINT8 NumberBbsEntries; ///< The number of valid BBS table entries upon entry and exit. The IBV code may - ///< increase this number, if BBS-compliant devices also hook INTs in order to force the - ///< OpROM BIOS Setup to be executed. - UINT32 BbsTablePointer; ///< A pointer to the BBS table. - UINT16 RuntimeSegment; ///< The segment where the OpROM can be relocated to. If this value is 0x0000, this - ///< means that the relocation of this run time code is not supported. - ///< Inconsistent with specification here: - ///< The member's name "OpromDestinationSegment" [defined in Intel Framework Compatibility Support Module Specification / 0.97 version] - ///< has been changed to "RuntimeSegment" since keeping backward compatible. - -} EFI_DISPATCH_OPROM_TABLE; - -/// -/// EFI_TO_COMPATIBILITY16_INIT_TABLE -/// -typedef struct { - /// - /// Starting address of memory under 1 MB. The ending address is assumed to be 640 KB or 0x9FFFF. - /// - UINT32 BiosLessThan1MB; - - /// - /// The starting address of the high memory block. - /// - UINT32 HiPmmMemory; - - /// - /// The length of high memory block. - /// - UINT32 HiPmmMemorySizeInBytes; - - /// - /// The segment of the reverse thunk call code. - /// - UINT16 ReverseThunkCallSegment; - - /// - /// The offset of the reverse thunk call code. - /// - UINT16 ReverseThunkCallOffset; - - /// - /// The number of E820 entries copied to the Compatibility16 BIOS. - /// - UINT32 NumberE820Entries; - - /// - /// The amount of usable memory above 1 MB, e.g., E820 type 1 memory. - /// - UINT32 OsMemoryAbove1Mb; - - /// - /// The start of thunk code in main memory. Memory cannot be used by BIOS or PMM. - /// - UINT32 ThunkStart; - - /// - /// The size of the thunk code. - /// - UINT32 ThunkSizeInBytes; - - /// - /// Starting address of memory under 1 MB. - /// - UINT32 LowPmmMemory; - - /// - /// The length of low Memory block. - /// - UINT32 LowPmmMemorySizeInBytes; -} EFI_TO_COMPATIBILITY16_INIT_TABLE; - -/// -/// DEVICE_PRODUCER_SERIAL. -/// -typedef struct { - UINT16 Address; ///< I/O address assigned to the serial port. - UINT8 Irq; ///< IRQ assigned to the serial port. - SERIAL_MODE Mode; ///< Mode of serial port. Values are defined below. -} DEVICE_PRODUCER_SERIAL; - -/// -/// DEVICE_PRODUCER_SERIAL's modes. -///@{ -#define DEVICE_SERIAL_MODE_NORMAL 0x00 -#define DEVICE_SERIAL_MODE_IRDA 0x01 -#define DEVICE_SERIAL_MODE_ASK_IR 0x02 -#define DEVICE_SERIAL_MODE_DUPLEX_HALF 0x00 -#define DEVICE_SERIAL_MODE_DUPLEX_FULL 0x10 -///@) - -/// -/// DEVICE_PRODUCER_PARALLEL. -/// -typedef struct { - UINT16 Address; ///< I/O address assigned to the parallel port. - UINT8 Irq; ///< IRQ assigned to the parallel port. - UINT8 Dma; ///< DMA assigned to the parallel port. - PARALLEL_MODE Mode; ///< Mode of the parallel port. Values are defined below. -} DEVICE_PRODUCER_PARALLEL; - -/// -/// DEVICE_PRODUCER_PARALLEL's modes. -///@{ -#define DEVICE_PARALLEL_MODE_MODE_OUTPUT_ONLY 0x00 -#define DEVICE_PARALLEL_MODE_MODE_BIDIRECTIONAL 0x01 -#define DEVICE_PARALLEL_MODE_MODE_EPP 0x02 -#define DEVICE_PARALLEL_MODE_MODE_ECP 0x03 -///@} - -/// -/// DEVICE_PRODUCER_FLOPPY -/// -typedef struct { - UINT16 Address; ///< I/O address assigned to the floppy. - UINT8 Irq; ///< IRQ assigned to the floppy. - UINT8 Dma; ///< DMA assigned to the floppy. - UINT8 NumberOfFloppy; ///< Number of floppies in the system. -} DEVICE_PRODUCER_FLOPPY; - -/// -/// LEGACY_DEVICE_FLAGS -/// -typedef struct { - UINT32 A20Kybd : 1; ///< A20 controller by keyboard controller. - UINT32 A20Port90 : 1; ///< A20 controlled by port 0x92. - UINT32 Reserved : 30; ///< Reserved for future usage. -} LEGACY_DEVICE_FLAGS; - -/// -/// DEVICE_PRODUCER_DATA_HEADER -/// -typedef struct { - DEVICE_PRODUCER_SERIAL Serial[4]; ///< Data for serial port x. Type DEVICE_PRODUCER_SERIAL is defined below. - DEVICE_PRODUCER_PARALLEL Parallel[3]; ///< Data for parallel port x. Type DEVICE_PRODUCER_PARALLEL is defined below. - DEVICE_PRODUCER_FLOPPY Floppy; ///< Data for floppy. Type DEVICE_PRODUCER_FLOPPY is defined below. - UINT8 MousePresent; ///< Flag to indicate if mouse is present. - LEGACY_DEVICE_FLAGS Flags; ///< Miscellaneous Boolean state information passed to CSM. -} DEVICE_PRODUCER_DATA_HEADER; - -/// -/// ATAPI_IDENTIFY -/// -typedef struct { - UINT16 Raw[256]; ///< Raw data from the IDE IdentifyDrive command. -} ATAPI_IDENTIFY; - -/// -/// HDD_INFO -/// -typedef struct { - /// - /// Status of IDE device. Values are defined below. There is one HDD_INFO structure - /// per IDE controller. The IdentifyDrive is per drive. Index 0 is master and index - /// 1 is slave. - /// - UINT16 Status; - - /// - /// PCI bus of IDE controller. - /// - UINT32 Bus; - - /// - /// PCI device of IDE controller. - /// - UINT32 Device; - - /// - /// PCI function of IDE controller. - /// - UINT32 Function; - - /// - /// Command ports base address. - /// - UINT16 CommandBaseAddress; - - /// - /// Control ports base address. - /// - UINT16 ControlBaseAddress; - - /// - /// Bus master address. - /// - UINT16 BusMasterAddress; - - UINT8 HddIrq; - - /// - /// Data that identifies the drive data; one per possible attached drive. - /// - ATAPI_IDENTIFY IdentifyDrive[2]; -} HDD_INFO; - -/// -/// HDD_INFO status bits -/// -#define HDD_PRIMARY 0x01 -#define HDD_SECONDARY 0x02 -#define HDD_MASTER_ATAPI_CDROM 0x04 -#define HDD_SLAVE_ATAPI_CDROM 0x08 -#define HDD_MASTER_IDE 0x20 -#define HDD_SLAVE_IDE 0x40 -#define HDD_MASTER_ATAPI_ZIPDISK 0x10 -#define HDD_SLAVE_ATAPI_ZIPDISK 0x80 - -/// -/// BBS_STATUS_FLAGS;\. -/// -typedef struct { - UINT16 OldPosition : 4; ///< Prior priority. - UINT16 Reserved1 : 4; ///< Reserved for future use. - UINT16 Enabled : 1; ///< If 0, ignore this entry. - UINT16 Failed : 1; ///< 0 = Not known if boot failure occurred. - ///< 1 = Boot attempted failed. - - /// - /// State of media present. - /// 00 = No bootable media is present in the device. - /// 01 = Unknown if a bootable media present. - /// 10 = Media is present and appears bootable. - /// 11 = Reserved. - /// - UINT16 MediaPresent : 2; - UINT16 Reserved2 : 4; ///< Reserved for future use. -} BBS_STATUS_FLAGS; - -/// -/// BBS_TABLE, device type values & boot priority values. -/// -typedef struct { - /// - /// The boot priority for this boot device. Values are defined below. - /// - UINT16 BootPriority; - - /// - /// The PCI bus for this boot device. - /// - UINT32 Bus; - - /// - /// The PCI device for this boot device. - /// - UINT32 Device; - - /// - /// The PCI function for the boot device. - /// - UINT32 Function; - - /// - /// The PCI class for this boot device. - /// - UINT8 Class; - - /// - /// The PCI Subclass for this boot device. - /// - UINT8 SubClass; - - /// - /// Segment:offset address of an ASCIIZ description string describing the manufacturer. - /// - UINT16 MfgStringOffset; - - /// - /// Segment:offset address of an ASCIIZ description string describing the manufacturer. - /// - UINT16 MfgStringSegment; - - /// - /// BBS device type. BBS device types are defined below. - /// - UINT16 DeviceType; - - /// - /// Status of this boot device. Type BBS_STATUS_FLAGS is defined below. - /// - BBS_STATUS_FLAGS StatusFlags; - - /// - /// Segment:Offset address of boot loader for IPL devices or install INT13 handler for - /// BCV devices. - /// - UINT16 BootHandlerOffset; - - /// - /// Segment:Offset address of boot loader for IPL devices or install INT13 handler for - /// BCV devices. - /// - UINT16 BootHandlerSegment; - - /// - /// Segment:offset address of an ASCIIZ description string describing this device. - /// - UINT16 DescStringOffset; - - /// - /// Segment:offset address of an ASCIIZ description string describing this device. - /// - UINT16 DescStringSegment; - - /// - /// Reserved. - /// - UINT32 InitPerReserved; - - /// - /// The use of these fields is IBV dependent. They can be used to flag that an OpROM - /// has hooked the specified IRQ. The OpROM may be BBS compliant as some SCSI - /// BBS-compliant OpROMs also hook IRQ vectors in order to run their BIOS Setup - /// - UINT32 AdditionalIrq13Handler; - - /// - /// The use of these fields is IBV dependent. They can be used to flag that an OpROM - /// has hooked the specified IRQ. The OpROM may be BBS compliant as some SCSI - /// BBS-compliant OpROMs also hook IRQ vectors in order to run their BIOS Setup - /// - UINT32 AdditionalIrq18Handler; - - /// - /// The use of these fields is IBV dependent. They can be used to flag that an OpROM - /// has hooked the specified IRQ. The OpROM may be BBS compliant as some SCSI - /// BBS-compliant OpROMs also hook IRQ vectors in order to run their BIOS Setup - /// - UINT32 AdditionalIrq19Handler; - - /// - /// The use of these fields is IBV dependent. They can be used to flag that an OpROM - /// has hooked the specified IRQ. The OpROM may be BBS compliant as some SCSI - /// BBS-compliant OpROMs also hook IRQ vectors in order to run their BIOS Setup - /// - UINT32 AdditionalIrq40Handler; - UINT8 AssignedDriveNumber; - UINT32 AdditionalIrq41Handler; - UINT32 AdditionalIrq46Handler; - UINT32 IBV1; - UINT32 IBV2; -} BBS_TABLE; - -/// -/// BBS device type values -///@{ -#define BBS_FLOPPY 0x01 -#define BBS_HARDDISK 0x02 -#define BBS_CDROM 0x03 -#define BBS_PCMCIA 0x04 -#define BBS_USB 0x05 -#define BBS_EMBED_NETWORK 0x06 -#define BBS_BEV_DEVICE 0x80 -#define BBS_UNKNOWN 0xff -///@} - -/// -/// BBS boot priority values -///@{ -#define BBS_DO_NOT_BOOT_FROM 0xFFFC -#define BBS_LOWEST_PRIORITY 0xFFFD -#define BBS_UNPRIORITIZED_ENTRY 0xFFFE -#define BBS_IGNORE_ENTRY 0xFFFF -///@} - -/// -/// SMM_ATTRIBUTES -/// -typedef struct { - /// - /// Access mechanism used to generate the soft SMI. Defined types are below. The other - /// values are reserved for future usage. - /// - UINT16 Type : 3; - - /// - /// The size of "port" in bits. Defined values are below. - /// - UINT16 PortGranularity : 3; - - /// - /// The size of data in bits. Defined values are below. - /// - UINT16 DataGranularity : 3; - - /// - /// Reserved for future use. - /// - UINT16 Reserved : 7; -} SMM_ATTRIBUTES; - -/// -/// SMM_ATTRIBUTES type values. -///@{ -#define STANDARD_IO 0x00 -#define STANDARD_MEMORY 0x01 -///@} - -/// -/// SMM_ATTRIBUTES port size constants. -///@{ -#define PORT_SIZE_8 0x00 -#define PORT_SIZE_16 0x01 -#define PORT_SIZE_32 0x02 -#define PORT_SIZE_64 0x03 -///@} - -/// -/// SMM_ATTRIBUTES data size constants. -///@{ -#define DATA_SIZE_8 0x00 -#define DATA_SIZE_16 0x01 -#define DATA_SIZE_32 0x02 -#define DATA_SIZE_64 0x03 -///@} - -/// -/// SMM_FUNCTION & relating constants. -/// -typedef struct { - UINT16 Function : 15; - UINT16 Owner : 1; -} SMM_FUNCTION; - -/// -/// SMM_FUNCTION Function constants. -///@{ -#define INT15_D042 0x0000 -#define GET_USB_BOOT_INFO 0x0001 -#define DMI_PNP_50_57 0x0002 -///@} - -/// -/// SMM_FUNCTION Owner constants. -///@{ -#define STANDARD_OWNER 0x0 -#define OEM_OWNER 0x1 -///@} - -/// -/// This structure assumes both port and data sizes are 1. SmmAttribute must be -/// properly to reflect that assumption. -/// -typedef struct { - /// - /// Describes the access mechanism, SmmPort, and SmmData sizes. Type - /// SMM_ATTRIBUTES is defined below. - /// - SMM_ATTRIBUTES SmmAttributes; - - /// - /// Function Soft SMI is to perform. Type SMM_FUNCTION is defined below. - /// - SMM_FUNCTION SmmFunction; - - /// - /// SmmPort size depends upon SmmAttributes and ranges from2 bytes to 16 bytes. - /// - UINT8 SmmPort; - - /// - /// SmmData size depends upon SmmAttributes and ranges from2 bytes to 16 bytes. - /// - UINT8 SmmData; -} SMM_ENTRY; - -/// -/// SMM_TABLE -/// -typedef struct { - UINT16 NumSmmEntries; ///< Number of entries represented by SmmEntry. - SMM_ENTRY SmmEntry; ///< One entry per function. Type SMM_ENTRY is defined below. -} SMM_TABLE; - -/// -/// UDC_ATTRIBUTES -/// -typedef struct { - /// - /// This bit set indicates that the ServiceAreaData is valid. - /// - UINT8 DirectoryServiceValidity : 1; - - /// - /// This bit set indicates to use the Reserve Area Boot Code Address (RACBA) only if - /// DirectoryServiceValidity is 0. - /// - UINT8 RabcaUsedFlag : 1; - - /// - /// This bit set indicates to execute hard disk diagnostics. - /// - UINT8 ExecuteHddDiagnosticsFlag : 1; - - /// - /// Reserved for future use. Set to 0. - /// - UINT8 Reserved : 5; -} UDC_ATTRIBUTES; - -/// -/// UD_TABLE -/// -typedef struct { - /// - /// This field contains the bit-mapped attributes of the PARTIES information. Type - /// UDC_ATTRIBUTES is defined below. - /// - UDC_ATTRIBUTES Attributes; - - /// - /// This field contains the zero-based device on which the selected - /// ServiceDataArea is present. It is 0 for master and 1 for the slave device. - /// - UINT8 DeviceNumber; - - /// - /// This field contains the zero-based index into the BbsTable for the parent device. - /// This index allows the user to reference the parent device information such as PCI - /// bus, device function. - /// - UINT8 BbsTableEntryNumberForParentDevice; - - /// - /// This field contains the zero-based index into the BbsTable for the boot entry. - /// - UINT8 BbsTableEntryNumberForBoot; - - /// - /// This field contains the zero-based index into the BbsTable for the HDD diagnostics entry. - /// - UINT8 BbsTableEntryNumberForHddDiag; - - /// - /// The raw Beer data. - /// - UINT8 BeerData[128]; - - /// - /// The raw data of selected service area. - /// - UINT8 ServiceAreaData[64]; -} UD_TABLE; - -#define EFI_TO_LEGACY_MAJOR_VERSION 0x02 -#define EFI_TO_LEGACY_MINOR_VERSION 0x00 -#define MAX_IDE_CONTROLLER 8 - -/// -/// EFI_TO_COMPATIBILITY16_BOOT_TABLE -/// -typedef struct { - UINT16 MajorVersion; ///< The EfiCompatibility major version number. - UINT16 MinorVersion; ///< The EfiCompatibility minor version number. - UINT32 AcpiTable; ///< The location of the RSDT ACPI table. < 4G range. - UINT32 SmbiosTable; ///< The location of the SMBIOS table in EFI memory. < 4G range. - UINT32 SmbiosTableLength; - // - // Legacy SIO state - // - DEVICE_PRODUCER_DATA_HEADER SioData; ///< Standard traditional device information. - UINT16 DevicePathType; ///< The default boot type. - UINT16 PciIrqMask; ///< Mask of which IRQs have been assigned to PCI. - UINT32 NumberE820Entries; ///< Number of E820 entries. The number can change from the - ///< Compatibility16InitializeYourself() function. - // - // Controller & Drive Identify[2] per controller information - // - HDD_INFO HddInfo[MAX_IDE_CONTROLLER]; ///< Hard disk drive information, including raw Identify Drive data. - UINT32 NumberBbsEntries; ///< Number of entries in the BBS table - UINT32 BbsTable; ///< A pointer to the BBS table. Type BBS_TABLE is defined below. - UINT32 SmmTable; ///< A pointer to the SMM table. Type SMM_TABLE is defined below. - UINT32 OsMemoryAbove1Mb; ///< The amount of usable memory above 1 MB, i.e. E820 type 1 memory. This value can - ///< differ from the value in EFI_TO_COMPATIBILITY16_INIT_TABLE as more - ///< memory may have been discovered. - UINT32 UnconventionalDeviceTable; ///< Information to boot off an unconventional device like a PARTIES partition. Type - ///< UD_TABLE is defined below. -} EFI_TO_COMPATIBILITY16_BOOT_TABLE; - -/// -/// EFI_LEGACY_INSTALL_PCI_HANDLER -/// -typedef struct { - UINT8 PciBus; ///< The PCI bus of the device. - UINT8 PciDeviceFun; ///< The PCI device in bits 7:3 and function in bits 2:0. - UINT8 PciSegment; ///< The PCI segment of the device. - UINT8 PciClass; ///< The PCI class code of the device. - UINT8 PciSubclass; ///< The PCI subclass code of the device. - UINT8 PciInterface; ///< The PCI interface code of the device. - // - // Primary section - // - UINT8 PrimaryIrq; ///< The primary device IRQ. - UINT8 PrimaryReserved; ///< Reserved. - UINT16 PrimaryControl; ///< The primary device control I/O base. - UINT16 PrimaryBase; ///< The primary device I/O base. - UINT16 PrimaryBusMaster; ///< The primary device bus master I/O base. - // - // Secondary Section - // - UINT8 SecondaryIrq; ///< The secondary device IRQ. - UINT8 SecondaryReserved; ///< Reserved. - UINT16 SecondaryControl; ///< The secondary device control I/O base. - UINT16 SecondaryBase; ///< The secondary device I/O base. - UINT16 SecondaryBusMaster; ///< The secondary device bus master I/O base. -} EFI_LEGACY_INSTALL_PCI_HANDLER; - -// -// Restore default pack value -// -#pragma pack() - -#define EFI_LEGACY_BIOS_PROTOCOL_GUID \ - { \ - 0xdb9a1e3d, 0x45cb, 0x4abb, {0x85, 0x3b, 0xe5, 0x38, 0x7f, 0xdb, 0x2e, 0x2d } \ - } - -typedef struct _EFI_LEGACY_BIOS_PROTOCOL EFI_LEGACY_BIOS_PROTOCOL; - -/// -/// Flags returned by CheckPciRom(). -/// -#define NO_ROM 0x00 -#define ROM_FOUND 0x01 -#define VALID_LEGACY_ROM 0x02 -#define ROM_WITH_CONFIG 0x04 ///< Not defined in the Framework CSM Specification. - -/// -/// The following macros do not appear in the Framework CSM Specification and -/// are kept for backward compatibility only. They convert 32-bit address (_Adr) -/// to Segment:Offset 16-bit form. -/// -///@{ -#define EFI_SEGMENT(_Adr) (UINT16) ((UINT16) (((UINTN) (_Adr)) >> 4) & 0xf000) -#define EFI_OFFSET(_Adr) (UINT16) (((UINT16) ((UINTN) (_Adr))) & 0xffff) -///@} - -#define CARRY_FLAG 0x01 - -/// -/// EFI_EFLAGS_REG -/// -typedef struct { - UINT32 CF:1; - UINT32 Reserved1:1; - UINT32 PF:1; - UINT32 Reserved2:1; - UINT32 AF:1; - UINT32 Reserved3:1; - UINT32 ZF:1; - UINT32 SF:1; - UINT32 TF:1; - UINT32 IF:1; - UINT32 DF:1; - UINT32 OF:1; - UINT32 IOPL:2; - UINT32 NT:1; - UINT32 Reserved4:2; - UINT32 VM:1; - UINT32 Reserved5:14; -} EFI_EFLAGS_REG; - -/// -/// EFI_DWORD_REGS -/// -typedef struct { - UINT32 EAX; - UINT32 EBX; - UINT32 ECX; - UINT32 EDX; - UINT32 ESI; - UINT32 EDI; - EFI_EFLAGS_REG EFlags; - UINT16 ES; - UINT16 CS; - UINT16 SS; - UINT16 DS; - UINT16 FS; - UINT16 GS; - UINT32 EBP; - UINT32 ESP; -} EFI_DWORD_REGS; - -/// -/// EFI_FLAGS_REG -/// -typedef struct { - UINT16 CF:1; - UINT16 Reserved1:1; - UINT16 PF:1; - UINT16 Reserved2:1; - UINT16 AF:1; - UINT16 Reserved3:1; - UINT16 ZF:1; - UINT16 SF:1; - UINT16 TF:1; - UINT16 IF:1; - UINT16 DF:1; - UINT16 OF:1; - UINT16 IOPL:2; - UINT16 NT:1; - UINT16 Reserved4:1; -} EFI_FLAGS_REG; - -/// -/// EFI_WORD_REGS -/// -typedef struct { - UINT16 AX; - UINT16 ReservedAX; - UINT16 BX; - UINT16 ReservedBX; - UINT16 CX; - UINT16 ReservedCX; - UINT16 DX; - UINT16 ReservedDX; - UINT16 SI; - UINT16 ReservedSI; - UINT16 DI; - UINT16 ReservedDI; - EFI_FLAGS_REG Flags; - UINT16 ReservedFlags; - UINT16 ES; - UINT16 CS; - UINT16 SS; - UINT16 DS; - UINT16 FS; - UINT16 GS; - UINT16 BP; - UINT16 ReservedBP; - UINT16 SP; - UINT16 ReservedSP; -} EFI_WORD_REGS; - -/// -/// EFI_BYTE_REGS -/// -typedef struct { - UINT8 AL, AH; - UINT16 ReservedAX; - UINT8 BL, BH; - UINT16 ReservedBX; - UINT8 CL, CH; - UINT16 ReservedCX; - UINT8 DL, DH; - UINT16 ReservedDX; -} EFI_BYTE_REGS; - -/// -/// EFI_IA32_REGISTER_SET -/// -typedef union { - EFI_DWORD_REGS E; - EFI_WORD_REGS X; - EFI_BYTE_REGS H; -} EFI_IA32_REGISTER_SET; - -/** - Thunk to 16-bit real mode and execute a software interrupt with a vector - of BiosInt. Regs will contain the 16-bit register context on entry and - exit. - - @param[in] This The protocol instance pointer. - @param[in] BiosInt The processor interrupt vector to invoke. - @param[in,out] Reg Register contexted passed into (and returned) from thunk to - 16-bit mode. - - @retval TRUE Thunk completed with no BIOS errors in the target code. See Regs for status. - @retval FALSE There was a BIOS error in the target code. -**/ -typedef -BOOLEAN -(EFIAPI *EFI_LEGACY_BIOS_INT86)( - IN EFI_LEGACY_BIOS_PROTOCOL *This, - IN UINT8 BiosInt, - IN OUT EFI_IA32_REGISTER_SET *Regs - ); - -/** - Thunk to 16-bit real mode and call Segment:Offset. Regs will contain the - 16-bit register context on entry and exit. Arguments can be passed on - the Stack argument - - @param[in] This The protocol instance pointer. - @param[in] Segment The segemnt of 16-bit mode call. - @param[in] Offset The offset of 16-bit mdoe call. - @param[in] Reg Register contexted passed into (and returned) from thunk to - 16-bit mode. - @param[in] Stack The caller allocated stack used to pass arguments. - @param[in] StackSize The size of Stack in bytes. - - @retval FALSE Thunk completed with no BIOS errors in the target code. See Regs for status. @retval TRUE There was a BIOS error in the target code. -**/ -typedef -BOOLEAN -(EFIAPI *EFI_LEGACY_BIOS_FARCALL86)( - IN EFI_LEGACY_BIOS_PROTOCOL *This, - IN UINT16 Segment, - IN UINT16 Offset, - IN EFI_IA32_REGISTER_SET *Regs, - IN VOID *Stack, - IN UINTN StackSize - ); - -/** - Test to see if a legacy PCI ROM exists for this device. Optionally return - the Legacy ROM instance for this PCI device. - - @param[in] This The protocol instance pointer. - @param[in] PciHandle The PCI PC-AT OPROM from this devices ROM BAR will be loaded - @param[out] RomImage Return the legacy PCI ROM for this device. - @param[out] RomSize The size of ROM Image. - @param[out] Flags Indicates if ROM found and if PC-AT. Multiple bits can be set as follows: - - 00 = No ROM. - - 01 = ROM Found. - - 02 = ROM is a valid legacy ROM. - - @retval EFI_SUCCESS The Legacy Option ROM available for this device - @retval EFI_UNSUPPORTED The Legacy Option ROM is not supported. - -**/ -typedef -EFI_STATUS -(EFIAPI *EFI_LEGACY_BIOS_CHECK_ROM)( - IN EFI_LEGACY_BIOS_PROTOCOL *This, - IN EFI_HANDLE PciHandle, - OUT VOID **RomImage, OPTIONAL - OUT UINTN *RomSize, OPTIONAL - OUT UINTN *Flags - ); - -/** - Load a legacy PC-AT OPROM on the PciHandle device. Return information - about how many disks were added by the OPROM and the shadow address and - size. DiskStart & DiskEnd are INT 13h drive letters. Thus 0x80 is C: - - @param[in] This The protocol instance pointer. - @param[in] PciHandle The PCI PC-AT OPROM from this devices ROM BAR will be loaded. - This value is NULL if RomImage is non-NULL. This is the normal - case. - @param[in] RomImage A PCI PC-AT ROM image. This argument is non-NULL if there is - no hardware associated with the ROM and thus no PciHandle, - otherwise is must be NULL. - Example is PXE base code. - @param[out] Flags The type of ROM discovered. Multiple bits can be set, as follows: - - 00 = No ROM. - - 01 = ROM found. - - 02 = ROM is a valid legacy ROM. - @param[out] DiskStart The disk number of first device hooked by the ROM. If DiskStart - is the same as DiskEnd no disked were hooked. - @param[out] DiskEnd disk number of the last device hooked by the ROM. - @param[out] RomShadowAddress Shadow address of PC-AT ROM. - @param[out] RomShadowSize Size of RomShadowAddress in bytes. - - @retval EFI_SUCCESS Thunk completed, see Regs for status. - @retval EFI_INVALID_PARAMETER PciHandle not found - -**/ -typedef -EFI_STATUS -(EFIAPI *EFI_LEGACY_BIOS_INSTALL_ROM)( - IN EFI_LEGACY_BIOS_PROTOCOL *This, - IN EFI_HANDLE PciHandle, - IN VOID **RomImage, - OUT UINTN *Flags, - OUT UINT8 *DiskStart, OPTIONAL - OUT UINT8 *DiskEnd, OPTIONAL - OUT VOID **RomShadowAddress, OPTIONAL - OUT UINT32 *ShadowedRomSize OPTIONAL - ); - -/** - This function attempts to traditionally boot the specified BootOption. If the EFI context has - been compromised, this function will not return. This procedure is not used for loading an EFI-aware - OS off a traditional device. The following actions occur: - - Get EFI SMBIOS data structures, convert them to a traditional format, and copy to - Compatibility16. - - Get a pointer to ACPI data structures and copy the Compatibility16 RSD PTR to F0000 block. - - Find the traditional SMI handler from a firmware volume and register the traditional SMI - handler with the EFI SMI handler. - - Build onboard IDE information and pass this information to the Compatibility16 code. - - Make sure all PCI Interrupt Line registers are programmed to match 8259. - - Reconfigure SIO devices from EFI mode (polled) into traditional mode (interrupt driven). - - Shadow all PCI ROMs. - - Set up BDA and EBDA standard areas before the legacy boot. - - Construct the Compatibility16 boot memory map and pass it to the Compatibility16 code. - - Invoke the Compatibility16 table function Compatibility16PrepareToBoot(). This - invocation causes a thunk into the Compatibility16 code, which sets all appropriate internal - data structures. The boot device list is a parameter. - - Invoke the Compatibility16 Table function Compatibility16Boot(). This invocation - causes a thunk into the Compatibility16 code, which does an INT19. - - If the Compatibility16Boot() function returns, then the boot failed in a graceful - manner--meaning that the EFI code is still valid. An ungraceful boot failure causes a reset because the state - of EFI code is unknown. - - @param[in] This The protocol instance pointer. - @param[in] BootOption The EFI Device Path from BootXXXX variable. - @param[in] LoadOptionSize The size of LoadOption in size. - @param[in] LoadOption LThe oadOption from BootXXXX variable. - - @retval EFI_DEVICE_ERROR Failed to boot from any boot device and memory is uncorrupted. Note: This function normally does not returns. It will either boot the OS or reset the system if memory has been "corrupted" by loading a boot sector and passing control to it. -**/ -typedef -EFI_STATUS -(EFIAPI *EFI_LEGACY_BIOS_BOOT)( - IN EFI_LEGACY_BIOS_PROTOCOL *This, - IN BBS_BBS_DEVICE_PATH *BootOption, - IN UINT32 LoadOptionsSize, - IN VOID *LoadOptions - ); - -/** - This function takes the Leds input parameter and sets/resets the BDA accordingly. - Leds is also passed to Compatibility16 code, in case any special processing is required. - This function is normally called from EFI Setup drivers that handle user-selectable - keyboard options such as boot with NUM LOCK on/off. This function does not - touch the keyboard or keyboard LEDs but only the BDA. - - @param[in] This The protocol instance pointer. - @param[in] Leds The status of current Scroll, Num & Cap lock LEDS: - - Bit 0 is Scroll Lock 0 = Not locked. - - Bit 1 is Num Lock. - - Bit 2 is Caps Lock. - - @retval EFI_SUCCESS The BDA was updated successfully. - -**/ -typedef -EFI_STATUS -(EFIAPI *EFI_LEGACY_BIOS_UPDATE_KEYBOARD_LED_STATUS)( - IN EFI_LEGACY_BIOS_PROTOCOL *This, - IN UINT8 Leds - ); - -/** - Retrieve legacy BBS info and assign boot priority. - - @param[in] This The protocol instance pointer. - @param[out] HddCount The number of HDD_INFO structures. - @param[out] HddInfo Onboard IDE controller information. - @param[out] BbsCount The number of BBS_TABLE structures. - @param[in,out] BbsTable Points to List of BBS_TABLE. - - @retval EFI_SUCCESS Tables were returned. - -**/ -typedef -EFI_STATUS -(EFIAPI *EFI_LEGACY_BIOS_GET_BBS_INFO)( - IN EFI_LEGACY_BIOS_PROTOCOL *This, - OUT UINT16 *HddCount, - OUT HDD_INFO **HddInfo, - OUT UINT16 *BbsCount, - IN OUT BBS_TABLE **BbsTable - ); - -/** - Assign drive number to legacy HDD drives prior to booting an EFI - aware OS so the OS can access drives without an EFI driver. - - @param[in] This The protocol instance pointer. - @param[out] BbsCount The number of BBS_TABLE structures - @param[out] BbsTable List of BBS entries - - @retval EFI_SUCCESS Drive numbers assigned. - -**/ -typedef -EFI_STATUS -(EFIAPI *EFI_LEGACY_BIOS_PREPARE_TO_BOOT_EFI)( - IN EFI_LEGACY_BIOS_PROTOCOL *This, - OUT UINT16 *BbsCount, - OUT BBS_TABLE **BbsTable - ); - -/** - To boot from an unconventional device like parties and/or execute - HDD diagnostics. - - @param[in] This The protocol instance pointer. - @param[in] Attributes How to interpret the other input parameters. - @param[in] BbsEntry The 0-based index into the BbsTable for the parent - device. - @param[in] BeerData A pointer to the 128 bytes of ram BEER data. - @param[in] ServiceAreaData A pointer to the 64 bytes of raw Service Area data. The - caller must provide a pointer to the specific Service - Area and not the start all Service Areas. - - @retval EFI_INVALID_PARAMETER If error. Does NOT return if no error. - -**/ -typedef -EFI_STATUS -(EFIAPI *EFI_LEGACY_BIOS_BOOT_UNCONVENTIONAL_DEVICE)( - IN EFI_LEGACY_BIOS_PROTOCOL *This, - IN UDC_ATTRIBUTES Attributes, - IN UINTN BbsEntry, - IN VOID *BeerData, - IN VOID *ServiceAreaData - ); - -/** - Shadow all legacy16 OPROMs that haven't been shadowed. - Warning: Use this with caution. This routine disconnects all EFI - drivers. If used externally, then the caller must re-connect EFI - drivers. - - @param[in] This The protocol instance pointer. - - @retval EFI_SUCCESS OPROMs were shadowed. - -**/ -typedef -EFI_STATUS -(EFIAPI *EFI_LEGACY_BIOS_SHADOW_ALL_LEGACY_OPROMS)( - IN EFI_LEGACY_BIOS_PROTOCOL *This - ); - -/** - Get a region from the LegacyBios for S3 usage. - - @param[in] This The protocol instance pointer. - @param[in] LegacyMemorySize The size of required region. - @param[in] Region The region to use. - 00 = Either 0xE0000 or 0xF0000 block. - - Bit0 = 1 0xF0000 block. - - Bit1 = 1 0xE0000 block. - @param[in] Alignment Address alignment. Bit mapped. The first non-zero - bit from right is alignment. - @param[out] LegacyMemoryAddress The Region Assigned - - @retval EFI_SUCCESS The Region was assigned. - @retval EFI_ACCESS_DENIED The function was previously invoked. - @retval Other The Region was not assigned. - -**/ -typedef -EFI_STATUS -(EFIAPI *EFI_LEGACY_BIOS_GET_LEGACY_REGION)( - IN EFI_LEGACY_BIOS_PROTOCOL *This, - IN UINTN LegacyMemorySize, - IN UINTN Region, - IN UINTN Alignment, - OUT VOID **LegacyMemoryAddress - ); - -/** - Get a region from the LegacyBios for Tiano usage. Can only be invoked once. - - @param[in] This The protocol instance pointer. - @param[in] LegacyMemorySize The size of data to copy. - @param[in] LegacyMemoryAddress The Legacy Region destination address. - Note: must be in region assigned by - LegacyBiosGetLegacyRegion. - @param[in] LegacyMemorySourceAddress The source of the data to copy. - - @retval EFI_SUCCESS The Region assigned. - @retval EFI_ACCESS_DENIED Destination was outside an assigned region. - -**/ -typedef -EFI_STATUS -(EFIAPI *EFI_LEGACY_BIOS_COPY_LEGACY_REGION)( - IN EFI_LEGACY_BIOS_PROTOCOL *This, - IN UINTN LegacyMemorySize, - IN VOID *LegacyMemoryAddress, - IN VOID *LegacyMemorySourceAddress - ); - -/// -/// Abstracts the traditional BIOS from the rest of EFI. The LegacyBoot() -/// member function allows the BDS to support booting a traditional OS. -/// EFI thunks drivers that make EFI bindings for BIOS INT services use -/// all the other member functions. -/// -struct _EFI_LEGACY_BIOS_PROTOCOL { - /// - /// Performs traditional software INT. See the Int86() function description. - /// - EFI_LEGACY_BIOS_INT86 Int86; - - /// - /// Performs a far call into Compatibility16 or traditional OpROM code. - /// - EFI_LEGACY_BIOS_FARCALL86 FarCall86; - - /// - /// Checks if a traditional OpROM exists for this device. - /// - EFI_LEGACY_BIOS_CHECK_ROM CheckPciRom; - - /// - /// Loads a traditional OpROM in traditional OpROM address space. - /// - EFI_LEGACY_BIOS_INSTALL_ROM InstallPciRom; - - /// - /// Boots a traditional OS. - /// - EFI_LEGACY_BIOS_BOOT LegacyBoot; - - /// - /// Updates BDA to reflect the current EFI keyboard LED status. - /// - EFI_LEGACY_BIOS_UPDATE_KEYBOARD_LED_STATUS UpdateKeyboardLedStatus; - - /// - /// Allows an external agent, such as BIOS Setup, to get the BBS data. - /// - EFI_LEGACY_BIOS_GET_BBS_INFO GetBbsInfo; - - /// - /// Causes all legacy OpROMs to be shadowed. - /// - EFI_LEGACY_BIOS_SHADOW_ALL_LEGACY_OPROMS ShadowAllLegacyOproms; - - /// - /// Performs all actions prior to boot. Used when booting an EFI-aware OS - /// rather than a legacy OS. - /// - EFI_LEGACY_BIOS_PREPARE_TO_BOOT_EFI PrepareToBootEfi; - - /// - /// Allows EFI to reserve an area in the 0xE0000 or 0xF0000 block. - /// - EFI_LEGACY_BIOS_GET_LEGACY_REGION GetLegacyRegion; - - /// - /// Allows EFI to copy data to the area specified by GetLegacyRegion. - /// - EFI_LEGACY_BIOS_COPY_LEGACY_REGION CopyLegacyRegion; - - /// - /// Allows the user to boot off an unconventional device such as a PARTIES partition. - /// - EFI_LEGACY_BIOS_BOOT_UNCONVENTIONAL_DEVICE BootUnconventionalDevice; -}; - -// -// Legacy BIOS needs to access memory in page 0 (0-4095), which is disabled if -// NULL pointer detection feature is enabled. Following macro can be used to -// enable/disable page 0 before/after accessing it. -// -#define ACCESS_PAGE0_CODE(statements) \ - do { \ - EFI_STATUS Status_; \ - EFI_GCD_MEMORY_SPACE_DESCRIPTOR Desc_; \ - \ - Desc_.Attributes = 0; \ - Status_ = gDS->GetMemorySpaceDescriptor (0, &Desc_); \ - ASSERT_EFI_ERROR(Status_); \ - if ((Desc_.Attributes & EFI_MEMORY_RP) != 0) { \ - Status_ = gDS->SetMemorySpaceAttributes ( \ - 0, \ - EFI_PAGES_TO_SIZE(1), \ - Desc_.Attributes & ~(UINT64)EFI_MEMORY_RP \ - ); \ - ASSERT_EFI_ERROR(Status_); \ - } \ - \ - { \ - statements; \ - } \ - \ - if ((Desc_.Attributes & EFI_MEMORY_RP) != 0) { \ - Status_ = gDS->SetMemorySpaceAttributes ( \ - 0, \ - EFI_PAGES_TO_SIZE(1), \ - Desc_.Attributes \ - ); \ - ASSERT_EFI_ERROR(Status_); \ - } \ - } while (FALSE) - -extern EFI_GUID gEfiLegacyBiosProtocolGuid; - -#endif diff --git a/IntelFrameworkPkg/Include/Protocol/LegacyBiosPlatform.h b/IntelFrameworkPkg/Include/Protocol/LegacyBiosPlatform.h deleted file mode 100644 index 0d309b5f1..000000000 --- a/IntelFrameworkPkg/Include/Protocol/LegacyBiosPlatform.h +++ /dev/null @@ -1,761 +0,0 @@ -/** @file - The EFI Legacy BIOS Patform Protocol is used to mate a Legacy16 - implementation with this EFI code. The EFI driver that produces - the Legacy BIOS protocol is generic and consumes this protocol. - A driver that matches the Legacy16 produces this protocol - -Copyright (c) 2007 - 2011, Intel Corporation. All rights reserved.
-This program and the accompanying materials are licensed and made available under -the terms and conditions of the BSD License that accompanies this distribution. -The full text of the license may be found at -http://opensource.org/licenses/bsd-license.php. - -THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, -WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. - - @par Revision Reference: - This protocol is defined in Framework for EFI Compatibility Support Module spec - Version 0.97. - -**/ - -#ifndef _EFI_LEGACY_BIOS_PLATFORM_H_ -#define _EFI_LEGACY_BIOS_PLATFORM_H_ - -/// -/// Legacy BIOS Platform depends on HDD_INFO and EFI_COMPATIBILITY16_TABLE that -/// are defined with the Legacy BIOS Protocol -/// -#include - -#define EFI_LEGACY_BIOS_PLATFORM_PROTOCOL_GUID \ - { \ - 0x783658a3, 0x4172, 0x4421, {0xa2, 0x99, 0xe0, 0x9, 0x7, 0x9c, 0xc, 0xb4 } \ - } - -typedef struct _EFI_LEGACY_BIOS_PLATFORM_PROTOCOL EFI_LEGACY_BIOS_PLATFORM_PROTOCOL; - -/** - This enum specifies the Mode param values for GetPlatformInfo() -**/ -typedef enum { - /// - /// This mode is invoked twice. The first invocation has LegacySegment and - /// LegacyOffset set to 0. The mode returns the MP table address in EFI memory, along with its size. - /// The second invocation has LegacySegment and LegacyOffset set to the location - /// in the 0xF0000 or 0xE0000 block to which the MP table is to be copied. The second - /// invocation allows any MP table address fixes to occur in the EFI memory copy of the - /// MP table. The caller, not EfiGetPlatformBinaryMpTable, copies the modified MP - /// table to the allocated region in 0xF0000 or 0xE0000 block after the second invocation. - /// - /// The function parameters associated with this mode are: - /// - /// Table Pointer to the MP table. - /// - /// TableSize Size in bytes of the MP table. - /// - /// Location Location to place table. 0x00. Either 0xE0000 or 0xF0000 64 KB blocks. - /// Bit 0 = 1 0xF0000 64 KB block. - /// Bit 1 = 1 0xE0000 64 KB block. - /// Multiple bits can be set. - /// - /// Alignment Bit-mapped address alignment granularity. - /// The first nonzero bit from the right is the address granularity. - /// - // LegacySegment Segment in which EfiCompatibility code will place the MP table. - /// - /// LegacyOffset Offset in which EfiCompatibility code will place the MP table. - /// - /// The return values associated with this mode are: - /// - /// EFI_SUCCESS The MP table was returned. - /// - /// EFI_UNSUPPORTED The MP table is not supported on this platform. - /// - EfiGetPlatformBinaryMpTable = 0, - /// - /// This mode returns a block of data. The content and usage is IBV or OEM defined. - /// OEMs or IBVs normally use this function for nonstandard Compatibility16 runtime soft - /// INTs. It is the responsibility of this routine to coalesce multiple OEM 16 bit functions, if - /// they exist, into one coherent package that is understandable by the Compatibility16 code. - /// This function is invoked twice. The first invocation has LegacySegment and - /// LegacyOffset set to 0. The function returns the table address in EFI memory, as well as its size. - /// The second invocation has LegacySegment and LegacyOffset set to the location - /// in the 0xF0000 or 0xE0000 block to which the data (table) is to be copied. The second - /// invocation allows any data (table) address fixes to occur in the EFI memory copy of - /// the table. The caller, not GetOemIntData(), copies the modified data (table) to the - /// allocated region in 0xF0000 or 0xE0000 block after the second invocation. - /// - /// The function parameters associated with this mode are: - /// - /// Table Pointer to OEM legacy 16 bit code or data. - /// - /// TableSize Size of data. - /// - /// Location Location to place table. 0x00. Either 0xE0000 or 0xF0000 64 KB blocks. - /// Bit 0 = 1 0xF0000 64 KB block. - /// Bit 1 = 1 0xE0000 64 KB block. - /// Multiple bits can be set. - /// - /// Alignment Bit mapped address alignment granularity. - /// The first nonzero bit from the right is the address granularity. - /// - /// LegacySegment Segment in which EfiCompatibility code will place the table or data. - /// - /// LegacyOffset Offset in which EfiCompatibility code will place the table or data. - /// - /// The return values associated with this mode are: - /// - /// EFI_SUCCESS The data was returned successfully. - /// - /// EFI_UNSUPPORTED Oem INT is not supported on this platform. - /// - EfiGetPlatformBinaryOemIntData = 1, - /// - /// This mode returns a block of data. The content and usage is IBV defined. OEMs or - /// IBVs normally use this mode for nonstandard Compatibility16 runtime 16 bit routines. It - /// is the responsibility of this routine to coalesce multiple OEM 16 bit functions, if they - /// exist, into one coherent package that is understandable by the Compatibility16 code. - /// - /// Example usage: A legacy mobile BIOS that has a pre-existing runtime - /// interface to return the battery status to calling applications. - /// - /// This mode is invoked twice. The first invocation has LegacySegment and - /// LegacyOffset set to 0. The mode returns the table address in EFI memory and its size. - /// The second invocation has LegacySegment and LegacyOffset set to the location - /// in the 0xF0000 or 0xE0000 block to which the table is to be copied. The second - /// invocation allows any table address fixes to occur in the EFI memory copy of the table. - /// The caller, not EfiGetPlatformBinaryOem16Data, copies the modified table to - /// the allocated region in 0xF0000 or 0xE0000 block after the second invocation. - /// - /// The function parameters associated with this mode are: - /// - /// Table Pointer to OEM legacy 16 bit code or data. - /// - /// TableSize Size of data. - /// - /// Location Location to place the table. 0x00. Either 0xE0000 or 0xF0000 64 KB blocks. - /// Bit 0 = 1 0xF0000 64 KB block. - /// Bit 1 = 1 0xE0000 64 KB block. - /// Multiple bits can be set. - /// - /// Alignment Bit mapped address alignment granularity. - /// The first nonzero bit from the right is the address granularity. - /// - /// LegacySegment Segment in which EfiCompatibility code will place the table or data. - /// - /// LegacyOffset Offset in which EfiCompatibility code will place the table or data. - /// - /// The return values associated with this mode are: - /// - /// EFI_SUCCESS The data was returned successfully. - /// - /// EFI_UNSUPPORTED Oem16 is not supported on this platform. - /// - EfiGetPlatformBinaryOem16Data = 2, -/// -/// This mode returns a block of data. The content and usage are IBV defined. OEMs or -/// IBVs normally use this mode for nonstandard Compatibility16 runtime 32 bit routines. It -/// is the responsibility of this routine to coalesce multiple OEM 32 bit functions, if they -/// exist, into one coherent package that is understandable by the Compatibility16 code. -/// -/// Example usage: A legacy mobile BIOS that has a pre existing runtime -/// interface to return the battery status to calling applications. -/// -/// This mode is invoked twice. The first invocation has LegacySegment and -/// LegacyOffset set to 0. The mode returns the table address in EFI memory and its size. -/// -/// The second invocation has LegacySegment and LegacyOffset set to the location -/// in the 0xF0000 or 0xE0000 block to which the table is to be copied. The second -/// invocation allows any table address fix ups to occur in the EFI memory copy of the table. -/// The caller, not EfiGetPlatformBinaryOem32Data, copies the modified table to -/// the allocated region in 0xF0000 or 0xE0000 block after the second invocation.. -/// -/// Note: There are two generic mechanisms by which this mode can be used. -/// Mechanism 1: This mode returns the data and the Legacy BIOS Protocol copies -/// the data into the F0000 or E0000 block in the Compatibility16 code. The -/// EFI_COMPATIBILITY16_TABLE entries Oem32Segment and Oem32Offset can -/// be viewed as two UINT16 entries. -/// Mechanism 2: This mode directly fills in the EFI_COMPATIBILITY16_TABLE with -/// a pointer to the INT15 E820 region containing the 32 bit code. It returns -/// EFI_UNSUPPORTED. The EFI_COMPATIBILITY16_TABLE entries, -/// Oem32Segment and Oem32Offset, can be viewed as two UINT16 entries or -/// as a single UINT32 entry as determined by the IBV. -/// -/// The function parameters associated with this mode are: -/// -/// TableSize Size of data. -/// -/// Location Location to place the table. 0x00 or 0xE0000 or 0xF0000 64 KB blocks. -/// Bit 0 = 1 0xF0000 64 KB block. -/// Bit 1 = 1 0xE0000 64 KB block. -/// Multiple bits can be set. -/// -/// Alignment Bit mapped address alignment granularity. -/// The first nonzero bit from the right is the address granularity. -/// -/// LegacySegment Segment in which EfiCompatibility code will place the table or data. -/// -/// LegacyOffset Offset in which EfiCompatibility code will place the table or data. -/// -/// The return values associated with this mode are: -/// EFI_SUCCESS The data was returned successfully. -/// EFI_UNSUPPORTED Oem32 is not supported on this platform. -/// -EfiGetPlatformBinaryOem32Data = 3, - /// - /// This mode returns a TPM binary image for the onboard TPM device. - /// - /// The function parameters associated with this mode are: - /// - /// Table TPM binary image for the onboard TPM device. - /// - /// TableSize Size of BinaryImage in bytes. - /// - /// Location Location to place the table. 0x00. Either 0xE0000 or 0xF0000 64 KB blocks. - /// Bit 0 = 1 0xF0000 64 KB block. - /// Bit 1 = 1 0xE0000 64 KB block. - /// Multiple bits can be set. - /// - /// Alignment Bit mapped address alignment granularity. - /// The first nonzero bit from the right is the address granularity. - /// - /// LegacySegment Segment in which EfiCompatibility code will place the table or data. - /// - /// LegacyOffset Offset in which EfiCompatibility code will place the table or data. - /// - /// The return values associated with this mode are: - /// - /// EFI_SUCCESS BinaryImage is valid. - /// - /// EFI_UNSUPPORTED Mode is not supported on this platform. - /// - /// EFI_NOT_FOUND No BinaryImage was found. - /// - EfiGetPlatformBinaryTpmBinary = 4, - /// - /// The mode finds the Compatibility16 Rom Image. - /// - /// The function parameters associated with this mode are: - /// - /// System ROM image for the platform. - /// - /// TableSize Size of Table in bytes. - /// - /// Location Ignored. - /// - /// Alignment Ignored. - /// - /// LegacySegment Ignored. - /// - /// LegacyOffset Ignored. - /// - /// The return values associated with this mode are: - /// - /// EFI_SUCCESS ROM image found. - /// - /// EFI_NOT_FOUND ROM not found. - /// - EfiGetPlatformBinarySystemRom = 5, - /// - /// This mode returns the Base address of PciExpress memory mapped configuration - /// address space. - /// - /// The function parameters associated with this mode are: - /// - /// Table System ROM image for the platform. - /// - /// TableSize Size of Table in bytes. - /// - /// Location Ignored. - /// - /// Alignment Ignored. - /// - /// LegacySegment Ignored. - /// - /// LegacyOffset Ignored. - /// - /// The return values associated with this mode are: - /// - /// EFI_SUCCESS Address is valid. - /// - /// EFI_UNSUPPORTED System does not PciExpress. - /// - EfiGetPlatformPciExpressBase = 6, - /// - EfiGetPlatformPmmSize = 7, - /// - EfiGetPlatformEndOpromShadowAddr = 8, - /// -} EFI_GET_PLATFORM_INFO_MODE; - -/** - This enum specifies the Mode param values for GetPlatformHandle(). -**/ -typedef enum { - /// - /// This mode returns the Compatibility16 policy for the device that should be the VGA - /// controller used during a Compatibility16 boot. - /// - /// The function parameters associated with this mode are: - /// - /// Type 0x00. - /// - /// HandleBuffer Buffer of all VGA handles found. - /// - /// HandleCount Number of VGA handles found. - /// - /// AdditionalData NULL. - /// - EfiGetPlatformVgaHandle = 0, - /// - /// This mode returns the Compatibility16 policy for the device that should be the IDE - /// controller used during a Compatibility16 boot. - /// - /// The function parameters associated with this mode are: - /// - /// Type 0x00. - /// - /// HandleBuffer Buffer of all IDE handles found. - /// - /// HandleCount Number of IDE handles found. - /// - /// AdditionalData Pointer to HddInfo. - /// Information about all onboard IDE controllers. - /// - EfiGetPlatformIdeHandle = 1, - /// - /// This mode returns the Compatibility16 policy for the device that should be the ISA bus - /// controller used during a Compatibility16 boot. - /// - /// The function parameters associated with this mode are: - /// - /// Type 0x00. - /// - /// HandleBuffer Buffer of all ISA bus handles found. - /// - /// HandleCount Number of ISA bus handles found. - /// - /// AdditionalData NULL. - /// - EfiGetPlatformIsaBusHandle = 2, - /// - /// This mode returns the Compatibility16 policy for the device that should be the USB - /// device used during a Compatibility16 boot. - /// - /// The function parameters associated with this mode are: - /// - /// Type 0x00. - /// - /// HandleBuffer Buffer of all USB handles found. - /// - /// HandleCount Number of USB bus handles found. - /// - /// AdditionalData NULL. - /// - EfiGetPlatformUsbHandle = 3 -} EFI_GET_PLATFORM_HANDLE_MODE; - -/** - This enum specifies the Mode param values for PlatformHooks(). - Note: Any OEM defined hooks start with 0x8000. -**/ -typedef enum { - /// - /// This mode allows any preprocessing before scanning OpROMs. - /// - /// The function parameters associated with this mode are: - /// - /// Type 0. - /// - /// DeviceHandle Handle of device OpROM is associated with. - /// - /// ShadowAddress Address where OpROM is shadowed. - /// - /// Compatibility16Table NULL. - /// - /// AdditionalData NULL. - /// - EfiPlatformHookPrepareToScanRom = 0, - /// - /// This mode shadows legacy OpROMS that may not have a physical device associated with - /// them. It returns EFI_SUCCESS if the ROM was shadowed. - /// - /// The function parameters associated with this mode are: - /// - /// Type 0. - /// - /// DeviceHandle 0. - /// - /// ShadowAddress First free OpROM area, after other OpROMs have been dispatched.. - /// - /// Compatibility16Table Pointer to the Compatability16 Table. - /// - /// AdditionalData NULL. - /// - EfiPlatformHookShadowServiceRoms= 1, - /// - /// This mode allows platform to perform any required operation after an OpROM has - /// completed its initialization. - /// - /// The function parameters associated with this mode are: - /// - /// Type 0. - /// - /// DeviceHandle Handle of device OpROM is associated with. - /// - /// ShadowAddress Address where OpROM is shadowed. - /// - /// Compatibility16Table NULL. - /// - /// AdditionalData NULL. - /// - EfiPlatformHookAfterRomInit = 2 -} EFI_GET_PLATFORM_HOOK_MODE; - -/// -/// This IRQ has not been assigned to PCI. -/// -#define PCI_UNUSED 0x00 -/// -/// This IRQ has been assigned to PCI. -/// -#define PCI_USED 0xFF -/// -/// This IRQ has been used by an SIO legacy device and cannot be used by PCI. -/// -#define LEGACY_USED 0xFE - -#pragma pack(1) - -typedef struct { - /// - /// IRQ for this entry. - /// - UINT8 Irq; - /// - /// Status of this IRQ. - /// - /// PCI_UNUSED 0x00. This IRQ has not been assigned to PCI. - /// - /// PCI_USED 0xFF. This IRQ has been assigned to PCI. - /// - /// LEGACY_USED 0xFE. This IRQ has been used by an SIO legacy - /// device and cannot be used by PCI. - /// - UINT8 Used; -} EFI_LEGACY_IRQ_PRIORITY_TABLE_ENTRY; - -// -// Define PIR table structures -// -#define EFI_LEGACY_PIRQ_TABLE_SIGNATURE SIGNATURE_32 ('$', 'P', 'I', 'R') - -typedef struct { - /// - /// $PIR. - /// - UINT32 Signature; - /// - /// 0x00. - /// - UINT8 MinorVersion; - /// - /// 0x01 for table version 1.0. - /// - UINT8 MajorVersion; - /// - /// 0x20 + RoutingTableEntries * 0x10. - /// - UINT16 TableSize; - /// - /// PCI interrupt router bus. - /// - UINT8 Bus; - /// - /// PCI interrupt router device/function. - /// - UINT8 DevFun; - /// - /// If nonzero, bit map of IRQs reserved for PCI. - /// - UINT16 PciOnlyIrq; - /// - /// Vendor ID of a compatible PCI interrupt router. - /// - UINT16 CompatibleVid; - /// - /// Device ID of a compatible PCI interrupt router. - /// - UINT16 CompatibleDid; - /// - /// If nonzero, a value passed directly to the IRQ miniport's Initialize function. - /// - UINT32 Miniport; - /// - /// Reserved for future usage. - /// - UINT8 Reserved[11]; - /// - /// This byte plus the sum of all other bytes in the LocalPirqTable equal 0x00. - /// - UINT8 Checksum; -} EFI_LEGACY_PIRQ_TABLE_HEADER; - - -typedef struct { - /// - /// If nonzero, a value assigned by the IBV. - /// - UINT8 Pirq; - /// - /// If nonzero, the IRQs that can be assigned to this device. - /// - UINT16 IrqMask; -} EFI_LEGACY_PIRQ_ENTRY; - -typedef struct { - /// - /// PCI bus of the entry. - /// - UINT8 Bus; - /// - /// PCI device of this entry. - /// - UINT8 Device; - /// - /// An IBV value and IRQ mask for PIRQ pins A through D. - /// - EFI_LEGACY_PIRQ_ENTRY PirqEntry[4]; - /// - /// If nonzero, the slot number assigned by the board manufacturer. - /// - UINT8 Slot; - /// - /// Reserved for future use. - /// - UINT8 Reserved; -} EFI_LEGACY_IRQ_ROUTING_ENTRY; - -#pragma pack() - - -/** - Finds the binary data or other platform information. - - @param This The protocol instance pointer. - @param Mode Specifies what data to return. See See EFI_GET_PLATFORM_INFO_MODE enum. - @param Table Mode specific. See EFI_GET_PLATFORM_INFO_MODE enum. - @param TableSize Mode specific. See EFI_GET_PLATFORM_INFO_MODE enum. - @param Location Mode specific. See EFI_GET_PLATFORM_INFO_MODE enum. - @param Alignment Mode specific. See EFI_GET_PLATFORM_INFO_MODE enum. - @param LegacySegment Mode specific. See EFI_GET_PLATFORM_INFO_MODE enum. - @param LegacyOffset Mode specific. See EFI_GET_PLATFORM_INFO_MODE enum. - - @retval EFI_SUCCESS Data returned successfully. - @retval EFI_UNSUPPORTED Mode is not supported on the platform. - @retval EFI_NOT_FOUND Binary image or table not found. - -**/ -typedef -EFI_STATUS -(EFIAPI *EFI_LEGACY_BIOS_PLATFORM_GET_PLATFORM_INFO)( - IN EFI_LEGACY_BIOS_PLATFORM_PROTOCOL *This, - IN EFI_GET_PLATFORM_INFO_MODE Mode, - OUT VOID **Table, - OUT UINTN *TableSize, - OUT UINTN *Location, - OUT UINTN *Alignment, - IN UINT16 LegacySegment, - IN UINT16 LegacyOffset - ); - -/** - Returns a buffer of handles for the requested subfunction. - - @param This The protocol instance pointer. - @param Mode Specifies what handle to return. See EFI_GET_PLATFORM_HANDLE_MODE enum. - @param Type Mode specific. See EFI_GET_PLATFORM_HANDLE_MODE enum. - @param HandleBuffer Mode specific. See EFI_GET_PLATFORM_HANDLE_MODE enum. - @param HandleCount Mode specific. See EFI_GET_PLATFORM_HANDLE_MODE enum. - @param AdditionalData Mode specific. See EFI_GET_PLATFORM_HANDLE_MODE enum. - - @retval EFI_SUCCESS Handle is valid. - @retval EFI_UNSUPPORTED Mode is not supported on the platform. - @retval EFI_NOT_FOUND Handle is not known. - -**/ -typedef -EFI_STATUS -(EFIAPI *EFI_LEGACY_BIOS_PLATFORM_GET_PLATFORM_HANDLE)( - IN EFI_LEGACY_BIOS_PLATFORM_PROTOCOL *This, - IN EFI_GET_PLATFORM_HANDLE_MODE Mode, - IN UINT16 Type, - OUT EFI_HANDLE **HandleBuffer, - OUT UINTN *HandleCount, - IN VOID **AdditionalData OPTIONAL - ); - -/** - Load and initialize the Legacy BIOS SMM handler. - - @param This The protocol instance pointer. - @param EfiToLegacy16BootTable A pointer to Legacy16 boot table. - - @retval EFI_SUCCESS SMM code loaded. - @retval EFI_DEVICE_ERROR SMM code failed to load - -**/ -typedef -EFI_STATUS -(EFIAPI *EFI_LEGACY_BIOS_PLATFORM_SMM_INIT)( - IN EFI_LEGACY_BIOS_PLATFORM_PROTOCOL *This, - IN VOID *EfiToLegacy16BootTable - ); - -/** - Allows platform to perform any required action after a LegacyBios operation. - Invokes the specific sub function specified by Mode. - - @param This The protocol instance pointer. - @param Mode Specifies what handle to return. See EFI_GET_PLATFORM_HOOK_MODE enum. - @param Type Mode specific. See EFI_GET_PLATFORM_HOOK_MODE enum. - @param DeviceHandle Mode specific. See EFI_GET_PLATFORM_HOOK_MODE enum. - @param ShadowAddress Mode specific. See EFI_GET_PLATFORM_HOOK_MODE enum. - @param Compatibility16Table Mode specific. See EFI_GET_PLATFORM_HOOK_MODE enum. - @param AdditionalData Mode specific. See EFI_GET_PLATFORM_HOOK_MODE enum. - - @retval EFI_SUCCESS The operation performed successfully. Mode specific. - @retval EFI_UNSUPPORTED Mode is not supported on the platform. - -**/ -typedef -EFI_STATUS -(EFIAPI *EFI_LEGACY_BIOS_PLATFORM_HOOKS)( - IN EFI_LEGACY_BIOS_PLATFORM_PROTOCOL *This, - IN EFI_GET_PLATFORM_HOOK_MODE Mode, - IN UINT16 Type, - IN EFI_HANDLE DeviceHandle, OPTIONAL - IN OUT UINTN *ShadowAddress, OPTIONAL - IN EFI_COMPATIBILITY16_TABLE *Compatibility16Table, OPTIONAL - OUT VOID **AdditionalData OPTIONAL - ); - -/** - Returns information associated with PCI IRQ routing. - This function returns the following information associated with PCI IRQ routing: - * An IRQ routing table and number of entries in the table. - * The $PIR table and its size. - * A list of PCI IRQs and the priority order to assign them. - - @param This The protocol instance pointer. - @param RoutingTable The pointer to PCI IRQ Routing table. - This location is the $PIR table minus the header. - @param RoutingTableEntries The number of entries in table. - @param LocalPirqTable $PIR table. - @param PirqTableSize $PIR table size. - @param LocalIrqPriorityTable A list of interrupts in priority order to assign. - @param IrqPriorityTableEntries The number of entries in the priority table. - - @retval EFI_SUCCESS Data was successfully returned. - -**/ -typedef -EFI_STATUS -(EFIAPI *EFI_LEGACY_BIOS_PLATFORM_GET_ROUTING_TABLE)( - IN EFI_LEGACY_BIOS_PLATFORM_PROTOCOL *This, - OUT VOID **RoutingTable, - OUT UINTN *RoutingTableEntries, - OUT VOID **LocalPirqTable, OPTIONAL - OUT UINTN *PirqTableSize, OPTIONAL - OUT VOID **LocalIrqPriorityTable, OPTIONAL - OUT UINTN *IrqPriorityTableEntries OPTIONAL - ); - -/** - Translates the given PIRQ accounting for bridge. - This function translates the given PIRQ back through all buses, if required, - and returns the true PIRQ and associated IRQ. - - @param This The protocol instance pointer. - @param PciBus The PCI bus number for this device. - @param PciDevice The PCI device number for this device. - @param PciFunction The PCI function number for this device. - @param Pirq Input is PIRQ reported by device, and output is true PIRQ. - @param PciIrq The IRQ already assigned to the PIRQ, or the IRQ to be - assigned to the PIRQ. - - @retval EFI_SUCCESS The PIRQ was translated. - -**/ -typedef -EFI_STATUS -(EFIAPI *EFI_LEGACY_BIOS_PLATFORM_TRANSLATE_PIRQ)( - IN EFI_LEGACY_BIOS_PLATFORM_PROTOCOL *This, - IN UINTN PciBus, - IN UINTN PciDevice, - IN UINTN PciFunction, - IN OUT UINT8 *Pirq, - OUT UINT8 *PciIrq - ); - -/** - Attempt to legacy boot the BootOption. If the EFI contexted has been - compromised this function will not return. - - @param This The protocol instance pointer. - @param BbsDevicePath The EFI Device Path from BootXXXX variable. - @param BbsTable The Internal BBS table. - @param LoadOptionSize The size of LoadOption in size. - @param LoadOption The LoadOption from BootXXXX variable - @param EfiToLegacy16BootTable A pointer to BootTable structure - - @retval EFI_SUCCESS Ready to boot. - -**/ -typedef -EFI_STATUS -(EFIAPI *EFI_LEGACY_BIOS_PLATFORM_PREPARE_TO_BOOT)( - IN EFI_LEGACY_BIOS_PLATFORM_PROTOCOL *This, - IN BBS_BBS_DEVICE_PATH *BbsDevicePath, - IN VOID *BbsTable, - IN UINT32 LoadOptionsSize, - IN VOID *LoadOptions, - IN VOID *EfiToLegacy16BootTable - ); - -/** - This protocol abstracts the platform portion of the traditional BIOS. -**/ -struct _EFI_LEGACY_BIOS_PLATFORM_PROTOCOL { - /// - /// Gets binary data or other platform information. - /// - EFI_LEGACY_BIOS_PLATFORM_GET_PLATFORM_INFO GetPlatformInfo; - /// - /// Returns a buffer of all handles matching the requested subfunction. - /// - EFI_LEGACY_BIOS_PLATFORM_GET_PLATFORM_HANDLE GetPlatformHandle; - /// - /// Loads and initializes the traditional BIOS SMM handler. - EFI_LEGACY_BIOS_PLATFORM_SMM_INIT SmmInit; - /// - /// Allows platform to perform any required actions after a LegacyBios operation. - /// - EFI_LEGACY_BIOS_PLATFORM_HOOKS PlatformHooks; - /// - /// Gets $PIR table. - EFI_LEGACY_BIOS_PLATFORM_GET_ROUTING_TABLE GetRoutingTable; - /// - /// Translates the given PIRQ to the final value after traversing any PCI bridges. - /// - EFI_LEGACY_BIOS_PLATFORM_TRANSLATE_PIRQ TranslatePirq; - /// - /// Final platform function before the system attempts to boot to a traditional OS. - /// - EFI_LEGACY_BIOS_PLATFORM_PREPARE_TO_BOOT PrepareToBoot; -}; - -extern EFI_GUID gEfiLegacyBiosPlatformProtocolGuid; - -#endif diff --git a/IntelFrameworkPkg/Include/Protocol/LegacyInterrupt.h b/IntelFrameworkPkg/Include/Protocol/LegacyInterrupt.h deleted file mode 100644 index 8b2d56b2d..000000000 --- a/IntelFrameworkPkg/Include/Protocol/LegacyInterrupt.h +++ /dev/null @@ -1,128 +0,0 @@ -/** @file - This protocol abstracts the PIRQ programming from the generic EFI Compatibility Support Modules (CSMs). - -Copyright (c) 2007 - 2010, Intel Corporation. All rights reserved.
-This program and the accompanying materials are licensed and made available under -the terms and conditions of the BSD License that accompanies this distribution. -The full text of the license may be found at -http://opensource.org/licenses/bsd-license.php. - -THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, -WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. - - @par Revision Reference: - This protocol is defined in Framework for the EFI Compatibility Support Module specification. - Version 0.97. - -**/ - -#ifndef _EFI_LEGACY_INTERRUPT_H_ -#define _EFI_LEGACY_INTERRUPT_H_ - - -#define EFI_LEGACY_INTERRUPT_PROTOCOL_GUID \ - { \ - 0x31ce593d, 0x108a, 0x485d, {0xad, 0xb2, 0x78, 0xf2, 0x1f, 0x29, 0x66, 0xbe } \ - } - -typedef struct _EFI_LEGACY_INTERRUPT_PROTOCOL EFI_LEGACY_INTERRUPT_PROTOCOL; - -/** - Get the number of PIRQs this hardware supports. - - @param This The protocol instance pointer. - @param NumberPirsq The number of PIRQs that are supported. - - @retval EFI_SUCCESS The number of PIRQs was returned successfully. - -**/ -typedef -EFI_STATUS -(EFIAPI *EFI_LEGACY_INTERRUPT_GET_NUMBER_PIRQS)( - IN EFI_LEGACY_INTERRUPT_PROTOCOL *This, - OUT UINT8 *NumberPirqs - ); - -/** - Gets the PCI location associated with this protocol. - - @param This The Protocol instance pointer. - @param Bus The PCI Bus. - @param Device The PCI Device. - @param Function The PCI Function. - - @retval EFI_SUCCESS The Bus, Device, and Function were returned successfully. - -**/ -typedef -EFI_STATUS -(EFIAPI *EFI_LEGACY_INTERRUPT_GET_LOCATION)( - IN EFI_LEGACY_INTERRUPT_PROTOCOL *This, - OUT UINT8 *Bus, - OUT UINT8 *Device, - OUT UINT8 *Function - ); - -/** - Read the PIRQ register and return the data - - @param This The protocol instance pointer. - @param PirqNumber The PIRQ register to read. - @param PirqData The data read. - - @retval EFI_SUCCESS The data was read. - @retval EFI_INVALID_PARAMETER Invalid PIRQ number. - -**/ -typedef -EFI_STATUS -(EFIAPI *EFI_LEGACY_INTERRUPT_READ_PIRQ)( - IN EFI_LEGACY_INTERRUPT_PROTOCOL *This, - IN UINT8 PirqNumber, - OUT UINT8 *PirqData - ); - -/** - Write the specified PIRQ register with the given data. - - @param This The protocol instance pointer. - @param PirqNumber A PIRQ register to read. - @param PirqData The data to write. - - @retval EFI_SUCCESS The PIRQ was programmed. - @retval EFI_INVALID_PARAMETER Invalid PIRQ number. - -**/ -typedef -EFI_STATUS -(EFIAPI *EFI_LEGACY_INTERRUPT_WRITE_PIRQ)( - IN EFI_LEGACY_INTERRUPT_PROTOCOL *This, - IN UINT8 PirqNumber, - IN UINT8 PirqData - ); - -struct _EFI_LEGACY_INTERRUPT_PROTOCOL { - /// - /// Gets the number of PIRQs supported. - /// - EFI_LEGACY_INTERRUPT_GET_NUMBER_PIRQS GetNumberPirqs; - - /// - /// Gets the PCI bus, device, and function that is associated with this protocol. - /// - EFI_LEGACY_INTERRUPT_GET_LOCATION GetLocation; - - /// - /// Reads the indicated PIRQ register. - /// - EFI_LEGACY_INTERRUPT_READ_PIRQ ReadPirq; - - /// - /// Writes to the indicated PIRQ register. - /// - EFI_LEGACY_INTERRUPT_WRITE_PIRQ WritePirq; -}; - -extern EFI_GUID gEfiLegacyInterruptProtocolGuid; - -#endif diff --git a/IntelFrameworkPkg/Include/Protocol/LegacyRegion.h b/IntelFrameworkPkg/Include/Protocol/LegacyRegion.h deleted file mode 100644 index b18e8bc40..000000000 --- a/IntelFrameworkPkg/Include/Protocol/LegacyRegion.h +++ /dev/null @@ -1,125 +0,0 @@ -/** @file - This protocol manages the legacy memory regions between 0xc0000 - 0xfffff. - -Copyright (c) 2007 - 2010, Intel Corporation. All rights reserved.
-This program and the accompanying materials are licensed and made available under -the terms and conditions of the BSD License that accompanies this distribution. -The full text of the license may be found at -http://opensource.org/licenses/bsd-license.php. - -THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, -WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. - - @par Revision Reference: - This protocol is defined in Framework for EFI Compatibility Support Module spec - Version 0.97. - -**/ - -#ifndef _EFI_LEGACY_REGION_H_ -#define _EFI_LEGACY_REGION_H_ - - -#define EFI_LEGACY_REGION_PROTOCOL_GUID \ - { \ - 0xfc9013a, 0x568, 0x4ba9, {0x9b, 0x7e, 0xc9, 0xc3, 0x90, 0xa6, 0x60, 0x9b } \ - } - -typedef struct _EFI_LEGACY_REGION_PROTOCOL EFI_LEGACY_REGION_PROTOCOL; - -/** - Sets hardware to decode or not decode a region. - - @param This Indicates the EFI_LEGACY_REGION_PROTOCOL instance - @param Start The start of the region to decode. - @param Length The size in bytes of the region. - @param On The decode/nondecode flag. - - @retval EFI_SUCCESS The decode range successfully changed. - -**/ -typedef -EFI_STATUS -(EFIAPI *EFI_LEGACY_REGION_DECODE)( - IN EFI_LEGACY_REGION_PROTOCOL *This, - IN UINT32 Start, - IN UINT32 Length, - IN BOOLEAN *On - ); - -/** - Sets a region to read only. - - @param This Indicates the EFI_LEGACY_REGION_PROTOCOL instance. - @param Start The start of region to lock. - @param Length The size in bytes of the region. - @param Granularity Lock attribute affects this granularity in bytes. - - @retval EFI_SUCCESS The region was made read only. - -**/ -typedef -EFI_STATUS -(EFIAPI *EFI_LEGACY_REGION_LOCK)( - IN EFI_LEGACY_REGION_PROTOCOL *This, - IN UINT32 Start, - IN UINT32 Length, - OUT UINT32 *Granularity OPTIONAL - ); - -/** - Sets a region to read only and ensures that flash is locked from being - inadvertently modified. - - @param This Indicates the EFI_LEGACY_REGION_PROTOCOL instance - @param Start The start of region to lock. - @param Length The size in bytes of the region. - @param Granularity Lock attribute affects this granularity in bytes. - - @retval EFI_SUCCESS The region was made read only and flash is locked. - -**/ -typedef -EFI_STATUS -(EFIAPI *EFI_LEGACY_REGION_BOOT_LOCK)( - IN EFI_LEGACY_REGION_PROTOCOL *This, - IN UINT32 Start, - IN UINT32 Length, - OUT UINT32 *Granularity OPTIONAL - ); - -/** - Sets a region to read-write. - - @param This Indicates the EFI_LEGACY_REGION_PROTOCOL instance - @param Start The start of region to lock. - @param Length The size in bytes of the region. - @param Granularity Lock attribute affects this granularity in bytes. - - @retval EFI_SUCCESS The region was successfully made read-write. - -**/ -typedef -EFI_STATUS -(EFIAPI *EFI_LEGACY_REGION_UNLOCK)( - IN EFI_LEGACY_REGION_PROTOCOL *This, - IN UINT32 Start, - IN UINT32 Length, - OUT UINT32 *Granularity OPTIONAL - ); - -/** - Abstracts the hardware control of the physical address region 0xC0000-C0xFFFFF - for the traditional BIOS. -**/ -struct _EFI_LEGACY_REGION_PROTOCOL { - EFI_LEGACY_REGION_DECODE Decode; ///< Specifies a region for the chipset to decode. - EFI_LEGACY_REGION_LOCK Lock; ///< Makes the specified OpROM region read only or locked. - EFI_LEGACY_REGION_BOOT_LOCK BootLock; ///< Sets a region to read only and ensures tat flash is locked from. - ///< inadvertent modification. - EFI_LEGACY_REGION_UNLOCK UnLock; ///< Makes the specified OpROM region read-write or unlocked. -}; - -extern EFI_GUID gEfiLegacyRegionProtocolGuid; - -#endif diff --git a/IntelFrameworkPkg/Include/Protocol/SectionExtraction.h b/IntelFrameworkPkg/Include/Protocol/SectionExtraction.h deleted file mode 100644 index ef1d24ae5..000000000 --- a/IntelFrameworkPkg/Include/Protocol/SectionExtraction.h +++ /dev/null @@ -1,161 +0,0 @@ -/** @file - This file declares Section Extraction Protocol. - - This interface provides a means of decoding a set of sections into a linked list of - leaf sections. This provides for an extensible and flexible file format. - -Copyright (c) 2006 - 2010, Intel Corporation. All rights reserved.
-This program and the accompanying materials are licensed and made available under -the terms and conditions of the BSD License that accompanies this distribution. -The full text of the license may be found at -http://opensource.org/licenses/bsd-license.php. - -THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, -WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. - - @par Revision Reference: - This protocol is defined in Firmware Volume Specification. - Version 0.9. - -**/ - -#ifndef _SECTION_EXTRACTION_PROTOCOL_H_ -#define _SECTION_EXTRACTION_PROTOCOL_H_ - -// -// Protocol GUID definition -// -#define EFI_SECTION_EXTRACTION_PROTOCOL_GUID \ - { \ - 0x448F5DA4, 0x6DD7, 0x4FE1, {0x93, 0x07, 0x69, 0x22, 0x41, 0x92, 0x21, 0x5D } \ - } - -typedef struct _EFI_SECTION_EXTRACTION_PROTOCOL EFI_SECTION_EXTRACTION_PROTOCOL; - -// -// Protocol member functions -// -/** - Creates and returns a new section stream handle to represent the new section stream. - - @param This Indicates the EFI_SECTION_EXTRACTION_PROTOCOL instance. - @param SectionStreamLength The size in bytes of the section stream. - @param SectionStream A buffer containing the new section stream. - @param SectionStreamHandle A pointer to a caller-allocated UINTN that, - on output, contains the new section stream handle. - - @retval EFI_SUCCESS The SectionStream was successfully processed, and - the section stream handle was returned. - @retval EFI_OUT_OF_RESOURCES The system has insufficient resources to - process the request. - @retval EFI_INVALID_PARAMETER The section stream may be corrupt or the value - of SectionStreamLength may be incorrect. - -**/ -typedef -EFI_STATUS -(EFIAPI *EFI_OPEN_SECTION_STREAM)( - IN EFI_SECTION_EXTRACTION_PROTOCOL *This, - IN UINTN SectionStreamLength, - IN VOID *SectionStream, - OUT UINTN *SectionStreamHandle - ); - -/** - Reads and returns a single section from a section stream. - - @param This Indicates the EFI_SECTION_EXTRACTION_PROTOCOL instance. - @param SectionStreamHandle Indicates from which section stream to read. - @param SectionType The pointer to an EFI_SECTION_TYPE. If SectionType == NULL, - the contents of the entire section stream are returned - in Buffer. If SectionType is not NULL, only the - requested section is returned. EFI_SECTION_ALL - matches all section types and can be used as a - wild card to extract all sections in order. - @param SectionDefinitionGuid The pointer to an EFI_GUID. If SectionType == - EFI_SECTION_GUID_DEFINED, SectionDefinitionGuid - indicates what section GUID to search for. If - SectionType !=EFI_SECTION_GUID_DEFINED, then - SectionDefinitionGuid is unused and is ignored. - @param SectionInstance Indicates which instance of the requested section - type to return when SectionType is not NULL. - @param SectionStreamHandle A pointer to a caller-allocated UINTN that, on output, - contains the new section stream handle. - @param Buffer Pointer to a pointer to a buffer in which the section - contents are returned. - @param BufferSize A pointer to a caller-allocated UINTN. - @param AuthenticationStatus A pointer to a caller-allocated UINT32 in - which any meta-data from encapsulation GUID-defined - sections is returned. - - @retval EFI_SUCCESS The SectionStream was successfully processed and - the section contents were returned in Buffer. - @retval EFI_PROTOCOL_ERROR A GUID-defined section was encountered inthe section - stream with its EFI_GUIDED_SECTION_PROCESSING_REQUIRED - bit set, but there was no corresponding GUIDed - Section Extraction Protocol in the handle database. - @retval EFI_NOT_FOUND An error was encountered when parsing the SectionStream, - which indicates that the SectionStream is not - correctly formatted. Or, the requested section does not exist. - @retval EFI_OUT_OF_RESOURCES The system has insufficient resources to process - the request. - @retval EFI_INVALID_PARAMETER The SectionStreamHandle does not exist. - @retval EFI_WARN_BUFFER_TOO_SMALL The size of the input buffer is insufficient - to contain the requested section. The input - buffer is filled and section contents are truncated. - -**/ -typedef -EFI_STATUS -(EFIAPI *EFI_GET_SECTION)( - IN EFI_SECTION_EXTRACTION_PROTOCOL *This, - IN UINTN SectionStreamHandle, - IN EFI_SECTION_TYPE *SectionType, - IN EFI_GUID *SectionDefinitionGuid, - IN UINTN SectionInstance, - IN VOID **Buffer, - IN OUT UINTN *BufferSize, - OUT UINT32 *AuthenticationStatus - ); - -/** - Deletes a section stream handle and returns all associated resources to the system. - - @param This Indicates the EFI_SECTION_EXTRACTION_PROTOCOL instance. - @param SectionStreamHandle Indicates the section stream to close. - @retval EFI_SUCCESS The SectionStream was successfully processed and - the section stream handle was returned. - @retval EFI_INVALID_PARAMETER The SectionStreamHandle does not exist. - -**/ -typedef -EFI_STATUS -(EFIAPI *EFI_CLOSE_SECTION_STREAM)( - IN EFI_SECTION_EXTRACTION_PROTOCOL *This, - IN UINTN SectionStreamHandle - ); - -// -// Protocol definition -// -struct _EFI_SECTION_EXTRACTION_PROTOCOL { - /// - /// Takes a bounded stream of sections and returns a section stream handle. - /// - EFI_OPEN_SECTION_STREAM OpenSectionStream; - - /// - /// Given a section stream handle, retrieves the requested section and - /// meta-data from the section stream. - /// - EFI_GET_SECTION GetSection; - - /// - /// Given a section stream handle, closes the section stream. - /// - EFI_CLOSE_SECTION_STREAM CloseSectionStream; -}; - -extern EFI_GUID gEfiSectionExtractionProtocolGuid; - -#endif diff --git a/IntelFrameworkPkg/Include/Protocol/SmmAccess.h b/IntelFrameworkPkg/Include/Protocol/SmmAccess.h deleted file mode 100644 index 16d66b93a..000000000 --- a/IntelFrameworkPkg/Include/Protocol/SmmAccess.h +++ /dev/null @@ -1,130 +0,0 @@ -/** @file - This file declares the SMM SMRAM Access abstraction protocol, which is used to control - the visibility of the SMRAM on the platform. The expectation is - that the north bridge or memory controller would publish this protocol. - For example, the Memory Controller Hub (MCH) has the hardware provision for this - type of control. Because of the protected, distinguished class of memory for IA-32 - systems, the expectation is that this protocol would be supported only on IA-32 systems. - -Copyright (c) 2007 - 2010, Intel Corporation. All rights reserved.
-This program and the accompanying materials are licensed and made available under -the terms and conditions of the BSD License that accompanies this distribution. -The full text of the license may be found at -http://opensource.org/licenses/bsd-license.php. - -THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, -WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. - - @par Revision Reference: - This Protocol is defined in Framework of EFI SMM Core Interface Spec - Version 0.9. -**/ - -#ifndef _SMM_ACCESS_H_ -#define _SMM_ACCESS_H_ - -#include - -typedef struct _EFI_SMM_ACCESS_PROTOCOL EFI_SMM_ACCESS_PROTOCOL; - -#define EFI_SMM_ACCESS_PROTOCOL_GUID \ - { \ - 0x3792095a, 0xe309, 0x4c1e, {0xaa, 0x01, 0x85, 0xf5, 0x65, 0x5a, 0x17, 0xf1 } \ - } - -// -// SMM Access specification Member Function -// -/** - Opens the SMRAM area to be accessible by a boot-service driver. - - @param This The EFI_SMM_ACCESS_PROTOCOL instance. - @param DescriptorIndex Indicates that the driver wishes to open - the memory tagged by this index. - - @retval EFI_SUCCESS The operation was successful. - @retval EFI_INVALID_PARAMETER The given DescriptorIndex is not supported. - @retval EFI_NOT_STARTED The SMM base service has not been initialized. - -**/ -typedef -EFI_STATUS -(EFIAPI *EFI_SMM_OPEN)( - IN EFI_SMM_ACCESS_PROTOCOL *This, - UINTN DescriptorIndex - ); - -/** - Inhibits access to the SMRAM. - - @param This The EFI_SMM_ACCESS_PROTOCOL instance. - @param DescriptorIndex Indicates that the driver wishes to close - the memory tagged by this index. - - @retval EFI_SUCCESS The operation was successful. - @retval EFI_DEVICE_ERROR The given DescriptorIndex is not open. - @retval EFI_INVALID_PARAMETER The given DescriptorIndex is not supported. - @retval EFI_NOT_STARTED The SMM base service has not been initialized. - -**/ -typedef -EFI_STATUS -(EFIAPI *EFI_SMM_CLOSE)( - IN EFI_SMM_ACCESS_PROTOCOL *This, - UINTN DescriptorIndex - ); - -/** - Inhibits access to the SMRAM. - - @param This The EFI_SMM_ACCESS_PROTOCOL instance. - @param DescriptorIndex Indicates that the driver wishes to lock - the memory tagged by this index. - - @retval EFI_SUCCESS The operation was successful. - @retval EFI_DEVICE_ERROR The given DescriptorIndex is not open. - @retval EFI_INVALID_PARAMETER The given DescriptorIndex is not supported. - @retval EFI_NOT_STARTED The SMM base service has not been initialized. - -**/ -typedef -EFI_STATUS -(EFIAPI *EFI_SMM_LOCK)( - IN EFI_SMM_ACCESS_PROTOCOL *This, - UINTN DescriptorIndex - ); - -/** - Queries the memory controller for the possible regions that will support SMRAM. - - @param This The EFI_SMM_ACCESS_PROTOCOL instance. - @param SmramMapSize A pointer to the size, in bytes, of the SmramMemoryMap buffer. - @param SmramMap A pointer to the buffer in which firmware places the current memory map. - - @retval EFI_SUCCESS The chipset supported the given resource. - @retval EFI_BUFFER_TOO_SMALL The SmramMap parameter was too small. - -**/ -typedef -EFI_STATUS -(EFIAPI *EFI_SMM_CAPABILITIES)( - IN EFI_SMM_ACCESS_PROTOCOL *This, - IN OUT UINTN *SmramMapSize, - IN OUT EFI_SMRAM_DESCRIPTOR *SmramMap - ); - -/** - This protocol is used to control the visibility of the SMRAM on the platform. -**/ -struct _EFI_SMM_ACCESS_PROTOCOL { - EFI_SMM_OPEN Open; ///< Opens the SMRAM. - EFI_SMM_CLOSE Close; ///< Closes the SMRAM. - EFI_SMM_LOCK Lock; ///< Locks the SMRAM. - EFI_SMM_CAPABILITIES GetCapabilities; ///< Gets information on possible SMRAM regions. - BOOLEAN LockState; ///< Indicates the current state of the SMRAM. Set to TRUE if any region is locked. - BOOLEAN OpenState; ///< Indicates the current state of the SMRAM. Set to TRUE if any region is open. -}; - -extern EFI_GUID gEfiSmmAccessProtocolGuid; - -#endif diff --git a/IntelFrameworkPkg/Include/Protocol/SmmBase.h b/IntelFrameworkPkg/Include/Protocol/SmmBase.h deleted file mode 100644 index 0429c574d..000000000 --- a/IntelFrameworkPkg/Include/Protocol/SmmBase.h +++ /dev/null @@ -1,310 +0,0 @@ -/** @file - This file declares SMM Base abstraction protocol. - This protocol is used to install SMM handlers for support of subsequent SMI/PMI activations. This - protocol is available on both IA-32 and Itanium-based systems. - - The EFI_SMM_BASE_PROTOCOL is a set of services that is exported by a processor device. It is - a required protocol for the platform processor. This protocol can be used in both boot services and - runtime mode. However, only the following member functions need to exist during runtime: - - InSmm() - - Communicate() - This protocol is responsible for registering the handler services. The order in which the handlers are - executed is prescribed only with respect to the MakeLast flag in the RegisterCallback() - service. The driver exports these registration and unregistration services in boot services mode, but - the registered handlers will execute through the preboot and runtime. The only way to change the - behavior of a registered driver after ExitBootServices() has been invoked is to use some - private communication mechanism with the driver to order it to quiesce. This model permits typical - use cases, such as invoking the handler to enter ACPI mode, where the OS loader would make this - call before boot services are terminated. On the other hand, handlers for services such as chipset - workarounds for the century rollover in CMOS should provide commensurate services throughout - preboot and OS runtime. - -Copyright (c) 2007 - 2010, Intel Corporation. All rights reserved.
-This program and the accompanying materials are licensed and made available under -the terms and conditions of the BSD License that accompanies this distribution. -The full text of the license may be found at -http://opensource.org/licenses/bsd-license.php. - -THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, -WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. - - @par Revision Reference: - This Protocol is defined in Framework of EFI SMM Core Interface Spec - Version 0.9. - -**/ - -#ifndef _SMM_BASE_H_ -#define _SMM_BASE_H_ - -// -// Share some common definitions with PI SMM -// -#include -#include - -/// -/// Global ID for the EFI_SMM_BASE_PROTOCOL. -/// -#define EFI_SMM_BASE_PROTOCOL_GUID \ - { \ - 0x1390954D, 0xda95, 0x4227, {0x93, 0x28, 0x72, 0x82, 0xc2, 0x17, 0xda, 0xa8 } \ - } - -/// -/// Forward declaration for EFI_SMM_BASE_PROTOCOL. -/// -typedef struct _EFI_SMM_BASE_PROTOCOL EFI_SMM_BASE_PROTOCOL; - -/// -/// EFI SMM Handler return codes -/// -///@{ -#define EFI_HANDLER_SUCCESS 0x0000 -#define EFI_HANDLER_CRITICAL_EXIT 0x0001 -#define EFI_HANDLER_SOURCE_QUIESCED 0x0002 -#define EFI_HANDLER_SOURCE_PENDING 0x0003 -///@} - -/** - Entry Point to Callback service - - @param[in] SmmImageHandle A handle allocated by the SMM infrastructure code - to uniquely designate a specific DXE SMM driver. - @param[in] CommunicationBuffer A pointer to a collection of data in memory - that will be conveyed from a non-SMM environment - into an SMM environment. The buffer must be - contiguous and physically mapped, and must be - a physical address. - @param[in] SourceSize The size of the CommunicationBuffer. - - @return Status code - -**/ -typedef -EFI_STATUS -(EFIAPI *EFI_SMM_CALLBACK_ENTRY_POINT)( - IN EFI_HANDLE SmmImageHandle, - IN OUT VOID *CommunicationBuffer OPTIONAL, - IN OUT UINTN *SourceSize OPTIONAL - ); - -// -// SMM Base Protocol Definition -// -/** - Register a given driver into SMRAM. This is the equivalent of performing - the LoadImage/StartImage into System Management Mode. - - @param[in] This The protocol instance pointer. - @param[in] FilePath The location of the image to be installed as the handler. - @param[in] SourceBuffer An optional source buffer in case the image file - is in memory. - @param[in] SourceSize The size of the source image file, if in memory. - @param[out] ImageHandle The handle that the base driver uses to decode - the handler. Unique among SMM handlers only; - not unique across DXE/EFI. - @param[in] LegacyIA32Binary An optional parameter specifying that the associated - file is a real-mode IA-32 binary. - - @retval EFI_SUCCESS The operation was successful. - @retval EFI_OUT_OF_RESOURCES There were no additional SMRAM resources to load the handler - @retval EFI_UNSUPPORTED This platform does not support 16-bit handlers. - @retval EFI_UNSUPPORTED The platform is in runtime. - @retval EFI_INVALID_PARAMETER The handlers were not the correct image type. - -**/ -typedef -EFI_STATUS -(EFIAPI *EFI_SMM_REGISTER_HANDLER)( - IN EFI_SMM_BASE_PROTOCOL *This, - IN EFI_DEVICE_PATH_PROTOCOL *FilePath, - IN VOID *SourceBuffer OPTIONAL, - IN UINTN SourceSize, - OUT EFI_HANDLE *ImageHandle, - IN BOOLEAN LegacyIA32Binary OPTIONAL - ); - -/** - Removes a handler from execution within SMRAM. This is the equivalent of performing - the UnloadImage in System Management Mode. - - @param[in] This The protocol instance pointer. - @param[in] ImageHandle The handler to be removed. - - @retval EFI_SUCCESS The operation was successful. - @retval EFI_INVALID_PARAMETER The handler did not exist. - @retval EFI_UNSUPPORTED The platform is in runtime. - -**/ -typedef -EFI_STATUS -(EFIAPI *EFI_SMM_UNREGISTER_HANDLER)( - IN EFI_SMM_BASE_PROTOCOL *This, - IN EFI_HANDLE ImageHandle - ); - -/** - The SMM Inter-module Communicate Service Communicate() function - provides a service to send/receive messages from a registered - EFI service. The BASE protocol driver is responsible for doing - any of the copies such that the data lives in boot-service-accessible RAM. - - @param[in] This The protocol instance pointer. - @param[in] ImageHandle The handle of the registered driver. - @param[in,out] CommunicationBuffer The pointer to the buffer to convey into SMRAM. - @param[in,out] SourceSize The size of the data buffer being passed in. - On exit, the size of data being returned. - Zero if the handler does not wish to reply with any data. - - @retval EFI_SUCCESS The message was successfully posted. - @retval EFI_INVALID_PARAMETER The buffer was NULL. - -**/ -typedef -EFI_STATUS -(EFIAPI *EFI_SMM_COMMUNICATE)( - IN EFI_SMM_BASE_PROTOCOL *This, - IN EFI_HANDLE ImageHandle, - IN OUT VOID *CommunicationBuffer, - IN OUT UINTN *SourceSize - ); - -/** - Register a callback to execute within SMM. - This allows receipt of messages created with EFI_SMM_BASE_PROTOCOL.Communicate(). - - @param[in] This Protocol instance pointer. - @param[in] SmmImageHandle Handle of the callback service. - @param[in] CallbackAddress Address of the callback service. - @param[in] MakeLast If present, will stipulate that the handler is posted to - be executed last in the dispatch table. - @param[in] FloatingPointSave An optional parameter that informs the - EFI_SMM_ACCESS_PROTOCOL Driver core if it needs to save - the floating point register state. If any handler - require this, the state will be saved for all handlers. - - @retval EFI_SUCCESS The operation was successful. - @retval EFI_OUT_OF_RESOURCES Not enough space in the dispatch queue. - @retval EFI_UNSUPPORTED The platform is in runtime. - @retval EFI_UNSUPPORTED The caller is not in SMM. - -**/ -typedef -EFI_STATUS -(EFIAPI *EFI_SMM_CALLBACK_SERVICE)( - IN EFI_SMM_BASE_PROTOCOL *This, - IN EFI_HANDLE SmmImageHandle, - IN EFI_SMM_CALLBACK_ENTRY_POINT CallbackAddress, - IN BOOLEAN MakeLast OPTIONAL, - IN BOOLEAN FloatingPointSave OPTIONAL - ); - -/** - The SmmAllocatePool() function allocates a memory region of Size bytes from memory of - type PoolType and returns the address of the allocated memory in the location referenced - by Buffer. This function allocates pages from EFI SMRAM Memory as needed to grow the - requested pool type. All allocations are eight-byte aligned. - - @param[in] This Protocol instance pointer. - @param[in] PoolType The type of pool to allocate. - The only supported type is EfiRuntimeServicesData; - the interface will internally map this runtime request to - SMRAM for IA-32 and leave as this type for the Itanium - processor family. Other types can be ignored. - @param[in] Size The number of bytes to allocate from the pool. - @param[out] Buffer A pointer to a pointer to the allocated buffer if the call - succeeds; undefined otherwise. - - @retval EFI_SUCCESS The requested number of bytes was allocated. - @retval EFI_OUT_OF_RESOURCES The pool requested could not be allocated. - @retval EFI_UNSUPPORTED The platform is in runtime. - -**/ -typedef -EFI_STATUS -(EFIAPI *EFI_SMM_ALLOCATE_POOL)( - IN EFI_SMM_BASE_PROTOCOL *This, - IN EFI_MEMORY_TYPE PoolType, - IN UINTN Size, - OUT VOID **Buffer - ); - -/** - The SmmFreePool() function returns the memory specified by Buffer to the system. - On return, the memory's type is EFI SMRAM Memory. The Buffer that is freed must - have been allocated by SmmAllocatePool(). - - @param[in] This The protocol instance pointer. - @param[in] Buffer The pointer to the buffer allocation. - - @retval EFI_SUCCESS The memory was returned to the system. - @retval EFI_INVALID_PARAMETER The buffer was invalid. - @retval EFI_UNSUPPORTED The platform is in runtime. - -**/ -typedef -EFI_STATUS -(EFIAPI *EFI_SMM_FREE_POOL)( - IN EFI_SMM_BASE_PROTOCOL *This, - IN VOID *Buffer - ); - -/** - This routine tells caller if execution context is SMM or not. - - @param[in] This The protocol instance pointer. - @param[out] InSmm Whether the caller is inside SMM for IA-32 - or servicing a PMI for the Itanium processor - family. - - @retval EFI_SUCCESS The operation was successful. - @retval EFI_INVALID_PARAMETER InSmm was NULL. - -**/ -typedef -EFI_STATUS -(EFIAPI *EFI_SMM_INSIDE_OUT)( - IN EFI_SMM_BASE_PROTOCOL *This, - OUT BOOLEAN *InSmm - ); - -/** - The GetSmstLocation() function returns the location of the System Management - Service Table. The use of the API is such that a driver can discover the - location of the SMST in its entry point and then cache it in some driver - global variable so that the SMST can be invoked in subsequent callbacks. - - @param[in] This The protocol instance pointer. - @param[in] Smst The pointer to the SMST. - - @retval EFI_SUCCESS The operation was successful - @retval EFI_INVALID_PARAMETER Smst was invalid. - @retval EFI_UNSUPPORTED Not in SMM. - -**/ -typedef -EFI_STATUS -(EFIAPI *EFI_SMM_GET_SMST_LOCATION)( - IN EFI_SMM_BASE_PROTOCOL *This, - IN OUT EFI_SMM_SYSTEM_TABLE **Smst - ); - -/// -/// This protocol is used to install SMM handlers for support of subsequent SMI/PMI -/// activations. This protocol is available on both IA-32 and Itanium-based systems. -/// -struct _EFI_SMM_BASE_PROTOCOL { - EFI_SMM_REGISTER_HANDLER Register; - EFI_SMM_UNREGISTER_HANDLER UnRegister; - EFI_SMM_COMMUNICATE Communicate; - EFI_SMM_CALLBACK_SERVICE RegisterCallback; - EFI_SMM_INSIDE_OUT InSmm; - EFI_SMM_ALLOCATE_POOL SmmAllocatePool; - EFI_SMM_FREE_POOL SmmFreePool; - EFI_SMM_GET_SMST_LOCATION GetSmstLocation; -}; - -extern EFI_GUID gEfiSmmBaseProtocolGuid; - -#endif diff --git a/IntelFrameworkPkg/Include/Protocol/SmmControl.h b/IntelFrameworkPkg/Include/Protocol/SmmControl.h deleted file mode 100644 index d49831ca9..000000000 --- a/IntelFrameworkPkg/Include/Protocol/SmmControl.h +++ /dev/null @@ -1,180 +0,0 @@ -/** @file - This file declares the SMM Control abstraction protocol. - This protocol is used to initiate SMI/PMI activations. This protocol could be published by either: - - A processor driver to abstract the SMI/PMI IPI - - The driver that abstracts the ASIC that is supporting the APM port, such as the ICH in an - Intel chipset - Because of the possibility of performing SMI or PMI IPI transactions, the ability to generate this - event from a platform chipset agent is an optional capability for both IA-32 and Itanium-based - systems. - -Copyright (c) 2007 - 2010, Intel Corporation. All rights reserved.
-This program and the accompanying materials are licensed and made available under -the terms and conditions of the BSD License that accompanies this distribution. -The full text of the license may be found at -http://opensource.org/licenses/bsd-license.php. - -THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, -WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. - - @par Revision Reference: - This Protocol is defined in Framework of EFI SMM Core Interface Spec - Version 0.9. - -**/ - -#ifndef _SMM_CONTROL_H_ -#define _SMM_CONTROL_H_ - - -typedef struct _EFI_SMM_CONTROL_PROTOCOL EFI_SMM_CONTROL_PROTOCOL; - -#define EFI_SMM_CONTROL_PROTOCOL_GUID \ - { \ - 0x8d12e231, 0xc667, 0x4fd1, {0x98, 0xf2, 0x24, 0x49, 0xa7, 0xe7, 0xb2, 0xe5 } \ - } -// -// SMM Access specification Data Structures -// -typedef struct { - /// - /// Describes the I/O location of the particular port that engendered the synchronous - /// SMI. For example, this location can include but is not limited to the traditional - /// PCAT* APM port of 0B2h. - /// - UINT8 SmiTriggerRegister; - /// - /// Describes the value that was written to the respective activation port. - /// - UINT8 SmiDataRegister; -} EFI_SMM_CONTROL_REGISTER; - -// -// SMM Control specification member function -// -/** - Invokes SMI activation from either the preboot or runtime environment. - - @param This The EFI_SMM_CONTROL_PROTOCOL instance. - @param ArgumentBuffer The optional sized data to pass into the protocol activation. - @param ArgumentBufferSize The optional size of the data. - @param Periodic An optional mechanism to periodically repeat activation. - @param ActivationInterval An optional parameter to repeat at this period one - time or, if the Periodic Boolean is set, periodically. - - @retval EFI_SUCCESS The SMI/PMI has been engendered. - @retval EFI_DEVICE_ERROR The timing is unsupported. - @retval EFI_INVALID_PARAMETER The activation period is unsupported. - @retval EFI_NOT_STARTED The SMM base service has not been initialized. - -**/ -typedef -EFI_STATUS -(EFIAPI *EFI_SMM_ACTIVATE)( - IN EFI_SMM_CONTROL_PROTOCOL *This, - IN OUT INT8 *ArgumentBuffer OPTIONAL, - IN OUT UINTN *ArgumentBufferSize OPTIONAL, - IN BOOLEAN Periodic OPTIONAL, - IN UINTN ActivationInterval OPTIONAL - ); - -/** - Clears any system state that was created in response to the Active call. - - @param This The EFI_SMM_CONTROL_PROTOCOL instance. - @param Periodic Optional parameter to repeat at this period one - time or, if the Periodic Boolean is set, periodically. - - @retval EFI_SUCCESS The SMI/PMI has been engendered. - @retval EFI_DEVICE_ERROR The source could not be cleared. - @retval EFI_INVALID_PARAMETER The service did not support the Periodic input argument. - -**/ -typedef -EFI_STATUS -(EFIAPI *EFI_SMM_DEACTIVATE)( - IN EFI_SMM_CONTROL_PROTOCOL *This, - IN BOOLEAN Periodic OPTIONAL - ); - -/** - Provides information on the source register used to generate the SMI. - - @param This The EFI_SMM_CONTROL_PROTOCOL instance. - @param SmiRegister A pointer to the SMI register description structure. - - @retval EFI_SUCCESS The register structure has been returned. - @retval EFI_DEVICE_ERROR The source could not be cleared. - @retval EFI_INVALID_PARAMETER The service did not support the Periodic input argument. - -**/ -typedef -EFI_STATUS -(EFIAPI *EFI_SMM_GET_REGISTER_INFO)( - IN EFI_SMM_CONTROL_PROTOCOL *This, - IN OUT EFI_SMM_CONTROL_REGISTER *SmiRegister - ); - -/** - @par Protocol Description: - This protocol is used to initiate SMI/PMI activations. - - @param Trigger - Initiates the SMI/PMI activation. - - @param Clear - Quiesces the SMI/PMI activation. - - @param GetRegisterInfo - Provides data on the register used as the source of the SMI. - - @param MinimumTriggerPeriod - Minimum interval at which the platform can set the period. - - @retval EFI_SUCCESS The register structure has been returned. -**/ - -// -// SMM Control Protocol -// -/** - This protocol is used to initiate SMI/PMI activations. - This protocol could be published by either: - - A processor driver to abstract the SMI/PMI IPI. - - The driver that abstracts the ASIC that is supporting the APM port, such as the ICH in an Intel chipset. - Because of the possibility of performing SMI or PMI IPI transactions, the ability to generate this. - - The EFI_SMM_CONTROL_PROTOCOL is used by the platform chipset or processor driver. This - protocol is usable both in boot services and at runtime. The runtime aspect enables an - implementation of EFI_SMM_BASE_PROTOCOL.Communicate() to layer upon this service - and provide an SMI callback from a general EFI runtime driver. - This protocol provides an abstraction to the platform hardware that generates an - SMI or PMI. There are often I/O ports that, when accessed, will engender the SMI or PMI. - Also, this hardware optionally supports the periodic genearation of these signals. - -**/ -struct _EFI_SMM_CONTROL_PROTOCOL { - /// - /// Initiates the SMI/PMI activation. - /// - EFI_SMM_ACTIVATE Trigger; - /// - /// Quiesces the SMI/PMI activation. - /// - EFI_SMM_DEACTIVATE Clear; - /// - /// Provides data on the register used as the source of the SMI. - /// - EFI_SMM_GET_REGISTER_INFO GetRegisterInfo; - /// - /// Minimum interval at which the platform can set the period. A maximum is not - /// specified in that the SMM infrastructure code can emulate a maximum interval that is - /// greater than the hardware capabilities by using software emulation in the SMM - /// infrastructure code. - /// - UINTN MinimumTriggerPeriod; -}; - -extern EFI_GUID gEfiSmmControlProtocolGuid; - -#endif diff --git a/IntelFrameworkPkg/Include/Protocol/SmmCpuIo.h b/IntelFrameworkPkg/Include/Protocol/SmmCpuIo.h deleted file mode 100644 index 53c49b56f..000000000 --- a/IntelFrameworkPkg/Include/Protocol/SmmCpuIo.h +++ /dev/null @@ -1,88 +0,0 @@ -/** @file - SMM CPU I/O protocol as defined in the Intel Framework specification. - - This protocol provides CPU I/O and memory access within SMM. - -Copyright (c) 2009 - 2010, Intel Corporation. All rights reserved.
-This program and the accompanying materials are licensed and made available under -the terms and conditions of the BSD License that accompanies this distribution. -The full text of the license may be found at -http://opensource.org/licenses/bsd-license.php. - -THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, -WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. - -**/ - -#ifndef _SMM_CPU_IO_H_ -#define _SMM_CPU_IO_H_ - -#include - -#define EFI_SMM_CPU_IO_GUID \ - { \ - 0x5f439a0b, 0x45d8, 0x4682, {0xa4, 0xf4, 0xf0, 0x57, 0x6b, 0x51, 0x34, 0x41} \ - } - -typedef struct _EFI_SMM_CPU_IO_INTERFACE EFI_SMM_CPU_IO_INTERFACE; - -/** - Provides the basic memory and I/O interfaces used to abstract accesses to devices. - - The I/O operations are carried out exactly as requested. The caller is - responsible for any alignment and I/O width issues that the bus, device, - platform, or type of I/O might require. - - @param[in] This The EFI_SMM_CPU_IO_INTERFACE instance. - @param[in] Width Signifies the width of the I/O operations. - @param[in] Address The base address of the I/O operations. The caller is - responsible for aligning the Address, if required. - @param[in] Count The number of I/O operations to perform. - @param[in,out] Buffer For read operations, the destination buffer to store - the results. For write operations, the source buffer - from which to write data. - - @retval EFI_SUCCESS The data was read from or written to the device. - @retval EFI_UNSUPPORTED The Address is not valid for this system. - @retval EFI_INVALID_PARAMETER Width or Count, or both, were invalid. - @retval EFI_OUT_OF_RESOURCES The request could not be completed due to a lack - of resources. -**/ -typedef -EFI_STATUS -(EFIAPI *EFI_SMM_CPU_IO)( - IN EFI_SMM_CPU_IO_INTERFACE *This, - IN EFI_SMM_IO_WIDTH Width, - IN UINT64 Address, - IN UINTN Count, - IN OUT VOID *Buffer - ); - -typedef struct { - /// - /// This service provides the various modalities of memory and I/O read. - /// - EFI_SMM_CPU_IO Read; - /// - /// This service provides the various modalities of memory and I/O write. - /// - EFI_SMM_CPU_IO Write; -} EFI_SMM_IO_ACCESS; - -/// -/// SMM CPU I/O Protocol provides CPU I/O and memory access within SMM. -/// -struct _EFI_SMM_CPU_IO_INTERFACE { - /// - /// Allows reads and writes to memory-mapped I/O space. - /// - EFI_SMM_IO_ACCESS Mem; - /// - /// Allows reads and writes to I/O space. - /// - EFI_SMM_IO_ACCESS Io; -}; - -extern EFI_GUID gEfiSmmCpuIoGuid; - -#endif diff --git a/IntelFrameworkPkg/Include/Protocol/SmmCpuSaveState.h b/IntelFrameworkPkg/Include/Protocol/SmmCpuSaveState.h deleted file mode 100644 index ba0d03339..000000000 --- a/IntelFrameworkPkg/Include/Protocol/SmmCpuSaveState.h +++ /dev/null @@ -1,175 +0,0 @@ -/** @file - This file declares the SMM CPU Save State protocol, which provides the processor - save-state information for IA-32 and Itanium processors. - -Copyright (c) 2010, Intel Corporation. All rights reserved.
-This program and the accompanying materials are licensed and made available under -the terms and conditions of the BSD License that accompanies this distribution. -The full text of the license may be found at -http://opensource.org/licenses/bsd-license.php. - -THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, -WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. - - @par Revision Reference: - This Protocol is defined in Framework of EFI SMM Core Interface Spec - Version 0.91. -**/ - -#ifndef _SMM_CPU_SAVE_STATE_H_ -#define _SMM_CPU_SAVE_STATE_H_ - -#define EFI_SMM_CPU_SAVE_STATE_PROTOCOL_GUID \ - { \ - 0x21f302ad, 0x6e94, 0x471b, {0x84, 0xbc, 0xb1, 0x48, 0x0, 0x40, 0x3a, 0x1d} \ - } - -typedef struct _EFI_SMM_CPU_SAVE_STATE_PROTOCOL EFI_SMM_CPU_SAVE_STATE_PROTOCOL; - -#define EFI_SMM_MIN_REV_ID_x64 0x30006 - -#pragma pack (1) - -/// -/// CPU save-state strcuture for IA32 and X64. -/// -/// This struct declaration does not exctly match the Framework SMM CIS 0.91 because the -/// union in the Framework SMM CIS 0.91 contains an unnamed union member that causes build -/// breaks on many compilers with high warning levels. Instead, the UINT8 Reserved[0x200] -/// field has been moved into EFI_SMM_CPU_STATE32. This maintains binary compatibility for -/// the layout and also maintains source comaptibility for access of all fields in this -/// union. -/// -/// This struct declaration does not exctly match the Framework SMM CIS 0.91 because -/// the Framework SMM CIS 0.91 uses ASM_XXX for base types in this structure. These -/// have been changed to use the base types defined in the UEFI Specification. -/// -typedef struct { - UINT8 Reserved[0x200]; - UINT8 Reserved1[0xf8]; // fe00h - UINT32 SMBASE; // fef8h - UINT32 SMMRevId; // fefch - UINT16 IORestart; // ff00h - UINT16 AutoHALTRestart; // ff02h - UINT32 IEDBASE; // ff04h - UINT8 Reserved2[0x98]; // ff08h - UINT32 IOMemAddr; // ffa0h - UINT32 IOMisc; // ffa4h - UINT32 _ES; - UINT32 _CS; - UINT32 _SS; - UINT32 _DS; - UINT32 _FS; - UINT32 _GS; - UINT32 _LDTBase; - UINT32 _TR; - UINT32 _DR7; - UINT32 _DR6; - UINT32 _EAX; - UINT32 _ECX; - UINT32 _EDX; - UINT32 _EBX; - UINT32 _ESP; - UINT32 _EBP; - UINT32 _ESI; - UINT32 _EDI; - UINT32 _EIP; - UINT32 _EFLAGS; - UINT32 _CR3; - UINT32 _CR0; -} EFI_SMM_CPU_STATE32; - -/// -/// This struct declaration does not exctly match the Framework SMM CIS 0.91 because -/// the Framework SMM CIS 0.91 uses ASM_XXX for base types in this structure. These -/// have been changed to use the base types defined in the UEFI Specification. -/// -typedef struct { - UINT8 Reserved1[0x1d0]; // fc00h - UINT32 GdtBaseHiDword; // fdd0h - UINT32 LdtBaseHiDword; // fdd4h - UINT32 IdtBaseHiDword; // fdd8h - UINT8 Reserved2[0xc]; // fddch - UINT64 IO_EIP; // fde8h - UINT8 Reserved3[0x50]; // fdf0h - UINT32 _CR4; // fe40h - UINT8 Reserved4[0x48]; // fe44h - UINT32 GdtBaseLoDword; // fe8ch - UINT32 GdtLimit; // fe90h - UINT32 IdtBaseLoDword; // fe94h - UINT32 IdtLimit; // fe98h - UINT32 LdtBaseLoDword; // fe9ch - UINT32 LdtLimit; // fea0h - UINT32 LdtInfo; // fea4h - UINT8 Reserved5[0x50]; // fea8h - UINT32 SMBASE; // fef8h - UINT32 SMMRevId; // fefch - UINT16 AutoHALTRestart; // ff00h - UINT16 IORestart; // ff02h - UINT32 IEDBASE; // ff04h - UINT8 Reserved6[0x14]; // ff08h - UINT64 _R15; // ff1ch - UINT64 _R14; - UINT64 _R13; - UINT64 _R12; - UINT64 _R11; - UINT64 _R10; - UINT64 _R9; - UINT64 _R8; - UINT64 _RAX; // ff5ch - UINT64 _RCX; - UINT64 _RDX; - UINT64 _RBX; - UINT64 _RSP; - UINT64 _RBP; - UINT64 _RSI; - UINT64 _RDI; - UINT64 IOMemAddr; // ff9ch - UINT32 IOMisc; // ffa4h - UINT32 _ES; // ffa8h - UINT32 _CS; - UINT32 _SS; - UINT32 _DS; - UINT32 _FS; - UINT32 _GS; - UINT32 _LDTR; // ffc0h - UINT32 _TR; - UINT64 _DR7; // ffc8h - UINT64 _DR6; - UINT64 _RIP; // ffd8h - UINT64 IA32_EFER; // ffe0h - UINT64 _RFLAGS; // ffe8h - UINT64 _CR3; // fff0h - UINT64 _CR0; // fff8h -} EFI_SMM_CPU_STATE64; - -/// -/// Union of CPU save-state strcutures for IA32 and X64. -/// -/// This union declaration does not exctly match the Framework SMM CIS 0.91 because the -/// union in the Framework SMM CIS 0.91 contains an unnamed union member that causes build -/// breaks on many compilers with high warning levels. Instead, the UINT8 Reserved[0x200] -/// field has been moved into EFI_SMM_CPU_STATE32. This maintains binary compatibility for -/// the layout and also maintains source comaptibility for access of all fields in this -/// union. -/// -typedef union { - EFI_SMM_CPU_STATE32 x86; - EFI_SMM_CPU_STATE64 x64; -} EFI_SMM_CPU_STATE; - -#pragma pack () - -/// -/// Provides a programatic means to access SMM save state. -/// -struct _EFI_SMM_CPU_SAVE_STATE_PROTOCOL { - /// - /// Reference to a list of save states. - /// - EFI_SMM_CPU_STATE **CpuSaveState; -}; - -extern EFI_GUID gEfiSmmCpuSaveStateProtocolGuid; - -#endif diff --git a/IntelFrameworkPkg/Include/Protocol/SmmGpiDispatch.h b/IntelFrameworkPkg/Include/Protocol/SmmGpiDispatch.h deleted file mode 100644 index 62f9a5160..000000000 --- a/IntelFrameworkPkg/Include/Protocol/SmmGpiDispatch.h +++ /dev/null @@ -1,136 +0,0 @@ -/** @file - This file declares the Smm Gpi Smi Child Protocol. - - The EFI_SMM_GPI_DISPATCH_PROTOCOL is defined in Framework of EFI SMM Core Interface Spec - Version 0.9. It provides the ability to install child handlers for the given event types. - Several inputs can be enabled. This purpose of this interface is to generate an - SMI in response to any of these inputs having a true value provided. - -Copyright (c) 2007 - 2010, Intel Corporation. All rights reserved.
-This program and the accompanying materials are licensed and made available under -the terms and conditions of the BSD License that accompanies this distribution. -The full text of the license may be found at -http://opensource.org/licenses/bsd-license.php. - -THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, -WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. - -**/ - -#ifndef _SMM_GPI_DISPATCH_H_ -#define _SMM_GPI_DISPATCH_H_ - - -// -// Global ID for the GPI SMI Protocol -// -#define EFI_SMM_GPI_DISPATCH_PROTOCOL_GUID \ - { \ - 0xe0744b81, 0x9513, 0x49cd, {0x8c, 0xea, 0xe9, 0x24, 0x5e, 0x70, 0x39, 0xda } \ - } - -typedef struct _EFI_SMM_GPI_DISPATCH_PROTOCOL EFI_SMM_GPI_DISPATCH_PROTOCOL; - -// -// Related Definitions -// - -// -// GpiMask is a bit mask of 32 possible general purpose inputs that can generate -// an SMI. Bit 0 corresponds to logical GPI[0], 1 corresponds to logical GPI[1], and so on. -// -// The logical GPI index to physical pin on device is described by the GPI device name -// found on the same handle as the GpiSmi child dispatch protocol. The GPI device name -// is defined as protocol with a GUID name and NULL protocol pointer. -// -typedef struct { - UINTN GpiNum; -} EFI_SMM_GPI_DISPATCH_CONTEXT; - -// -// Member functions -// - -/** - Dispatch function for a GPI SMI handler. - - @param DispatchHandle The handle of this dispatch function. - @param DispatchContext The pointer to the dispatch function's context. - The DispatchContext fields are filled in by the - dispatching driver prior to invoking this dispatch - function. -**/ -typedef -VOID -(EFIAPI *EFI_SMM_GPI_DISPATCH)( - IN EFI_HANDLE DispatchHandle, - IN EFI_SMM_GPI_DISPATCH_CONTEXT *DispatchContext - ); - -/** - Register a child SMI source dispatch function with a parent SMM driver - - @param This The pointer to the EFI_SMM_GPI_DISPATCH_PROTOCOL instance. - @param DispatchFunction Function to install. - @param DispatchContext The pointer to the dispatch function's context. - Indicates to the register - function the GPI(s) for which the dispatch function - should be invoked. - @param DispatchHandle The handle generated by the dispatcher to track the - function instance. - - @retval EFI_SUCCESS The dispatch function has been successfully - registered, and the SMI source has been enabled. - @retval EFI_DEVICE_ERROR The driver was unable to enable the SMI source. - @retval EFI_OUT_OF_RESOURCES Not enough memory (system or SMM) to manage this - child. - @retval EFI_INVALID_PARAMETER DispatchContext is invalid. The GPI input value - is not within valid range. - -**/ -typedef -EFI_STATUS -(EFIAPI *EFI_SMM_GPI_REGISTER)( - IN EFI_SMM_GPI_DISPATCH_PROTOCOL *This, - IN EFI_SMM_GPI_DISPATCH DispatchFunction, - IN EFI_SMM_GPI_DISPATCH_CONTEXT *DispatchContext, - OUT EFI_HANDLE *DispatchHandle - ); - -/** - Unregisters a General Purpose Input (GPI) service. - - @param This The pointer to the EFI_SMM_GPI_DISPATCH_PROTOCOL instance. - @param DispatchHandle The handle of the service to remove. - - @retval EFI_SUCCESS The dispatch function has been successfully - unregistered, and the SMI source has been disabled, - if there are no other registered child dispatch - functions for this SMI source. - @retval EFI_INVALID_PARAMETER DispatchHandle is invalid. - -**/ -typedef -EFI_STATUS -(EFIAPI *EFI_SMM_GPI_UNREGISTER)( - IN EFI_SMM_GPI_DISPATCH_PROTOCOL *This, - IN EFI_HANDLE DispatchHandle - ); - -// -// Interface structure for the SMM GPI SMI Dispatch Protocol -// -struct _EFI_SMM_GPI_DISPATCH_PROTOCOL { - EFI_SMM_GPI_REGISTER Register; - EFI_SMM_GPI_UNREGISTER UnRegister; - - /// - /// Denotes the maximum value of inputs that can have handlers attached. - /// - UINTN NumSupportedGpis; -}; - -extern EFI_GUID gEfiSmmGpiDispatchProtocolGuid; - -#endif - diff --git a/IntelFrameworkPkg/Include/Protocol/SmmIchnDispatch.h b/IntelFrameworkPkg/Include/Protocol/SmmIchnDispatch.h deleted file mode 100644 index 56e9e3844..000000000 --- a/IntelFrameworkPkg/Include/Protocol/SmmIchnDispatch.h +++ /dev/null @@ -1,189 +0,0 @@ -/** @file - Provides the parent dispatch service for a given SMI source generator. - The EFI_SMM_ICHN_DISPATCH_PROTOCOL provides the ability to install child handlers for - the given event types. - -Copyright (c) 2008 - 2010, Intel Corporation. All rights reserved.
-This program and the accompanying materials are licensed and made available under -the terms and conditions of the BSD License that accompanies this distribution. -The full text of the license may be found at -http://opensource.org/licenses/bsd-license.php. - -THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, -WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. - - @par Revision Reference: - This Protocol is defined in Framework of EFI SMM Core Interface Spec - Version 0.9. - -**/ - -#ifndef _EFI_SMM_ICHN_DISPATCH_H_ -#define _EFI_SMM_ICHN_DISPATCH_H_ - - -// -// Global ID for the ICH SMI Protocol -// -#define EFI_SMM_ICHN_DISPATCH_PROTOCOL_GUID \ - { \ - 0xc50b323e, 0x9075, 0x4f2a, {0xac, 0x8e, 0xd2, 0x59, 0x6a, 0x10, 0x85, 0xcc } \ - } - -typedef struct _EFI_SMM_ICHN_DISPATCH_PROTOCOL EFI_SMM_ICHN_DISPATCH_PROTOCOL; - -// -// Related Definitions -// -// -// ICHN Specific SMIs. These are miscellaneous SMI sources that are supported by the -// ICHN specific SMI implementation. These may change over time. TrapNumber is only -// valid if the Type is Trap. -// -typedef enum { - // - // NOTE: NEVER delete items from this list/enumeration! Doing so will prevent other versions - // of the code from compiling. If the ICH version your driver is written for doesn't support - // some of these SMIs, then simply return EFI_UNSUPPORTED when a child/client tries to register - // for them. - // - IchnMch, - IchnPme, - IchnRtcAlarm, - IchnRingIndicate, - IchnAc97Wake, - IchnSerialIrq, - IchnY2KRollover, - IchnTcoTimeout, - IchnOsTco, - IchnNmi, - IchnIntruderDetect, - IchnBiosWp, - IchnMcSmi, - IchnPmeB0, - IchnThrmSts, - IchnSmBus, - IchnIntelUsb2, - IchnMonSmi7, - IchnMonSmi6, - IchnMonSmi5, - IchnMonSmi4, - IchnDevTrap13, - IchnDevTrap12, - IchnDevTrap11, - IchnDevTrap10, - IchnDevTrap9, - IchnDevTrap8, - IchnDevTrap7, - IchnDevTrap6, - IchnDevTrap5, - IchnDevTrap3, - IchnDevTrap2, - IchnDevTrap1, - IchnDevTrap0, - IchnIoTrap3, - IchnIoTrap2, - IchnIoTrap1, - IchnIoTrap0, - IchnPciExpress, - IchnMonitor, - IchnSpi, - IchnQRT, - IchnGpioUnlock, - // - // INSERT NEW ITEMS JUST BEFORE THIS LINE - // - NUM_ICHN_TYPES // the number of items in this enumeration -} EFI_SMM_ICHN_SMI_TYPE; - -typedef struct { - EFI_SMM_ICHN_SMI_TYPE Type; -} EFI_SMM_ICHN_DISPATCH_CONTEXT; - -// -// Member functions -// -/** - Dispatch function for a ICHN specific SMI handler. - - @param DispatchHandle The handle of this dispatch function. - @param DispatchContext The pointer to the dispatch function's context. - The DispatchContext fields are filled in - by the dispatching driver prior to - invoking this dispatch function. - - @return None - -**/ -typedef -VOID -(EFIAPI *EFI_SMM_ICHN_DISPATCH)( - IN EFI_HANDLE DispatchHandle, - IN EFI_SMM_ICHN_DISPATCH_CONTEXT *DispatchContext - ); - -/** - Register a child SMI source dispatch function with a parent SMM driver. - - @param This The pointer to the EFI_SMM_ICHN_DISPATCH_PROTOCOL instance. - @param DispatchFunction The function to install. - @param DispatchContext The pointer to the dispatch function's context. - The caller fills in this context before calling - the register function to indicate to the register - function the ICHN SMI source for which the dispatch - function should be invoked. - @param DispatchHandle The handle generated by the dispatcher to track the function - instance. - - @retval EFI_SUCCESS The dispatch function has been successfully - registered and the SMI source has been enabled. - @retval EFI_DEVICE_ERROR The driver could not enable the SMI source. - @retval EFI_OUT_OF_RESOURCES Not enough memory (system or SMM) to manage this - child. - @retval EFI_INVALID_PARAMETER DispatchContext is invalid. The ICHN input value - is not within valid range. - -**/ -typedef -EFI_STATUS -(EFIAPI *EFI_SMM_ICHN_REGISTER)( - IN EFI_SMM_ICHN_DISPATCH_PROTOCOL *This, - IN EFI_SMM_ICHN_DISPATCH DispatchFunction, - IN EFI_SMM_ICHN_DISPATCH_CONTEXT *DispatchContext, - OUT EFI_HANDLE *DispatchHandle - ); - -/** - Unregister a child SMI source dispatch function with a parent SMM driver - - @param This The pointer to the EFI_SMM_ICHN_DISPATCH_PROTOCOL instance. - @param DispatchHandle The handle of the service to remove. - - @retval EFI_SUCCESS The dispatch function has been successfully - unregistered, and the SMI source has been disabled, - if there are no other registered child dispatch - functions for this SMI source. - @retval EFI_INVALID_PARAMETER The handle is invalid. - -**/ -typedef -EFI_STATUS -(EFIAPI *EFI_SMM_ICHN_UNREGISTER)( - IN EFI_SMM_ICHN_DISPATCH_PROTOCOL *This, - IN EFI_HANDLE DispatchHandle - ); - -// -// Interface structure for the SMM ICHN specific SMI Dispatch Protocol -// -/** - Provides the parent dispatch service for a given SMI source generator. -**/ -struct _EFI_SMM_ICHN_DISPATCH_PROTOCOL { - EFI_SMM_ICHN_REGISTER Register; ///< Installs a child service to be dispatched by this protocol. - EFI_SMM_ICHN_UNREGISTER UnRegister; ///< Removes a child service dispatched by this protocol. -}; - -extern EFI_GUID gEfiSmmIchnDispatchProtocolGuid; - -#endif diff --git a/IntelFrameworkPkg/Include/Protocol/SmmPeriodicTimerDispatch.h b/IntelFrameworkPkg/Include/Protocol/SmmPeriodicTimerDispatch.h deleted file mode 100644 index 962665f38..000000000 --- a/IntelFrameworkPkg/Include/Protocol/SmmPeriodicTimerDispatch.h +++ /dev/null @@ -1,176 +0,0 @@ -/** @file - Provides the parent dispatch service for the periodical timer SMI source generator. - -Copyright (c) 2007 - 2010, Intel Corporation. All rights reserved.
-This program and the accompanying materials are licensed and made available under -the terms and conditions of the BSD License that accompanies this distribution. -The full text of the license may be found at -http://opensource.org/licenses/bsd-license.php. - -THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, -WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. - - @par Revision Reference: - This Protocol is defined in Framework of EFI SMM Core Interface Spec - Version 0.9. - -**/ - -#ifndef _EFI_SMM_PERIODIC_TIMER_DISPATCH_H_ -#define _EFI_SMM_PERIODIC_TIMER_DISPATCH_H_ - - -// -// Global ID for the Periodic Timer SMI Protocol -// -#define EFI_SMM_PERIODIC_TIMER_DISPATCH_PROTOCOL_GUID \ - { \ - 0x9cca03fc, 0x4c9e, 0x4a19, {0x9b, 0x6, 0xed, 0x7b, 0x47, 0x9b, 0xde, 0x55 } \ - } - -typedef struct _EFI_SMM_PERIODIC_TIMER_DISPATCH_PROTOCOL EFI_SMM_PERIODIC_TIMER_DISPATCH_PROTOCOL; - -// -// Related Definitions -// - -typedef struct { - /// - /// The minimum period of time that the child gets called, in 100 nanosecond units. - /// The child will be called back after a time greater than the time Period. - /// - UINT64 Period; - /// - /// The period of time interval between SMIs. Children of this interface - /// should use this field when registering for periodic timer intervals when a finer - /// granularity periodic SMI is desired. Valid values for this field are those returned - /// by GetNextInterval. A value of 0 indicates the parent is allowed to use any SMI - /// interval period to satisfy the requested period. - /// - UINT64 SmiTickInterval; - /// - /// The actual time in 100 nanosecond units elapsed since last called. A - /// value of 0 indicates an unknown amount of time. - /// - UINT64 ElapsedTime; -} EFI_SMM_PERIODIC_TIMER_DISPATCH_CONTEXT; - -// -// Member functions -// -/** - Dispatch function for a Periodic Timer SMI handler. - - @param DispatchHandle The handle of this dispatch function. - @param DispatchContext The pointer to the dispatch function's context. - The DispatchContext fields are filled in - by the dispatching driver prior to - invoking this dispatch function. - - @return None - -**/ -typedef -VOID -(EFIAPI *EFI_SMM_PERIODIC_TIMER_DISPATCH)( - IN EFI_HANDLE DispatchHandle, - IN EFI_SMM_PERIODIC_TIMER_DISPATCH_CONTEXT *DispatchContext - ); - -/** - Returns the next SMI tick period supported by the chipset. The order - returned is from longest to shortest interval period. - - @param This The protocol instance pointer. - @param SmiTickInterval The pointer to pointer of next shorter SMI interval - period supported by the child. This parameter works as a get-first, - get-next field. The first time this function is called, *SmiTickInterval - should be set to NULL to get the longest SMI interval. The returned - *SmiTickInterval should be passed in on subsequent calls to get the - next shorter interval period until *SmiTickInterval = NULL. - - @retval EFI_SUCCESS The service returned successfully. - -**/ -typedef -EFI_STATUS -(EFIAPI *EFI_SMM_PERIODIC_TIMER_INTERVAL)( - IN EFI_SMM_PERIODIC_TIMER_DISPATCH_PROTOCOL *This, - IN OUT UINT64 **SmiTickInterval - ); - -/** - Register a child SMI source dispatch function with a parent SMM driver - - @param This The pointer to the EFI_SMM_PERIODIC_TIMER_DISPATCH_PROTOCOL instance. - @param DispatchFunction The function to install. - @param DispatchContext The pointer to the dispatch function's context. - Indicates to the register - function the period at which the dispatch function - should be invoked. - @param DispatchHandle The handle generated by the dispatcher to track the function instance. - - @retval EFI_SUCCESS The dispatch function has been successfully - registered, and the SMI source has been enabled. - @retval EFI_DEVICE_ERROR The driver was unable to enable the SMI source. - @retval EFI_OUT_OF_RESOURCES Not enough memory (system or SMM) to manage this - child. - @retval EFI_INVALID_PARAMETER DispatchContext is invalid. The period input value - is not within valid range. - -**/ -typedef -EFI_STATUS -(EFIAPI *EFI_SMM_PERIODIC_TIMER_REGISTER)( - IN EFI_SMM_PERIODIC_TIMER_DISPATCH_PROTOCOL *This, - IN EFI_SMM_PERIODIC_TIMER_DISPATCH DispatchFunction, - IN EFI_SMM_PERIODIC_TIMER_DISPATCH_CONTEXT *DispatchContext, - OUT EFI_HANDLE *DispatchHandle - ); - -/** - Unregisters a periodic timer service. - - @param This The pointer to the EFI_SMM_PERIODIC_TIMER_DISPATCH_PROTOCOL instance. - @param DispatchHandle The handle of the service to remove. - - @retval EFI_SUCCESS The dispatch function has been successfully - unregistered, and the SMI source has been disabled - if there are no other registered child dispatch - functions for this SMI source. - @retval EFI_INVALID_PARAMETER The handle is invalid. - -**/ -typedef -EFI_STATUS -(EFIAPI *EFI_SMM_PERIODIC_TIMER_UNREGISTER)( - IN EFI_SMM_PERIODIC_TIMER_DISPATCH_PROTOCOL *This, - IN EFI_HANDLE DispatchHandle - ); - -// -// Interface structure for the SMM Periodic Timer Dispatch Protocol -// -/** - Provides the parent dispatch service for the periodical timer SMI source generator. -**/ -struct _EFI_SMM_PERIODIC_TIMER_DISPATCH_PROTOCOL { - /// - /// Installs a child service to be dispatched by this protocol. - /// - EFI_SMM_PERIODIC_TIMER_REGISTER Register; - - /// - /// Removes a child service dispatched by this protocol. - /// - EFI_SMM_PERIODIC_TIMER_UNREGISTER UnRegister; - - /// - /// Returns the next SMI tick period that is supported by the chipset. - /// - EFI_SMM_PERIODIC_TIMER_INTERVAL GetNextShorterInterval; -}; - -extern EFI_GUID gEfiSmmPeriodicTimerDispatchProtocolGuid; - -#endif diff --git a/IntelFrameworkPkg/Include/Protocol/SmmPowerButtonDispatch.h b/IntelFrameworkPkg/Include/Protocol/SmmPowerButtonDispatch.h deleted file mode 100644 index eaf5aa637..000000000 --- a/IntelFrameworkPkg/Include/Protocol/SmmPowerButtonDispatch.h +++ /dev/null @@ -1,141 +0,0 @@ -/** @file - Provides the parent dispatch service for the power button SMI source generator. - -Copyright (c) 2007 - 2010, Intel Corporation. All rights reserved.
-This program and the accompanying materials are licensed and made available under -the terms and conditions of the BSD License that accompanies this distribution. -The full text of the license may be found at -http://opensource.org/licenses/bsd-license.php. - -THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, -WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. - - @par Revision Reference: - This Protocol is defined in Framework of EFI SMM Core Interface Spec - Version 0.9. - -**/ - -#ifndef _EFI_SMM_POWER_BUTTON_DISPATCH_H_ -#define _EFI_SMM_POWER_BUTTON_DISPATCH_H_ - - -// -// Global ID for the Power Button SMI Protocol -// -#define EFI_SMM_POWER_BUTTON_DISPATCH_PROTOCOL_GUID \ - { \ - 0xb709efa0, 0x47a6, 0x4b41, {0xb9, 0x31, 0x12, 0xec, 0xe7, 0xa8, 0xee, 0x56 } \ - } - -typedef struct _EFI_SMM_POWER_BUTTON_DISPATCH_PROTOCOL EFI_SMM_POWER_BUTTON_DISPATCH_PROTOCOL; - -// -// Related Definitions -// -// -// Power Button. Example, Use for changing LEDs before ACPI OS is on. -// - DXE/BDS Phase -// - OS Install Phase -// -typedef enum { - PowerButtonEntry, - PowerButtonExit -} EFI_POWER_BUTTON_PHASE; - -typedef struct { - EFI_POWER_BUTTON_PHASE Phase; -} EFI_SMM_POWER_BUTTON_DISPATCH_CONTEXT; - -// -// Member functions -// -/** - Dispatch function for a Power Button SMI handler. - - @param[in] DispatchHandle The handle of this dispatch function. - @param[in] DispatchContext The pointer to the dispatch function's context. - The DispatchContext fields are filled in - by the dispatching driver prior to - invoking this dispatch function. - -**/ -typedef -VOID -(EFIAPI *EFI_SMM_POWER_BUTTON_DISPATCH)( - IN EFI_HANDLE DispatchHandle, - IN EFI_SMM_POWER_BUTTON_DISPATCH_CONTEXT *DispatchContext - ); - -/** - Provides the parent dispatch service for a given SMI source generator - - @param[in] This The pointer to the - EFI_SMM_POWER_BUTTON_DISPATCH_PROTOCOL instance. - @param[in] DispatchFunction The function to install. - @param[in] DispatchContext The pointer to the dispatch function's context. - Indicates to the register - function the Power Button SMI phase for which - to invoke the dispatch function. - @param[out] DispatchHandle Handle generated by the dispatcher to track - the function instance. - - @retval EFI_SUCCESS The dispatch function has been successfully - registered and the SMI source has been enabled. - @retval EFI_DEVICE_ERROR The driver was unable to enable the SMI source. - @retval EFI_OUT_OF_RESOURCES Not enough memory (system or SMM) to manage this - child. - @retval EFI_INVALID_PARAMETER DispatchContext is invalid. The Power Button SMI - phase is not within valid range. - -**/ -typedef -EFI_STATUS -(EFIAPI *EFI_SMM_POWER_BUTTON_REGISTER)( - IN EFI_SMM_POWER_BUTTON_DISPATCH_PROTOCOL *This, - IN EFI_SMM_POWER_BUTTON_DISPATCH DispatchFunction, - IN EFI_SMM_POWER_BUTTON_DISPATCH_CONTEXT *DispatchContext, - OUT EFI_HANDLE *DispatchHandle - ); - -/** - Unregisters a power-button service. - - @param[in] This The pointer to the EFI_SMM_POWER_BUTTON_DISPATCH_PROTOCOL instance. - @param[in] DispatchHandle The handle of the service to remove. - - @retval EFI_SUCCESS The dispatch function has been successfully - unregistered, and the SMI source has been - disabled, if there are no other registered - child dispatch functions for this SMI - source. - @retval EFI_INVALID_PARAMETER The handle is invalid. - -**/ -typedef -EFI_STATUS -(EFIAPI *EFI_SMM_POWER_BUTTON_UNREGISTER)( - IN EFI_SMM_POWER_BUTTON_DISPATCH_PROTOCOL *This, - IN EFI_HANDLE DispatchHandle - ); - -/** - @par Protocol Description: - Provides the parent dispatch service for the SMM power button SMI source generator. - -**/ -struct _EFI_SMM_POWER_BUTTON_DISPATCH_PROTOCOL { - /// - /// Installs a child service to be dispatched by this protocol. - /// - EFI_SMM_POWER_BUTTON_REGISTER Register; - - /// - /// Removes a child service dispatched by this protocol. - /// - EFI_SMM_POWER_BUTTON_UNREGISTER UnRegister; -}; - -extern EFI_GUID gEfiSmmPowerButtonDispatchProtocolGuid; - -#endif diff --git a/IntelFrameworkPkg/Include/Protocol/SmmStandbyButtonDispatch.h b/IntelFrameworkPkg/Include/Protocol/SmmStandbyButtonDispatch.h deleted file mode 100644 index bb6e6ac79..000000000 --- a/IntelFrameworkPkg/Include/Protocol/SmmStandbyButtonDispatch.h +++ /dev/null @@ -1,143 +0,0 @@ -/** @file - Provides the parent dispatch service for the standby button SMI source generator. - - The SMM Standby Button Dispatch Protocol is defined in - the Intel Platform Innovation Framework for EFI SMM Core Interface Specification - (SMM CIS) Version 0.9. - -Copyright (c) 2007 - 2010, Intel Corporation. All rights reserved.
-This program and the accompanying materials are licensed and made available under -the terms and conditions of the BSD License that accompanies this distribution. -The full text of the license may be found at -http://opensource.org/licenses/bsd-license.php. - -THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, -WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. - - @par Revision Reference: - This Protocol is defined in Framework of EFI SMM Core Interface Spec - Version 0.9. - -**/ - -#ifndef _EFI_SMM_STANDBY_BUTTON_DISPATCH_H_ -#define _EFI_SMM_STANDBY_BUTTON_DISPATCH_H_ - -// -// Share some common definitions with PI SMM -// -#include - -// -// Global ID for the Standby Button SMI Protocol -// -#define EFI_SMM_STANDBY_BUTTON_DISPATCH_PROTOCOL_GUID \ - { \ - 0x78965b98, 0xb0bf, 0x449e, {0x8b, 0x22, 0xd2, 0x91, 0x4e, 0x49, 0x8a, 0x98 } \ - } - -typedef struct _EFI_SMM_STANDBY_BUTTON_DISPATCH_PROTOCOL EFI_SMM_STANDBY_BUTTON_DISPATCH_PROTOCOL; - -// -// Related Definitions -// - -typedef struct { - /// Describes whether the child handler should be invoked upon the entry to the button - /// activation or upon exit (i.e., upon receipt of the button press event or upon release of - /// the event). - EFI_STANDBY_BUTTON_PHASE Phase; -} EFI_SMM_STANDBY_BUTTON_DISPATCH_CONTEXT; - -// -// Member functions -// - -/** - Dispatch function for a Standby Button SMI handler. - - @param DispatchHandle The handle of this dispatch function. - @param DispatchContext The pointer to the dispatch function's context. - The DispatchContext fields are filled in - by the dispatching driver prior to - invoking this dispatch function. - -**/ -typedef -VOID -(EFIAPI *EFI_SMM_STANDBY_BUTTON_DISPATCH)( - IN EFI_HANDLE DispatchHandle, - IN EFI_SMM_STANDBY_BUTTON_DISPATCH_CONTEXT *DispatchContext - ); - -/** - Provides the parent dispatch service for a given SMI source generator - - @param This The pointer to the EFI_SMM_STANDBY_BUTTON_DISPATCH_PROTOCOL instance. - @param DispatchFunction The function to install. - @param DispatchContext The pointer to the dispatch function's context. - Indicates to the register function the Standby - Button SMI phase for which to invoke the dispatch - function. - @param DispatchHandle The handle generated by the dispatcher to track the - function instance. - - @retval EFI_SUCCESS The dispatch function has been successfully - registered, and the SMI source has been enabled. - @retval EFI_DEVICE_ERROR The driver could not enable the SMI source. - @retval EFI_OUT_OF_RESOURCES Not enough memory (system or SMM) to manage this - child. - @retval EFI_INVALID_PARAMETER DispatchContext is invalid. The Standby Button SMI - phase is not within valid range. - -**/ -typedef -EFI_STATUS -(EFIAPI *EFI_SMM_STANDBY_BUTTON_REGISTER)( - IN EFI_SMM_STANDBY_BUTTON_DISPATCH_PROTOCOL *This, - IN EFI_SMM_STANDBY_BUTTON_DISPATCH DispatchFunction, - IN EFI_SMM_STANDBY_BUTTON_DISPATCH_CONTEXT *DispatchContext, - OUT EFI_HANDLE *DispatchHandle - ); - -/** - Unregister a child SMI source dispatch function with a parent SMM driver. - - @param This The pointer to the EFI_SMM_STANDBY_BUTTON_DISPATCH_PROTOCOL instance. - @param DispatchHandle The handle of the service to remove. - - @retval EFI_SUCCESS The dispatch function has been successfully - unregistered, and the SMI source has been disabled, - if there are no other registered child dispatch - functions for this SMI source. - @retval EFI_INVALID_PARAMETER The handle is invalid. - -**/ -typedef -EFI_STATUS -(EFIAPI *EFI_SMM_STANDBY_BUTTON_UNREGISTER)( - IN EFI_SMM_STANDBY_BUTTON_DISPATCH_PROTOCOL *This, - IN EFI_HANDLE DispatchHandle - ); - -// -// Interface structure for the SMM Standby Button SMI Dispatch Protocol -// -/** - This protocol provices the parent dispatch service for the standby button SMI source generator. - Provides the ability to install child handlers for the given event types. - **/ -struct _EFI_SMM_STANDBY_BUTTON_DISPATCH_PROTOCOL { - /// - /// Installs a child service to be dispatched by this protocol. - /// - EFI_SMM_STANDBY_BUTTON_REGISTER Register;\ - /// - /// Removes a child service dispatched by this protocol. - /// - EFI_SMM_STANDBY_BUTTON_UNREGISTER UnRegister; -}; - -extern EFI_GUID gEfiSmmStandbyButtonDispatchProtocolGuid; - -#endif diff --git a/IntelFrameworkPkg/Include/Protocol/SmmSwDispatch.h b/IntelFrameworkPkg/Include/Protocol/SmmSwDispatch.h deleted file mode 100644 index de19e536e..000000000 --- a/IntelFrameworkPkg/Include/Protocol/SmmSwDispatch.h +++ /dev/null @@ -1,151 +0,0 @@ -/** @file - Provides the parent dispatch service for a given SMI source generator. - -Copyright (c) 2007 - 2010, Intel Corporation. All rights reserved.
-This program and the accompanying materials are licensed and made available under -the terms and conditions of the BSD License that accompanies this distribution. -The full text of the license may be found at -http://opensource.org/licenses/bsd-license.php. - -THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, -WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. - - @par Revision Reference: - This Protocol is defined in Framework for EFI SMM Core Interface Spec - Version 0.9. - -**/ - -#ifndef _EFI_SMM_SW_DISPATCH_H_ -#define _EFI_SMM_SW_DISPATCH_H_ - - -// -// Global ID for the SW SMI Protocol -// -#define EFI_SMM_SW_DISPATCH_PROTOCOL_GUID \ - { \ - 0xe541b773, 0xdd11, 0x420c, {0xb0, 0x26, 0xdf, 0x99, 0x36, 0x53, 0xf8, 0xbf } \ - } - -typedef struct _EFI_SMM_SW_DISPATCH_PROTOCOL EFI_SMM_SW_DISPATCH_PROTOCOL; - -// -// Related Definitions -// -// -// A particular chipset may not support all possible software SMI input values. -// For example, the ICH supports only values 00h to 0FFh. The parent only allows a single -// child registration for each SwSmiInputValue. -// -typedef struct { - UINTN SwSmiInputValue; -} EFI_SMM_SW_DISPATCH_CONTEXT; - -// -// Member functions -// -/** - Dispatch function for a Software SMI handler. - - @param DispatchHandle The handle of this dispatch function. - @param DispatchContext The pointer to the dispatch function's context. - The SwSmiInputValue field is filled in - by the software dispatch driver prior to - invoking this dispatch function. - The dispatch function will only be called - for input values for which it is registered. - - @return None - -**/ -typedef -VOID -(EFIAPI *EFI_SMM_SW_DISPATCH)( - IN EFI_HANDLE DispatchHandle, - IN EFI_SMM_SW_DISPATCH_CONTEXT *DispatchContext - ); - -/** - Register a child SMI source dispatch function with a parent SMM driver. - - @param This The pointer to the EFI_SMM_SW_DISPATCH_PROTOCOL instance. - @param DispatchFunction The function to install. - @param DispatchContext The pointer to the dispatch function's context. - Indicates to the register - function the Software SMI input value for which - to invoke the dispatch function. - @param DispatchHandle The handle generated by the dispatcher to track - the function instance. - - @retval EFI_SUCCESS The dispatch function has been successfully - registered and the SMI source has been enabled. - @retval EFI_DEVICE_ERROR The SW driver could not enable the SMI source. - @retval EFI_OUT_OF_RESOURCES Not enough memory (system or SMM) to manage this - child. - @retval EFI_INVALID_PARAMETER DispatchContext is invalid. The SW SMI input value - is not within valid range. - -**/ -typedef -EFI_STATUS -(EFIAPI *EFI_SMM_SW_REGISTER)( - IN EFI_SMM_SW_DISPATCH_PROTOCOL *This, - IN EFI_SMM_SW_DISPATCH DispatchFunction, - IN EFI_SMM_SW_DISPATCH_CONTEXT *DispatchContext, - OUT EFI_HANDLE *DispatchHandle - ); - -/** - Unregister a child SMI source dispatch function with a parent SMM driver - - @param This The pointer to the EFI_SMM_SW_DISPATCH_PROTOCOL instance. - @param DispatchHandle The handle of the service to remove. - - @retval EFI_SUCCESS The dispatch function has been successfully - unregistered and the SMI source has been disabled - if there are no other registered child dispatch - functions for this SMI source. - @retval EFI_INVALID_PARAMETER The handle is invalid. - -**/ -typedef -EFI_STATUS -(EFIAPI *EFI_SMM_SW_UNREGISTER)( - IN EFI_SMM_SW_DISPATCH_PROTOCOL *This, - IN EFI_HANDLE DispatchHandle - ); - - -// -// Interface structure for the SMM Software SMI Dispatch Protocol -// -/** - Provides the parent dispatch service for a given SMI source generator. -**/ -/// -/// Inconsistent with the specification here: -/// In The Framework specification SmmCis, this definition is named as -/// _EFI_SMM_ICHN_DISPATCH_PROTOCOL by mistake. -/// -struct _EFI_SMM_SW_DISPATCH_PROTOCOL { - /// - /// Installs a child service to be dispatched by this protocol. - /// - EFI_SMM_SW_REGISTER Register; - - /// - /// Removes a child service dispatched by this protocol. - /// - EFI_SMM_SW_UNREGISTER UnRegister; - - /// - /// A read-only field that describes the maximum value that can be used - /// in the EFI_SMM_SW_DISPATCH_PROTOCOL.Register() service. - /// - UINTN MaximumSwiValue; -}; - -extern EFI_GUID gEfiSmmSwDispatchProtocolGuid; - -#endif diff --git a/IntelFrameworkPkg/Include/Protocol/SmmSxDispatch.h b/IntelFrameworkPkg/Include/Protocol/SmmSxDispatch.h deleted file mode 100644 index 7d1dec47f..000000000 --- a/IntelFrameworkPkg/Include/Protocol/SmmSxDispatch.h +++ /dev/null @@ -1,135 +0,0 @@ -/** @file - Provides the parent dispatch service for a given Sx-state source generator. - -Copyright (c) 2007 - 2010, Intel Corporation. All rights reserved.
-This program and the accompanying materials are licensed and made available under -the terms and conditions of the BSD License that accompanies this distribution. -The full text of the license may be found at -http://opensource.org/licenses/bsd-license.php. - -THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, -WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. - - @par Revision Reference: - This Protocol is defined in Framework of EFI SMM Core Interface Spec - Version 0.9. - -**/ - -#ifndef _EFI_SMM_SX_DISPATCH_H_ -#define _EFI_SMM_SX_DISPATCH_H_ - -// -// Share some common definitions with PI SMM -// -#include - -// -// Global ID for the Sx SMI Protocol -// -#define EFI_SMM_SX_DISPATCH_PROTOCOL_GUID \ - { \ - 0x14fc52be, 0x1dc, 0x426c, {0x91, 0xae, 0xa2, 0x3c, 0x3e, 0x22, 0xa, 0xe8 } \ - } - -typedef struct _EFI_SMM_SX_DISPATCH_PROTOCOL EFI_SMM_SX_DISPATCH_PROTOCOL; - -typedef struct { - EFI_SLEEP_TYPE Type; - EFI_SLEEP_PHASE Phase; -} EFI_SMM_SX_DISPATCH_CONTEXT; - -// -// Member functions -// -/** - Dispatch function for a Sx state SMI handler. - - @param DispatchHandle The handle of this dispatch function. - @param DispatchContext The pointer to the dispatch function's context. - The Type and Phase fields are filled in by the Sx dispatch driver - prior to invoking this dispatch function. For this interface, - the Sx driver will call the dispatch function for all Sx type - and phases, so the Sx state handler(s) must check the Type and - Phase field of EFI_SMM_SX_DISPATCH_CONTEXT, and act accordingly. - - @return None - -**/ -typedef -VOID -(EFIAPI *EFI_SMM_SX_DISPATCH)( - IN EFI_HANDLE DispatchHandle, - IN EFI_SMM_SX_DISPATCH_CONTEXT *DispatchContext - ); - -/** - Register a child SMI source dispatch function with a parent SMM driver. - - @param This The pointer to the EFI_SMM_SX_DISPATCH_PROTOCOL instance. - @param DispatchFunction The function to install. - @param DispatchContext The pointer to the dispatch function's context. - The caller fills in this context before calling - the register function to indicates to the register - function which Sx state type and phase the caller - wishes to be called back on. For this interface, - the Sx driver will call the registered handlers for - all Sx type and phases, so the Sx state handler(s) - must check the Type and Phase field of the Dispatch - context, and act accordingly. - @param DispatchHandle The handle of dispatch function, for interfacing - with the parent Sx state SMM driver. - - @retval EFI_SUCCESS The dispatch function has been successfully - registered and the SMI source has been enabled. - @retval EFI_UNSUPPORTED The Sx driver or hardware does not support that - Sx Type/Phase. - @retval EFI_DEVICE_ERROR The Sx driver was unable to enable the SMI source. - @retval EFI_OUT_OF_RESOURCES Not enough memory (system or SMM) to manage this - child. - @retval EFI_INVALID_PARAMETER DispatchContext is invalid. Type & Phase are not - within a valid range. - -**/ -typedef -EFI_STATUS -(EFIAPI *EFI_SMM_SX_REGISTER)( - IN EFI_SMM_SX_DISPATCH_PROTOCOL *This, - IN EFI_SMM_SX_DISPATCH DispatchFunction, - IN EFI_SMM_SX_DISPATCH_CONTEXT *DispatchContext, - OUT EFI_HANDLE *DispatchHandle - ); - -/** - Unregisters an Sx-state service - - @param This The pointer to the EFI_SMM_SX_DISPATCH_PROTOCOL instance. - @param DispatchHandle The handle of the service to remove. - - @retval EFI_SUCCESS The dispatch function has been successfully unregistered, and the - SMI source has been disabled, if there are no other registered child - dispatch functions for this SMI source. - @retval EFI_INVALID_PARAMETER Handle is invalid. - -**/ -typedef -EFI_STATUS -(EFIAPI *EFI_SMM_SX_UNREGISTER)( - IN EFI_SMM_SX_DISPATCH_PROTOCOL *This, - IN EFI_HANDLE DispatchHandle - ); - -// -// Interface structure for the SMM Child Dispatch Protocol -// -/** - Provides the parent dispatch service for a given Sx-state source generator. -**/ -struct _EFI_SMM_SX_DISPATCH_PROTOCOL { - EFI_SMM_SX_REGISTER Register; ///< Installs a child service to be dispatched by this protocol. - EFI_SMM_SX_UNREGISTER UnRegister; ///< Removes a child service dispatched by this protocol. -}; - -extern EFI_GUID gEfiSmmSxDispatchProtocolGuid; - -#endif diff --git a/IntelFrameworkPkg/Include/Protocol/SmmUsbDispatch.h b/IntelFrameworkPkg/Include/Protocol/SmmUsbDispatch.h deleted file mode 100644 index c3e081321..000000000 --- a/IntelFrameworkPkg/Include/Protocol/SmmUsbDispatch.h +++ /dev/null @@ -1,136 +0,0 @@ -/** @file - Provides the parent dispatch service for the USB SMI source generator. - -Copyright (c) 2007 - 2010, Intel Corporation. All rights reserved.
-This program and the accompanying materials are licensed and made available under -the terms and conditions of the BSD License that accompanies this distribution. -The full text of the license may be found at -http://opensource.org/licenses/bsd-license.php. - -THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, -WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. - - @par Revision Reference: - This Protocol is defined in Framework of EFI SMM Core Interface Spec - Version 0.9. - -**/ - -#ifndef _EFI_SMM_USB_DISPATCH_H_ -#define _EFI_SMM_USB_DISPATCH_H_ - -// -// Share some common definitions with PI SMM -// -#include - -// -// Global ID for the USB Protocol -// -#define EFI_SMM_USB_DISPATCH_PROTOCOL_GUID \ - { \ - 0xa05b6ffd, 0x87af, 0x4e42, {0x95, 0xc9, 0x62, 0x28, 0xb6, 0x3c, 0xf3, 0xf3 } \ - } - -typedef struct _EFI_SMM_USB_DISPATCH_PROTOCOL EFI_SMM_USB_DISPATCH_PROTOCOL; - -typedef struct { - /// - /// Describes whether this child handler will be invoked in response to a USB legacy - /// emulation event, such as port-trap on the PS/2* keyboard control registers, or to a - /// USB wake event, such as resumption from a sleep state. - /// - EFI_USB_SMI_TYPE Type; - /// - /// The device path is part of the context structure and describes the location of the - /// particular USB host controller in the system for which this register event will occur. - /// This location is important because of the possible integration of several USB host - /// controllers in a system. - /// - EFI_DEVICE_PATH_PROTOCOL *Device; -} EFI_SMM_USB_DISPATCH_CONTEXT; - -// -// Member functions -// -/** - Dispatch function for a USB SMI handler. - - @param[in] DispatchHandle Handle of this dispatch function. - @param[in] DispatchContext Pointer to the dispatch function's context. - The DispatchContext fields are filled in - by the dispatching driver prior to - invoking this dispatch function. - -**/ -typedef -VOID -(EFIAPI *EFI_SMM_USB_DISPATCH)( - IN EFI_HANDLE DispatchHandle, - IN EFI_SMM_USB_DISPATCH_CONTEXT *DispatchContext - ); - -/** - Register a child SMI source dispatch function with a parent SMM driver. - - @param[in] This The pointer to the EFI_SMM_USB_DISPATCH_PROTOCOL instance. - @param[in] DispatchFunction The pointer to dispatch function to be invoked - for this SMI source. - @param[in] DispatchContext The pointer to the dispatch function's context. - The caller fills this context in before calling - the register function to indicate to the register - function the USB SMI types for which the dispatch - function should be invoked. - @param[out] DispatchHandle The handle generated by the dispatcher to track the - function instance. - - @retval EFI_SUCCESS The dispatch function has been successfully - registered and the SMI source has been enabled. - @retval EFI_DEVICE_ERROR The driver was unable to enable the SMI source. - @retval EFI_OUT_OF_RESOURCES Not enough memory (system or SMM) to manage this - child. - @retval EFI_INVALID_PARAMETER DispatchContext is invalid. The USB SMI type - is not within valid range. - -**/ -typedef -EFI_STATUS -(EFIAPI *EFI_SMM_USB_REGISTER)( - IN EFI_SMM_USB_DISPATCH_PROTOCOL *This, - IN EFI_SMM_USB_DISPATCH DispatchFunction, - IN EFI_SMM_USB_DISPATCH_CONTEXT *DispatchContext, - OUT EFI_HANDLE *DispatchHandle - ); - -/** - Unregisters a USB service. - - @param[in] This The pointer to the EFI_SMM_USB_DISPATCH_PROTOCOL instance. - @param[in] DispatchHandle Handle of the service to remove. - - @retval EFI_SUCCESS The dispatch function has been successfully - unregistered and the SMI source has been disabled - if there are no other registered child dispatch - functions for this SMI source. - @retval EFI_INVALID_PARAMETER The DispatchHandle was not valid. - -**/ -typedef -EFI_STATUS -(EFIAPI *EFI_SMM_USB_UNREGISTER)( - IN EFI_SMM_USB_DISPATCH_PROTOCOL *This, - IN EFI_HANDLE DispatchHandle - ); - -/// -/// The EFI_SMM_USB_DISPATCH_PROTOCOL provides the ability to install child handlers for the -/// given event types. -/// -struct _EFI_SMM_USB_DISPATCH_PROTOCOL { - EFI_SMM_USB_REGISTER Register; - EFI_SMM_USB_UNREGISTER UnRegister; -}; - -extern EFI_GUID gEfiSmmUsbDispatchProtocolGuid; - -#endif diff --git a/IntelFrameworkPkg/IntelFrameworkPkg.dec b/IntelFrameworkPkg/IntelFrameworkPkg.dec deleted file mode 100644 index 5cfe99c53..000000000 --- a/IntelFrameworkPkg/IntelFrameworkPkg.dec +++ /dev/null @@ -1,186 +0,0 @@ -## @file -# Intel Framework Package Reference Implementations -# -# This package provides definitions and libraries that comply to Intel Framework Specifications. -# Copyright (c) 2007 - 2015, Intel Corporation. All rights reserved.
-# -# This program and the accompanying materials are licensed and made available -# under the terms and conditions of the BSD License which accompanies this distribution. -# The full text of the license may be found at http://opensource.org/licenses/bsd-license.php -# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, WITHOUT WARRANTIES -# OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. -# -## - -[Defines] - DEC_SPECIFICATION = 0x00010005 - PACKAGE_NAME = IntelFrameworkPkg - PACKAGE_UNI_FILE = IntelFrameworkPkg.uni - PACKAGE_GUID = 2759ded5-bb57-4b06-af4f-c398fa552719 - PACKAGE_VERSION = 0.96 - -[Includes] - Include # Root include for the package - -[Guids] - ## Include/Guid/DataHubRecords.h - gEfiCacheSubClassGuid = { 0x7f0013a7, 0xdc79, 0x4b22, { 0x80, 0x99, 0x11, 0xf7, 0x5f, 0xdc, 0x82, 0x9d }} - - ## Include/Guid/DataHubRecords.h - gEfiMemorySubClassGuid = { 0x4E8F4EBB, 0x64B9, 0x4e05, { 0x9b, 0x18, 0x4c, 0xfe, 0x49, 0x23, 0x50, 0x97 }} - - ## Include/Guid/DataHubRecords.h - gEfiMiscSubClassGuid = { 0x772484B2, 0x7482, 0x4b91, { 0x9f, 0x9a, 0xad, 0x43, 0xf8, 0x1c, 0x58, 0x81 }} - - ## Include/Guid/DataHubRecords.h - gEfiProcessorSubClassGuid = { 0x26fdeb7e, 0xb8af, 0x4ccf, { 0xaa, 0x97, 0x02, 0x63, 0x3c, 0xe4, 0x8c, 0xa7 }} - - ## Include/Guid/Capsule.h - gEfiCapsuleGuid = { 0x3B6686BD, 0x0D76, 0x4030, { 0xB7, 0x0E, 0xB5, 0x51, 0x9E, 0x2F, 0xC5, 0xA0 }} - - ## Include/Guid/Capsule.h - gEfiConfigFileNameGuid = { 0x98B8D59B, 0xE8BA, 0x48EE, { 0x98, 0xDD, 0xC2, 0x95, 0x39, 0x2F, 0x1E, 0xDB }} - - ## Include/Guid/SmramMemoryReserve.h - gEfiSmmPeiSmramMemoryReserveGuid = { 0x6dadf1d1, 0xd4cc, 0x4910, { 0xbb, 0x6e, 0x82, 0xb1, 0xfd, 0x80, 0xff, 0x3d }} - - ## Include/Guid/SmmCommunicate.h - gSmmCommunicateHeaderGuid = { 0xf328e36c, 0x23b6, 0x4a95, { 0x85, 0x4b, 0x32, 0xe1, 0x95, 0x34, 0xcd, 0x75 }} - - ## Include/Guid/FirmwareFileSystem.h - gEfiFirmwareFileSystemGuid = { 0x7A9354D9, 0x0468, 0x444a, {0x81, 0xCE, 0x0B, 0xF6, 0x17, 0xD8, 0x90, 0xDF }} - - ## Include/Guid/BlockIo.h - gEfiPeiIdeBlockIoPpiGuid = { 0x964e5b22, 0x6459, 0x11d2, { 0x8e, 0x39, 0x00, 0xa0, 0xc9, 0x69, 0x72, 0x3b }} - - ## Include/Guid/BlockIo.h - gEfiPei144FloppyBlockIoPpiGuid = { 0xda6855bd, 0x07b7, 0x4c05, { 0x9e, 0xd8, 0xe2, 0x59, 0xfd, 0x36, 0x0e, 0x22 }} - -[Ppis] - ## Include/Ppi/BootScriptExecuter.h - gEfiPeiBootScriptExecuterPpiGuid = { 0xabd42895, 0x78cf, 0x4872, { 0x84, 0x44, 0x1b, 0x5c, 0x18, 0x0b, 0xfb, 0xff }} - - ## Include/Ppi/Security.h - gEfiPeiSecurityPpiGuid = { 0x1388066E, 0x3A57, 0x4EFA, { 0x98, 0xF3, 0xC1, 0x2F, 0x3A, 0x95, 0x8A, 0x29 }} - - ## Include/Ppi/Smbus.h - gEfiPeiSmbusPpiGuid = { 0xabd42895, 0x78cf, 0x4872, { 0x84, 0x44, 0x1b, 0x5c, 0x18, 0x0b, 0xfb, 0xda }} - - ## Include/Ppi/PciCfg.h - gEfiPciCfgPpiInServiceTableGuid = { 0xe1f2eba0, 0xf7b9, 0x4a26, { 0x86, 0x20, 0x13, 0x12, 0x21, 0x64, 0x2a, 0x90 }} - - ## Include/Ppi/ReadOnlyVariable.h - gEfiPeiReadOnlyVariablePpiGuid = { 0x3CDC90C6, 0x13FB, 0x4A75, { 0x9E, 0x79, 0x59, 0xE9, 0xDD, 0x78, 0xB9, 0xFA }} - - ## Include/Ppi/SectionExtraction.h - gEfiPeiSectionExtractionPpiGuid = { 0x4F89E208, 0xE144, 0x4804, { 0x9E, 0xC8, 0x0F, 0x89, 0x4F, 0x7E, 0x36, 0xD7 }} - - ## Include/Ppi/FvLoadFile.h - gEfiPeiFvFileLoaderPpiGuid = { 0x7e1f0d85, 0x4ff, 0x4bb2, { 0x86, 0x6a, 0x31, 0xa2, 0x99, 0x6a, 0x48, 0xa8 }} - - ## Include/Ppi/FindFv.h - gEfiFindFvPpiGuid = { 0x36164812, 0xa023, 0x44e5, { 0xbd, 0x85, 0x05, 0xbf, 0x3c, 0x77, 0x00, 0xaa }} - - ## Include/Ppi/S3Resume.h - gEfiPeiS3ResumePpiGuid = { 0x4426CCB2, 0xE684, 0x4a8a, { 0xae, 0x40, 0x20, 0xd4, 0xb0, 0x25, 0xb7, 0x10 }} - -[Protocols] - ## Include/Protocol/AcpiS3Save.h - gEfiAcpiS3SaveProtocolGuid = { 0x125F2DE1, 0xFB85, 0x440C, { 0xA5, 0x4C, 0x4D, 0x99, 0x35, 0x8A, 0x8D, 0x38 }} - - ## Include/Protocol/AcpiSupport.h - gEfiAcpiSupportProtocolGuid = { 0xdbff9d55, 0x89b7, 0x46da, { 0xbd, 0xdf, 0x67, 0x7d, 0x3d, 0xc0, 0x24, 0x1d }} - - ## Include/Protocol/BootScriptSave.h - gEfiBootScriptSaveProtocolGuid = { 0x470e1529, 0xb79e, 0x4e32, { 0xa0, 0xfe, 0x6a, 0x15, 0x6d, 0x29, 0xf9, 0xb2 }} - - ## Include/Protocol/LegacyBios.h - gEfiLegacyBiosProtocolGuid = { 0xdb9a1e3d, 0x45cb, 0x4abb, { 0x85, 0x3b, 0xe5, 0x38, 0x7f, 0xdb, 0x2e, 0x2d }} - - ## Include/Protocol/LegacyBiosPlatform.h - gEfiLegacyBiosPlatformProtocolGuid = { 0x783658a3, 0x4172, 0x4421, { 0xa2, 0x99, 0xe0, 0x09, 0x07, 0x9c, 0x0c, 0xb4 }} - - ## Include/Protocol/LegacyInterrupt.h - gEfiLegacyInterruptProtocolGuid = { 0x31ce593d, 0x108a, 0x485d, { 0xad, 0xb2, 0x78, 0xf2, 0x1f, 0x29, 0x66, 0xbe }} - - ## Include/Protocol/LegacyRegion.h - gEfiLegacyRegionProtocolGuid = { 0x0fc9013a, 0x0568, 0x4ba9, { 0x9b, 0x7e, 0xc9, 0xc3, 0x90, 0xa6, 0x60, 0x9b }} - - ## Include/Protocol/Legacy8259.h - gEfiLegacy8259ProtocolGuid = { 0x38321dba, 0x4fe0, 0x4e17, { 0x8a, 0xec, 0x41, 0x30, 0x55, 0xea, 0xed, 0xc1 }} - - ## Include/Protocol/CpuIo.h - gEfiCpuIoProtocolGuid = { 0xB0732526, 0x38C8, 0x4b40, { 0x88, 0x77, 0x61, 0xc7, 0xb0, 0x6a, 0xac, 0x45 }} - - ## Include/Protocol/DataHub.h - gEfiDataHubProtocolGuid = { 0xae80d021, 0x618e, 0x11d4, { 0xbc, 0xd7, 0x00, 0x80, 0xc7, 0x3c, 0x88, 0x81 }} - - ## Include/Protocol/FirmwareVolume.h - gEfiFirmwareVolumeProtocolGuid = { 0x389F751F, 0x1838, 0x4388, { 0x83, 0x90, 0xcd, 0x81, 0x54, 0xbd, 0x27, 0xf8 }} - - ## Include/Protocol/SectionExtraction.h - gEfiSectionExtractionProtocolGuid = { 0x448F5DA4, 0x6DD7, 0x4FE1, { 0x93, 0x07, 0x69, 0x22, 0x41, 0x92, 0x21, 0x5D }} - - ## Include/Protocol/FrameworkHii.h - gEfiHiiProtocolGuid = { 0xd7ad636e, 0xb997, 0x459b, { 0xbf, 0x3f, 0x88, 0x46, 0x89, 0x79, 0x80, 0xe1 }} - - ## Include/Protocol/FrameworkHii.h - gEfiHiiCompatibilityProtocolGuid = { 0x5542cce1, 0xdf5c, 0x4d1b, { 0xab, 0xca, 0x36, 0x4f, 0x77, 0xd3, 0x99, 0xfb }} - - ## Include/Protocol/FrameworkMpService.h - gFrameworkEfiMpServiceProtocolGuid = { 0xf33261e7, 0x23cb, 0x11d5, {0xbd, 0x5c, 0x0, 0x80, 0xc7, 0x3c, 0x88, 0x81}} - - ## Include/Protocol/SmmBase.h - gEfiSmmBaseProtocolGuid = { 0x1390954D, 0xda95, 0x4227, { 0x93, 0x28, 0x72, 0x82, 0xc2, 0x17, 0xda, 0xa8 }} - - ## Include/Protocol/SmmAccess.h - gEfiSmmAccessProtocolGuid = { 0x3792095a, 0xe309, 0x4c1e, { 0xaa, 0x01, 0x85, 0xf5, 0x65, 0x5a, 0x17, 0xf1 }} - - ## Include/Protocol/SmmControl.h - gEfiSmmControlProtocolGuid = { 0x8d12e231, 0xc667, 0x4fd1, { 0x98, 0xf2, 0x24, 0x49, 0xa7, 0xe7, 0xb2, 0xe5 }} - - ## Include/Protocol/SmmSwDispatch.h - gEfiSmmSwDispatchProtocolGuid = { 0xe541b773, 0xdd11, 0x420c, { 0xb0, 0x26, 0xdf, 0x99, 0x36, 0x53, 0xf8, 0xbf }} - - ## Include/Protocol/SmmSxDispatch.h - gEfiSmmSxDispatchProtocolGuid = { 0x14fc52be, 0x01dc, 0x426c, { 0x91, 0xae, 0xa2, 0x3c, 0x3e, 0x22, 0x0a, 0xe8 }} - - ## Include/Protocol/SmmPeriodicTimerDispatch.h - gEfiSmmPeriodicTimerDispatchProtocolGuid = { 0x9cca03fc, 0x4c9e, 0x4a19, { 0x9b, 0x06, 0xed, 0x7b, 0x47, 0x9b, 0xde, 0x55 }} - - ## Include/Protocol/SmmUsbDispatch.h - gEfiSmmUsbDispatchProtocolGuid = { 0xa05b6ffd, 0x87af, 0x4e42, { 0x95, 0xc9, 0x62, 0x28, 0xb6, 0x3c, 0xf3, 0xf3 }} - - ## Include/Protocol/SmmGpiDispatch.h - gEfiSmmGpiDispatchProtocolGuid = { 0xe0744b81, 0x9513, 0x49cd, { 0x8c, 0xea, 0xe9, 0x24, 0x5e, 0x70, 0x39, 0xda }} - - ## Include/Protocol/SmmStandbyButtonDispatch.h - gEfiSmmStandbyButtonDispatchProtocolGuid = { 0x78965b98, 0xb0bf, 0x449e, { 0x8b, 0x22, 0xd2, 0x91, 0x4e, 0x49, 0x8a, 0x98 }} - - ## Include/Protocol/SmmPowerButtonDispatch.h - gEfiSmmPowerButtonDispatchProtocolGuid = { 0xb709efa0, 0x47a6, 0x4b41, { 0xb9, 0x31, 0x12, 0xec, 0xe7, 0xa8, 0xee, 0x56 }} - - ## Include/Protocol/SmmIchnDispatch.h - gEfiSmmIchnDispatchProtocolGuid = { 0xc50b323e, 0x9075, 0x4f2a, { 0xac, 0x8e, 0xd2, 0x59, 0x6a, 0x10, 0x85, 0xcc }} - - ## Include/Protocol/SmmCpuIo.h - gEfiSmmCpuIoGuid = { 0x5f439a0b, 0x45d8, 0x4682, {0xa4, 0xf4, 0xf0, 0x57, 0x6b, 0x51, 0x34, 0x41}} - - ## Include/Protocol/FrameworkFormCallback.h - gEfiFormCallbackProtocolGuid = { 0xF3E4543D, 0xCF35, 0x6CEF, { 0x35, 0xC4, 0x4F, 0xE6, 0x34, 0x4D, 0xFC, 0x54 }} - - ## Include/Protocol/FrameworkFormBrowser.h - gEfiFormBrowserProtocolGuid = { 0xE5A1333E, 0xE1B4, 0x4D55, { 0xCE, 0xEB, 0x35, 0xC3, 0xEF, 0x13, 0x34, 0x43 }} - - ## Include/Protocol/FrameworkFormBrowser.h - gEfiFormBrowserCompatibilityProtocolGuid = { 0xfb7c852, 0xadca, 0x4853, { 0x8d, 0xf, 0xfb, 0xa7, 0x1b, 0x1c, 0xe1, 0x1a }} - - ## Include/Protocol/FrameworkFirmwareVolumeBlock.h - gFramerworkEfiFirmwareVolumeBlockProtocolGuid = { 0xDE28BC59, 0x6228, 0x41BD, { 0xBD, 0xF6, 0xA3, 0xB9, 0xAD, 0xB5, 0x8D, 0xA1 }} - - ## Include/Protocol/SmmCpuSaveState.h - gEfiSmmCpuSaveStateProtocolGuid = { 0x21f302ad, 0x6e94, 0x471b, {0x84, 0xbc, 0xb1, 0x48, 0x0, 0x40, 0x3a, 0x1d}} - - -[UserExtensions.TianoCore."ExtraFiles"] - IntelFrameworkPkgExtra.uni diff --git a/IntelFrameworkPkg/IntelFrameworkPkg.dsc b/IntelFrameworkPkg/IntelFrameworkPkg.dsc deleted file mode 100644 index 2985d38bb..000000000 --- a/IntelFrameworkPkg/IntelFrameworkPkg.dsc +++ /dev/null @@ -1,75 +0,0 @@ -## @file -# Intel Framework Package Reference Implementations -# -# This DSC file is used for Package Level build. -# -# Copyright (c) 2007 - 2016, Intel Corporation. All rights reserved.
-# -# This program and the accompanying materials -# are licensed and made available under the terms and conditions of the BSD License -# which accompanies this distribution. The full text of the license may be found at -# http://opensource.org/licenses/bsd-license.php -# -# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, -# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. -# -## - -################################################################################ -# -# Defines Section - statements that will be processed to create a Makefile. -# -################################################################################ -[Defines] - PLATFORM_NAME = IntelFramework - PLATFORM_GUID = E76EB141-6EDB-43f3-A455-EF24A79673DD - PLATFORM_VERSION = 0.96 - DSC_SPECIFICATION = 0x00010005 - OUTPUT_DIRECTORY = Build/IntelFramework - SUPPORTED_ARCHITECTURES = IA32|IPF|X64|EBC|ARM - BUILD_TARGETS = DEBUG|RELEASE|NOOPT - SKUID_IDENTIFIER = DEFAULT - -################################################################################ -# -# Pcd Section - list of all EDK II PCD Entries defined by this Platform -# -################################################################################ -[PcdsFixedAtBuild] - gEfiMdePkgTokenSpaceGuid.PcdDebugPropertyMask|0x0f - -[PcdsPatchableInModule] - gEfiMdePkgTokenSpaceGuid.PcdDebugPrintErrorLevel|0x80000000 - -[PcdsFeatureFlag] - gEfiMdePkgTokenSpaceGuid.PcdComponentNameDisable|FALSE - gEfiMdePkgTokenSpaceGuid.PcdDriverDiagnosticsDisable|FALSE - -################################################################################################### -# -# Components Section - list of the modules and components that will be processed by compilation -# tools and the EDK II tools to generate PE32/PE32+/Coff image files. -# -# Note: The EDK II DSC file is not used to specify how compiled binary images get placed -# into firmware volume images. This section is just a list of modules to compile from -# source into UEFI-compliant binaries. -# It is the FDF file that contains information on combining binary files into firmware -# volume images, whose concept is beyond UEFI and is described in PI specification. -# Binary modules do not need to be listed in this section, as they should be -# specified in the FDF file. For example: Shell binary (Shell_Full.efi), FAT binary (Fat.efi), -# Logo (Logo.bmp), and etc. -# There may also be modules listed in this section that are not required in the FDF file, -# When a module listed here is excluded from FDF file, then UEFI-compliant binary will be -# generated for it, but the binary will not be put into any firmware volume. -# -################################################################################################### -[Components] - IntelFrameworkPkg/Library/DxeIoLibCpuIo/DxeIoLibCpuIo.inf - IntelFrameworkPkg/Library/FrameworkUefiLib/FrameworkUefiLib.inf - IntelFrameworkPkg/Library/DxeSmmDriverEntryPoint/DxeSmmDriverEntryPoint.inf - IntelFrameworkPkg/Library/PeiSmbusLibSmbusPpi/PeiSmbusLibSmbusPpi.inf - IntelFrameworkPkg/Library/PeiHobLibFramework/PeiHobLibFramework.inf - -[BuildOptions] - *_*_*_CC_FLAGS = -D DISABLE_NEW_DEPRECATED_INTERFACES - diff --git a/IntelFrameworkPkg/IntelFrameworkPkg.uni b/IntelFrameworkPkg/IntelFrameworkPkg.uni deleted file mode 100644 index 9b63fd4dd..000000000 --- a/IntelFrameworkPkg/IntelFrameworkPkg.uni +++ /dev/null @@ -1,22 +0,0 @@ -// /** @file -// Intel Framework Package Reference Implementations -// -// This package provides definitions and libraries that comply to Intel Framework Specifications. -// -// Copyright (c) 2007 - 2014, Intel Corporation. All rights reserved.
-// -// This program and the accompanying materials are licensed and made available -// under the terms and conditions of the BSD License which accompanies this distribution. -// The full text of the license may be found at http://opensource.org/licenses/bsd-license.php -// THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, WITHOUT WARRANTIES -// OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. -// -// **/ - - -#string STR_PACKAGE_ABSTRACT #language en-US "Intel Framework Package Reference Implementations" - -#string STR_PACKAGE_DESCRIPTION #language en-US "This package provides definitions and libraries that comply to Intel Framework specifications." - - - diff --git a/IntelFrameworkPkg/IntelFrameworkPkgExtra.uni b/IntelFrameworkPkg/IntelFrameworkPkgExtra.uni deleted file mode 100644 index ca96cc874..000000000 --- a/IntelFrameworkPkg/IntelFrameworkPkgExtra.uni +++ /dev/null @@ -1,18 +0,0 @@ -// /** @file -// IntelFramework Package Localized Strings and Content. -// -// Copyright (c) 2013 - 2014, Intel Corporation. All rights reserved.
-// -// This program and the accompanying materials are licensed and made available -// under the terms and conditions of the BSD License which accompanies this distribution. -// The full text of the license may be found at http://opensource.org/licenses/bsd-license.php -// THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, WITHOUT WARRANTIES -// OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. -// -// **/ - -#string STR_PROPERTIES_PACKAGE_NAME -#language en-US -"IntelFramework package" - - diff --git a/Xcode/Clover/Clover.xcodeproj/project.pbxproj b/Xcode/Clover/Clover.xcodeproj/project.pbxproj index 9fab433f7..f719bcb7a 100644 --- a/Xcode/Clover/Clover.xcodeproj/project.pbxproj +++ b/Xcode/Clover/Clover.xcodeproj/project.pbxproj @@ -115,1441 +115,6 @@ A5816DF62418103A003BA66C /* menu_items.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A5816DF52418103A003BA66C /* menu_items.cpp */; }; A5816DF924181050003BA66C /* REFIT_MENU_SCREEN.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A5816DF72418104F003BA66C /* REFIT_MENU_SCREEN.cpp */; }; A59CB66921BC14AB0054A7CF /* SmbiosGen.c in Sources */ = {isa = PBXBuildFile; fileRef = A59CB66521BC14AA0054A7CF /* SmbiosGen.c */; }; - A5AA044C237F13C0009CD413 /* Nasm.inc in Sources */ = {isa = PBXBuildFile; fileRef = A5AAFD7A237F13BC009CD413 /* Nasm.inc */; }; - A5AA044E237F13C0009CD413 /* PeiServicesTablePointer.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAFFA8237F13BE009CD413 /* PeiServicesTablePointer.c */; }; - A5AA044F237F13C0009CD413 /* StandaloneMmServicesTableLib.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAFFAA237F13BE009CD413 /* StandaloneMmServicesTableLib.c */; }; - A5AA0450237F13C0009CD413 /* PciLib.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAFFB0237F13BE009CD413 /* PciLib.c */; }; - A5AA0451237F13C0009CD413 /* SmbusLib.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAFFB2237F13BE009CD413 /* SmbusLib.c */; }; - A5AA0452237F13C0009CD413 /* PeiSmbusLib.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAFFB4237F13BE009CD413 /* PeiSmbusLib.c */; }; - A5AA0453237F13C0009CD413 /* BaseDebugPrintErrorLevelLib.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAFFB8237F13BE009CD413 /* BaseDebugPrintErrorLevelLib.c */; }; - A5AA0454237F13C0009CD413 /* X86Cache.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAFFBE237F13BE009CD413 /* X86Cache.c */; }; - A5AA0455237F13C0009CD413 /* ArmCache.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAFFBF237F13BE009CD413 /* ArmCache.c */; }; - A5AA0456237F13C0009CD413 /* EbcCache.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAFFC0237F13BE009CD413 /* EbcCache.c */; }; - A5AA0457237F13C0009CD413 /* IoLibMmioBuffer.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAFFC2237F13BE009CD413 /* IoLibMmioBuffer.c */; }; - A5AA0458237F13C0009CD413 /* IoLib.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAFFC3237F13BE009CD413 /* IoLib.c */; }; - A5AA0459237F13C0009CD413 /* IoHighLevel.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAFFC4237F13BE009CD413 /* IoHighLevel.c */; }; - A5AA045A237F13C0009CD413 /* PciLib.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAFFCB237F13BE009CD413 /* PciLib.c */; }; - A5AA045B237F13C0009CD413 /* PeiServicesTablePointer.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAFFCF237F13BE009CD413 /* PeiServicesTablePointer.c */; }; - A5AA045C237F13C0009CD413 /* DebugLib.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAFFD3237F13BE009CD413 /* DebugLib.c */; }; - A5AA045D237F13C0009CD413 /* PciSegmentLib.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAFFD8237F13BE009CD413 /* PciSegmentLib.c */; }; - A5AA045E237F13C0009CD413 /* PeiServicesLib.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAFFDB237F13BE009CD413 /* PeiServicesLib.c */; }; - A5AA045F237F13C0009CD413 /* PciExpressLib.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAFFE0237F13BE009CD413 /* PciExpressLib.c */; }; - A5AA0460237F13C0009CD413 /* S3SmbusLib.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAFFE4237F13BE009CD413 /* S3SmbusLib.c */; }; - A5AA0461237F13C0009CD413 /* Allocate.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAFFE6237F13BE009CD413 /* Allocate.c */; }; - A5AA0462237F13C0009CD413 /* DxeServicesLib.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAFFE7237F13BE009CD413 /* DxeServicesLib.c */; }; - A5AA0463237F13C0009CD413 /* Allocate.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAFFE9237F13BE009CD413 /* Allocate.c */; }; - A5AA0464237F13C0009CD413 /* X86TimerLib.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAFFED237F13BE009CD413 /* X86TimerLib.c */; }; - A5AA0465237F13C0009CD413 /* StandaloneMmDriverEntryPoint.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAFFF3237F13BE009CD413 /* StandaloneMmDriverEntryPoint.c */; }; - A5AA0466237F13C0009CD413 /* PciLib.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAFFF7237F13BE009CD413 /* PciLib.c */; }; - A5AA0467237F13C0009CD413 /* SwapBytes32.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAFFF9237F13BE009CD413 /* SwapBytes32.c */; }; - A5AA0468237F13C0009CD413 /* X86ReadIdtr.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAFFFA237F13BE009CD413 /* X86ReadIdtr.c */; }; - A5AA0469237F13C0009CD413 /* CpuBreakpoint.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAFFFC237F13BE009CD413 /* CpuBreakpoint.c */; }; - A5AA046A237F13C1009CD413 /* SwitchStack.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAFFFD237F13BE009CD413 /* SwitchStack.c */; }; - A5AA046B237F13C1009CD413 /* SetJumpLongJump.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAFFFE237F13BE009CD413 /* SetJumpLongJump.c */; }; - A5AA046C237F13C1009CD413 /* SpeculationBarrier.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAFFFF237F13BE009CD413 /* SpeculationBarrier.c */; }; - A5AA046D237F13C1009CD413 /* DivS64x64Remainder.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0001237F13BE009CD413 /* DivS64x64Remainder.c */; }; - A5AA046E237F13C1009CD413 /* X86WriteIdtr.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0002237F13BE009CD413 /* X86WriteIdtr.c */; }; - A5AA046F237F13C1009CD413 /* FilePaths.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0003237F13BE009CD413 /* FilePaths.c */; }; - A5AA0470237F13C1009CD413 /* X86FxRestore.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0005237F13BE009CD413 /* X86FxRestore.c */; }; - A5AA0471237F13C1009CD413 /* RRotU64.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0006237F13BE009CD413 /* RRotU64.c */; }; - A5AA0472237F13C1009CD413 /* LongJump.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0007237F13BE009CD413 /* LongJump.c */; }; - A5AA0473237F13C1009CD413 /* Cpu.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0008237F13BE009CD413 /* Cpu.c */; }; - A5AA0474237F13C1009CD413 /* GetPowerOfTwo64.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA000A237F13BE009CD413 /* GetPowerOfTwo64.c */; }; - A5AA0475237F13C1009CD413 /* WriteMm4.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA000C237F13BE009CD413 /* WriteMm4.nasm */; }; - A5AA0476237F13C1009CD413 /* WriteDr6.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA000D237F13BE009CD413 /* WriteDr6.nasm */; }; - A5AA0477237F13C1009CD413 /* Nasm.inc in Sources */ = {isa = PBXBuildFile; fileRef = A5AA000E237F13BE009CD413 /* Nasm.inc */; }; - A5AA0478237F13C1009CD413 /* WriteTr.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA000F237F13BE009CD413 /* WriteTr.nasm */; }; - A5AA0479237F13C1009CD413 /* WriteCr4.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0010237F13BE009CD413 /* WriteCr4.nasm */; }; - A5AA047A237F13C1009CD413 /* Mwait.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0011237F13BE009CD413 /* Mwait.nasm */; }; - A5AA047B237F13C1009CD413 /* ReadFs.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0012237F13BE009CD413 /* ReadFs.nasm */; }; - A5AA047C237F13C1009CD413 /* ReadDs.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0013237F13BE009CD413 /* ReadDs.nasm */; }; - A5AA047D237F13C1009CD413 /* FxRestore.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0014237F13BE009CD413 /* FxRestore.nasm */; }; - A5AA047E237F13C1009CD413 /* ReadMm4.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0015237F13BE009CD413 /* ReadMm4.nasm */; }; - A5AA047F237F13C1009CD413 /* ReadDr6.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0016237F13BE009CD413 /* ReadDr6.nasm */; }; - A5AA0480237F13C1009CD413 /* CpuPause.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0017237F13BE009CD413 /* CpuPause.nasm */; }; - A5AA0481237F13C1009CD413 /* ReadCr4.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0018237F13BE009CD413 /* ReadCr4.nasm */; }; - A5AA0482237F13C1009CD413 /* WriteLdtr.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0019237F13BE009CD413 /* WriteLdtr.nasm */; }; - A5AA0483237F13C1009CD413 /* ReadDr7.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA001A237F13BE009CD413 /* ReadDr7.nasm */; }; - A5AA0484237F13C1009CD413 /* SwitchStack.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA001B237F13BE009CD413 /* SwitchStack.nasm */; }; - A5AA0485237F13C1009CD413 /* ReadMm5.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA001C237F13BE009CD413 /* ReadMm5.nasm */; }; - A5AA0486237F13C1009CD413 /* WriteMsr64.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA001D237F13BE009CD413 /* WriteMsr64.nasm */; }; - A5AA0487237F13C1009CD413 /* ReadIdtr.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA001E237F13BE009CD413 /* ReadIdtr.nasm */; }; - A5AA0488237F13C1009CD413 /* WriteDr7.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA001F237F13BE009CD413 /* WriteDr7.nasm */; }; - A5AA0489237F13C1009CD413 /* WriteMm5.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0020237F13BE009CD413 /* WriteMm5.nasm */; }; - A5AA048A237F13C1009CD413 /* ReadMm2.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0021237F13BE009CD413 /* ReadMm2.nasm */; }; - A5AA048B237F13C1009CD413 /* ReadDr0.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0022237F13BE009CD413 /* ReadDr0.nasm */; }; - A5AA048C237F13C1009CD413 /* ReadEs.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0023237F13BE009CD413 /* ReadEs.nasm */; }; - A5AA048D237F13C1009CD413 /* ReadCr2.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0024237F13BE009CD413 /* ReadCr2.nasm */; }; - A5AA048E237F13C1009CD413 /* EnableCache.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0025237F13BE009CD413 /* EnableCache.nasm */; }; - A5AA048F237F13C1009CD413 /* CpuIdEx.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0026237F13BE009CD413 /* CpuIdEx.nasm */; }; - A5AA0490237F13C1009CD413 /* SetJump.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0027237F13BE009CD413 /* SetJump.nasm */; }; - A5AA0491237F13C1009CD413 /* WriteMm2.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0028237F13BE009CD413 /* WriteMm2.nasm */; }; - A5AA0492237F13C1009CD413 /* EnableInterrupts.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0029237F13BE009CD413 /* EnableInterrupts.nasm */; }; - A5AA0493237F13C1009CD413 /* RdRand.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA002A237F13BE009CD413 /* RdRand.nasm */; }; - A5AA0494237F13C1009CD413 /* WriteDr0.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA002B237F13BE009CD413 /* WriteDr0.nasm */; }; - A5AA0495237F13C1009CD413 /* DisableCache.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA002C237F13BE009CD413 /* DisableCache.nasm */; }; - A5AA0496237F13C1009CD413 /* WriteCr2.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA002D237F13BE009CD413 /* WriteCr2.nasm */; }; - A5AA0497237F13C1009CD413 /* ReadGs.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA002E237F13BE009CD413 /* ReadGs.nasm */; }; - A5AA0498237F13C1009CD413 /* WriteGdtr.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA002F237F13BE009CD413 /* WriteGdtr.nasm */; }; - A5AA0499237F13C1009CD413 /* ReadCs.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0030237F13BE009CD413 /* ReadCs.nasm */; }; - A5AA049A237F13C1009CD413 /* EnableDisableInterrupts.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0031237F13BE009CD413 /* EnableDisableInterrupts.nasm */; }; - A5AA049B237F13C1009CD413 /* WriteCr3.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0032237F13BE009CD413 /* WriteCr3.nasm */; }; - A5AA049C237F13C1009CD413 /* WriteDr1.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0033237F13BE009CD413 /* WriteDr1.nasm */; }; - A5AA049D237F13C1009CD413 /* ReadMsr64.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0034237F13BE009CD413 /* ReadMsr64.c */; }; - A5AA049E237F13C1009CD413 /* WriteMm3.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0035237F13BE009CD413 /* WriteMm3.nasm */; }; - A5AA049F237F13C1009CD413 /* Thunk16.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0036237F13BE009CD413 /* Thunk16.nasm */; }; - A5AA04A0237F13C1009CD413 /* ReadCr3.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0037237F13BE009CD413 /* ReadCr3.nasm */; }; - A5AA04A1237F13C1009CD413 /* ReadDr1.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0038237F13BE009CD413 /* ReadDr1.nasm */; }; - A5AA04A2237F13C1009CD413 /* ReadMm3.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0039237F13BE009CD413 /* ReadMm3.nasm */; }; - A5AA04A3237F13C1009CD413 /* ReadCr0.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA003A237F13BE009CD413 /* ReadCr0.nasm */; }; - A5AA04A4237F13C1009CD413 /* DisableInterrupts.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA003B237F13BE009CD413 /* DisableInterrupts.nasm */; }; - A5AA04A5237F13C1009CD413 /* ReadDr2.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA003C237F13BE009CD413 /* ReadDr2.nasm */; }; - A5AA04A6237F13C1009CD413 /* Lfence.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA003D237F13BE009CD413 /* Lfence.nasm */; }; - A5AA04A7237F13C1009CD413 /* ReadMm0.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA003E237F13BE009CD413 /* ReadMm0.nasm */; }; - A5AA04A8237F13C1009CD413 /* DisablePaging64.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA003F237F13BE009CD413 /* DisablePaging64.nasm */; }; - A5AA04A9237F13C1009CD413 /* WriteCr0.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0040237F13BE009CD413 /* WriteCr0.nasm */; }; - A5AA04AA237F13C1009CD413 /* WriteDr2.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0041237F13BE009CD413 /* WriteDr2.nasm */; }; - A5AA04AB237F13C1009CD413 /* WriteMm0.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0042237F13BE009CD413 /* WriteMm0.nasm */; }; - A5AA04AC237F13C1009CD413 /* GccInline.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0043237F13BE009CD413 /* GccInline.c */; }; - A5AA04AD237F13C1009CD413 /* CpuBreakpoint.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0044237F13BE009CD413 /* CpuBreakpoint.c */; }; - A5AA04AE237F13C1009CD413 /* WriteMm1.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0045237F13BE009CD413 /* WriteMm1.nasm */; }; - A5AA04AF237F13C1009CD413 /* ReadTr.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0046237F13BE009CD413 /* ReadTr.nasm */; }; - A5AA04B0237F13C1009CD413 /* WriteDr3.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0047237F13BE009CD413 /* WriteDr3.nasm */; }; - A5AA04B1237F13C1009CD413 /* ReadMm1.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0048237F13BE009CD413 /* ReadMm1.nasm */; }; - A5AA04B2237F13C1009CD413 /* ReadDr3.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0049237F13BE009CD413 /* ReadDr3.nasm */; }; - A5AA04B3237F13C1009CD413 /* CpuBreakpoint.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA004A237F13BE009CD413 /* CpuBreakpoint.nasm */; }; - A5AA04B4237F13C1009CD413 /* Invd.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA004B237F13BE009CD413 /* Invd.nasm */; }; - A5AA04B5237F13C1009CD413 /* LongJump.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA004C237F13BE009CD413 /* LongJump.nasm */; }; - A5AA04B6237F13C1009CD413 /* ReadGdtr.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA004D237F13BE009CD413 /* ReadGdtr.nasm */; }; - A5AA04B7237F13C1009CD413 /* Wbinvd.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA004E237F13BE009CD413 /* Wbinvd.nasm */; }; - A5AA04B8237F13C1009CD413 /* ReadEflags.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA004F237F13BE009CD413 /* ReadEflags.nasm */; }; - A5AA04B9237F13C1009CD413 /* WriteMsr64.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0050237F13BE009CD413 /* WriteMsr64.c */; }; - A5AA04BA237F13C1009CD413 /* Non-existing.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0051237F13BE009CD413 /* Non-existing.c */; }; - A5AA04BB237F13C1009CD413 /* WriteDr4.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0052237F13BE009CD413 /* WriteDr4.nasm */; }; - A5AA04BC237F13C1009CD413 /* FlushCacheLine.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0053237F13BE009CD413 /* FlushCacheLine.nasm */; }; - A5AA04BD237F13C1009CD413 /* WriteMm6.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0054237F13BE009CD413 /* WriteMm6.nasm */; }; - A5AA04BE237F13C1009CD413 /* ReadLdtr.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0055237F13BE009CD413 /* ReadLdtr.nasm */; }; - A5AA04BF237F13C1009CD413 /* WriteIdtr.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0056237F13BE009CD413 /* WriteIdtr.nasm */; }; - A5AA04C0237F13C1009CD413 /* FxSave.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0057237F13BE009CD413 /* FxSave.nasm */; }; - A5AA04C1237F13C1009CD413 /* Monitor.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0058237F13BE009CD413 /* Monitor.nasm */; }; - A5AA04C2237F13C1009CD413 /* ReadDr4.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0059237F13BE009CD413 /* ReadDr4.nasm */; }; - A5AA04C3237F13C1009CD413 /* ReadMm6.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA005A237F13BE009CD413 /* ReadMm6.nasm */; }; - A5AA04C4237F13C1009CD413 /* ReadMsr64.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA005B237F13BE009CD413 /* ReadMsr64.nasm */; }; - A5AA04C5237F13C1009CD413 /* ReadMm7.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA005C237F13BE009CD413 /* ReadMm7.nasm */; }; - A5AA04C6237F13C1009CD413 /* ReadDr5.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA005D237F13BE009CD413 /* ReadDr5.nasm */; }; - A5AA04C7237F13C1009CD413 /* ReadSs.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA005E237F13BE009CD413 /* ReadSs.nasm */; }; - A5AA04C8237F13C1009CD413 /* WriteMm7.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA005F237F13BE009CD413 /* WriteMm7.nasm */; }; - A5AA04C9237F13C1009CD413 /* CpuId.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0060237F13BE009CD413 /* CpuId.nasm */; }; - A5AA04CA237F13C1009CD413 /* WriteDr5.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0061237F13BE009CD413 /* WriteDr5.nasm */; }; - A5AA04CB237F13C1009CD413 /* ReadPmc.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0062237F13BE009CD413 /* ReadPmc.nasm */; }; - A5AA04CC237F13C1009CD413 /* ReadTsc.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0063237F13BE009CD413 /* ReadTsc.nasm */; }; - A5AA04CD237F13C1009CD413 /* X86Msr.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0064237F13BE009CD413 /* X86Msr.c */; }; - A5AA04CE237F13C1009CD413 /* DivU64x64Remainder.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0065237F13BE009CD413 /* DivU64x64Remainder.c */; }; - A5AA04CF237F13C1009CD413 /* X86Thunk.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0066237F13BE009CD413 /* X86Thunk.c */; }; - A5AA04D0237F13C1009CD413 /* CpuDeadLoop.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0067237F13BE009CD413 /* CpuDeadLoop.c */; }; - A5AA04D1237F13C1009CD413 /* LowBitSet64.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0068237F13BE009CD413 /* LowBitSet64.c */; }; - A5AA04D2237F13C1009CD413 /* LRotU64.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0069237F13BE009CD413 /* LRotU64.c */; }; - A5AA04D3237F13C1009CD413 /* X86PatchInstruction.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA006A237F13BE009CD413 /* X86PatchInstruction.c */; }; - A5AA04D4237F13C1009CD413 /* X86FxSave.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA006B237F13BE009CD413 /* X86FxSave.c */; }; - A5AA04D5237F13C1009CD413 /* X86GetInterruptState.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA006C237F13BE009CD413 /* X86GetInterruptState.c */; }; - A5AA04D6237F13C1009CD413 /* CheckSum.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA006D237F13BE009CD413 /* CheckSum.c */; }; - A5AA04D7237F13C1009CD413 /* MultU64x32.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA006E237F13BE009CD413 /* MultU64x32.c */; }; - A5AA04D8237F13C1009CD413 /* String.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA006F237F13BE009CD413 /* String.c */; }; - A5AA04D9237F13C1009CD413 /* X86DisablePaging32.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0070237F13BE009CD413 /* X86DisablePaging32.c */; }; - A5AA04DA237F13C1009CD413 /* BitField.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0071237F13BE009CD413 /* BitField.c */; }; - A5AA04DB237F13C1009CD413 /* X86EnablePaging64.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0072237F13BE009CD413 /* X86EnablePaging64.c */; }; - A5AA04DC237F13C1009CD413 /* HighBitSet64.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0073237F13BE009CD413 /* HighBitSet64.c */; }; - A5AA04DD237F13C1009CD413 /* LShiftU64.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0074237F13BE009CD413 /* LShiftU64.c */; }; - A5AA04DE237F13C1009CD413 /* SafeString.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0075237F13BE009CD413 /* SafeString.c */; }; - A5AA04DF237F13C1009CD413 /* MultS64x64.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0076237F13BE009CD413 /* MultS64x64.c */; }; - A5AA04E0237F13C1009CD413 /* Unaligned.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0077237F13BE009CD413 /* Unaligned.c */; }; - A5AA04E1237F13C1009CD413 /* EnablePaging32.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0079237F13BE009CD413 /* EnablePaging32.c */; }; - A5AA04E2237F13C1009CD413 /* WriteMm4.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA007A237F13BE009CD413 /* WriteMm4.nasm */; }; - A5AA04E3237F13C1009CD413 /* WriteDr3.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA007B237F13BE009CD413 /* WriteDr3.c */; }; - A5AA04E4237F13C1009CD413 /* ReadGdtr.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA007C237F13BE009CD413 /* ReadGdtr.c */; }; - A5AA04E5237F13C1009CD413 /* WriteDr6.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA007D237F13BE009CD413 /* WriteDr6.nasm */; }; - A5AA04E6237F13C1009CD413 /* WriteTr.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA007E237F13BE009CD413 /* WriteTr.nasm */; }; - A5AA04E7237F13C1009CD413 /* WriteCr4.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA007F237F13BE009CD413 /* WriteCr4.nasm */; }; - A5AA04E8237F13C1009CD413 /* ReadDr2.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0080237F13BE009CD413 /* ReadDr2.c */; }; - A5AA04E9237F13C1009CD413 /* Mwait.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0081237F13BE009CD413 /* Mwait.nasm */; }; - A5AA04EA237F13C1009CD413 /* ReadFs.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0082237F13BE009CD413 /* ReadFs.nasm */; }; - A5AA04EB237F13C1009CD413 /* ReadDs.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0083237F13BE009CD413 /* ReadDs.nasm */; }; - A5AA04EC237F13C1009CD413 /* FxRestore.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0084237F13BE009CD413 /* FxRestore.nasm */; }; - A5AA04ED237F13C1009CD413 /* ReadSs.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0085237F13BE009CD413 /* ReadSs.c */; }; - A5AA04EE237F13C1009CD413 /* ReadMm4.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0086237F13BE009CD413 /* ReadMm4.nasm */; }; - A5AA04EF237F13C1009CD413 /* DivS64x64Remainder.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0087237F13BE009CD413 /* DivS64x64Remainder.c */; }; - A5AA04F0237F13C1009CD413 /* Monitor.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0088237F13BE009CD413 /* Monitor.c */; }; - A5AA04F1237F13C1009CD413 /* ReadDr6.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0089237F13BE009CD413 /* ReadDr6.nasm */; }; - A5AA04F2237F13C1009CD413 /* WriteGdtr.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA008A237F13BE009CD413 /* WriteGdtr.c */; }; - A5AA04F3237F13C1009CD413 /* CpuPause.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA008B237F13BE009CD413 /* CpuPause.nasm */; }; - A5AA04F4237F13C1009CD413 /* ReadDr6.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA008C237F13BE009CD413 /* ReadDr6.c */; }; - A5AA04F5237F13C1009CD413 /* ReadPmc.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA008D237F13BE009CD413 /* ReadPmc.c */; }; - A5AA04F6237F13C1009CD413 /* Wbinvd.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA008E237F13BE009CD413 /* Wbinvd.c */; }; - A5AA04F7237F13C1009CD413 /* DisablePaging32.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA008F237F13BE009CD413 /* DisablePaging32.c */; }; - A5AA04F8237F13C1009CD413 /* RShiftU64.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0090237F13BE009CD413 /* RShiftU64.nasm */; }; - A5AA04F9237F13C1009CD413 /* ReadCr4.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0091237F13BE009CD413 /* ReadCr4.nasm */; }; - A5AA04FA237F13C1009CD413 /* Invd.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0092237F13BE009CD413 /* Invd.c */; }; - A5AA04FB237F13C1009CD413 /* WriteDr7.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0093237F13BE009CD413 /* WriteDr7.c */; }; - A5AA04FC237F13C1009CD413 /* WriteMm7.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0094237F13BE009CD413 /* WriteMm7.c */; }; - A5AA04FD237F13C1009CD413 /* RRotU64.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0095237F13BE009CD413 /* RRotU64.c */; }; - A5AA04FE237F13C1009CD413 /* ReadCr2.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0096237F13BE009CD413 /* ReadCr2.c */; }; - A5AA04FF237F13C1009CD413 /* LShiftU64.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0097237F13BE009CD413 /* LShiftU64.nasm */; }; - A5AA0500237F13C1009CD413 /* ReadTr.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0098237F13BE009CD413 /* ReadTr.c */; }; - A5AA0501237F13C1009CD413 /* ReadMm6.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0099237F13BE009CD413 /* ReadMm6.c */; }; - A5AA0502237F13C1009CD413 /* WriteLdtr.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA009A237F13BE009CD413 /* WriteLdtr.nasm */; }; - A5AA0503237F13C1009CD413 /* ReadDr7.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA009B237F13BE009CD413 /* ReadDr7.nasm */; }; - A5AA0504237F13C1009CD413 /* ReadMm5.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA009C237F13BE009CD413 /* ReadMm5.nasm */; }; - A5AA0505237F13C1009CD413 /* WriteCr3.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA009D237F13BE009CD413 /* WriteCr3.c */; }; - A5AA0506237F13C1009CD413 /* WriteMsr64.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA009E237F13BE009CD413 /* WriteMsr64.nasm */; }; - A5AA0507237F13C1009CD413 /* CpuPause.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA009F237F13BE009CD413 /* CpuPause.c */; }; - A5AA0508237F13C1009CD413 /* ReadMm2.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA00A0237F13BE009CD413 /* ReadMm2.c */; }; - A5AA0509237F13C1009CD413 /* ReadIdtr.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA00A1237F13BE009CD413 /* ReadIdtr.nasm */; }; - A5AA050A237F13C1009CD413 /* WriteDr7.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA00A2237F13BE009CD413 /* WriteDr7.nasm */; }; - A5AA050B237F13C1009CD413 /* CpuIdEx.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA00A3237F13BE009CD413 /* CpuIdEx.c */; }; - A5AA050C237F13C1009CD413 /* WriteMm3.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA00A4237F13BE009CD413 /* WriteMm3.c */; }; - A5AA050D237F13C1009CD413 /* WriteMm5.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA00A5237F13BE009CD413 /* WriteMm5.nasm */; }; - A5AA050E237F13C1009CD413 /* ReadDr1.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA00A6237F13BE009CD413 /* ReadDr1.c */; }; - A5AA050F237F13C1009CD413 /* ReadMm2.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA00A7237F13BE009CD413 /* ReadMm2.nasm */; }; - A5AA0510237F13C1009CD413 /* ReadDr0.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA00A8237F13BE009CD413 /* ReadDr0.nasm */; }; - A5AA0511237F13C1009CD413 /* ReadEs.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA00A9237F13BE009CD413 /* ReadEs.nasm */; }; - A5AA0512237F13C1009CD413 /* ReadEs.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA00AA237F13BE009CD413 /* ReadEs.c */; }; - A5AA0513237F13C1009CD413 /* FlushCacheLine.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA00AB237F13BE009CD413 /* FlushCacheLine.c */; }; - A5AA0514237F13C1009CD413 /* ReadCr2.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA00AC237F13BE009CD413 /* ReadCr2.nasm */; }; - A5AA0515237F13C1009CD413 /* WriteDr0.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA00AD237F13BE009CD413 /* WriteDr0.c */; }; - A5AA0516237F13C1009CD413 /* DisableInterrupts.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA00AE237F13BE009CD413 /* DisableInterrupts.c */; }; - A5AA0517237F13C1009CD413 /* EnableCache.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA00AF237F13BE009CD413 /* EnableCache.nasm */; }; - A5AA0518237F13C1009CD413 /* CpuIdEx.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA00B0237F13BE009CD413 /* CpuIdEx.nasm */; }; - A5AA0519237F13C1009CD413 /* SetJump.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA00B1237F13BE009CD413 /* SetJump.nasm */; }; - A5AA051A237F13C1009CD413 /* WriteMm2.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA00B2237F13BE009CD413 /* WriteMm2.nasm */; }; - A5AA051B237F13C1009CD413 /* EnableInterrupts.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA00B3237F13BE009CD413 /* EnableInterrupts.nasm */; }; - A5AA051C237F13C1009CD413 /* RdRand.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA00B4237F13BE009CD413 /* RdRand.nasm */; }; - A5AA051D237F13C1009CD413 /* WriteDr0.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA00B5237F13BE009CD413 /* WriteDr0.nasm */; }; - A5AA051E237F13C1009CD413 /* DisableCache.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA00B6237F13BE009CD413 /* DisableCache.nasm */; }; - A5AA051F237F13C1009CD413 /* LRotU64.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA00B7237F13BE009CD413 /* LRotU64.c */; }; - A5AA0520237F13C1009CD413 /* WriteDr4.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA00B8237F13BE009CD413 /* WriteDr4.c */; }; - A5AA0521237F13C1009CD413 /* WriteCr2.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA00B9237F13BE009CD413 /* WriteCr2.nasm */; }; - A5AA0522237F13C1009CD413 /* ReadGs.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA00BA237F13BE009CD413 /* ReadGs.nasm */; }; - A5AA0523237F13C1009CD413 /* WriteGdtr.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA00BB237F13BE009CD413 /* WriteGdtr.nasm */; }; - A5AA0524237F13C1009CD413 /* ReadDr5.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA00BC237F13BE009CD413 /* ReadDr5.c */; }; - A5AA0525237F13C1009CD413 /* EnableCache.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA00BD237F13BE009CD413 /* EnableCache.c */; }; - A5AA0526237F13C1009CD413 /* ReadMm5.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA00BE237F13BE009CD413 /* ReadMm5.c */; }; - A5AA0527237F13C1009CD413 /* ReadCs.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA00BF237F13BE009CD413 /* ReadCs.nasm */; }; - A5AA0528237F13C1009CD413 /* EnableInterrupts.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA00C0237F13BE009CD413 /* EnableInterrupts.c */; }; - A5AA0529237F13C1009CD413 /* WriteCr0.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA00C1237F13BE009CD413 /* WriteCr0.c */; }; - A5AA052A237F13C1009CD413 /* EnableDisableInterrupts.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA00C2237F13BE009CD413 /* EnableDisableInterrupts.nasm */; }; - A5AA052B237F13C1009CD413 /* MultU64x32.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA00C3237F13BE009CD413 /* MultU64x32.c */; }; - A5AA052C237F13C1009CD413 /* WriteCr3.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA00C4237F13BE009CD413 /* WriteCr3.nasm */; }; - A5AA052D237F13C1009CD413 /* DivU64x64Remainder.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA00C5237F13BE009CD413 /* DivU64x64Remainder.nasm */; }; - A5AA052E237F13C1009CD413 /* WriteMm4.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA00C6237F13BE009CD413 /* WriteMm4.c */; }; - A5AA052F237F13C1009CD413 /* WriteDr1.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA00C7237F13BE009CD413 /* WriteDr1.nasm */; }; - A5AA0530237F13C1009CD413 /* WriteLdtr.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA00C8237F13BE009CD413 /* WriteLdtr.c */; }; - A5AA0531237F13C1009CD413 /* ReadMsr64.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA00C9237F13BE009CD413 /* ReadMsr64.c */; }; - A5AA0532237F13C1009CD413 /* WriteMm3.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA00CA237F13BE009CD413 /* WriteMm3.nasm */; }; - A5AA0533237F13C1009CD413 /* Thunk16.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA00CB237F13BE009CD413 /* Thunk16.nasm */; }; - A5AA0534237F13C1009CD413 /* ReadCr3.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA00CC237F13BE009CD413 /* ReadCr3.nasm */; }; - A5AA0535237F13C1009CD413 /* WriteMm0.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA00CD237F13BE009CD413 /* WriteMm0.c */; }; - A5AA0536237F13C1009CD413 /* ReadDs.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA00CE237F13BE009CD413 /* ReadDs.c */; }; - A5AA0537237F13C1009CD413 /* FxSave.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA00CF237F13BE009CD413 /* FxSave.c */; }; - A5AA0538237F13C1009CD413 /* WriteCr4.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA00D0237F13BE009CD413 /* WriteCr4.c */; }; - A5AA0539237F13C1009CD413 /* ReadDr1.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA00D1237F13BE009CD413 /* ReadDr1.nasm */; }; - A5AA053A237F13C1009CD413 /* ReadMm1.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA00D2237F13BE009CD413 /* ReadMm1.c */; }; - A5AA053B237F13C1009CD413 /* ReadMm3.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA00D3237F13BE009CD413 /* ReadMm3.nasm */; }; - A5AA053C237F13C1009CD413 /* ReadLdtr.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA00D4237F13BE009CD413 /* ReadLdtr.c */; }; - A5AA053D237F13C1009CD413 /* ARShiftU64.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA00D5237F13BE009CD413 /* ARShiftU64.nasm */; }; - A5AA053E237F13C1009CD413 /* LShiftU64.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA00D6237F13BE009CD413 /* LShiftU64.c */; }; - A5AA053F237F13C1009CD413 /* ReadCr0.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA00D7237F13BE009CD413 /* ReadCr0.nasm */; }; - A5AA0540237F13C1009CD413 /* ReadDr0.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA00D8237F13BE009CD413 /* ReadDr0.c */; }; - A5AA0541237F13C1009CD413 /* DisableInterrupts.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA00D9237F13BE009CD413 /* DisableInterrupts.nasm */; }; - A5AA0542237F13C1009CD413 /* SwapBytes64.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA00DA237F13BE009CD413 /* SwapBytes64.nasm */; }; - A5AA0543237F13C1009CD413 /* ReadCs.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA00DB237F13BE009CD413 /* ReadCs.c */; }; - A5AA0544237F13C1009CD413 /* ReadDr2.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA00DC237F13BE009CD413 /* ReadDr2.nasm */; }; - A5AA0545237F13C1009CD413 /* Lfence.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA00DD237F13BE009CD413 /* Lfence.nasm */; }; - A5AA0546237F13C1009CD413 /* ReadMm0.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA00DE237F13BE009CD413 /* ReadMm0.nasm */; }; - A5AA0547237F13C1009CD413 /* WriteDr1.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA00DF237F13BE009CD413 /* WriteDr1.c */; }; - A5AA0548237F13C1009CD413 /* MultU64x64.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA00E0237F13BE009CD413 /* MultU64x64.nasm */; }; - A5AA0549237F13C1009CD413 /* WriteDr5.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA00E1237F13BE009CD413 /* WriteDr5.c */; }; - A5AA054A237F13C1009CD413 /* LRotU64.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA00E2237F13BE009CD413 /* LRotU64.nasm */; }; - A5AA054B237F13C1009CD413 /* Mwait.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA00E3237F13BE009CD413 /* Mwait.c */; }; - A5AA054C237F13C1009CD413 /* WriteCr0.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA00E4237F13BE009CD413 /* WriteCr0.nasm */; }; - A5AA054D237F13C1009CD413 /* RRotU64.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA00E5237F13BE009CD413 /* RRotU64.nasm */; }; - A5AA054E237F13C1009CD413 /* ReadDr4.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA00E6237F13BE009CD413 /* ReadDr4.c */; }; - A5AA054F237F13C1009CD413 /* ReadGs.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA00E7237F13BE009CD413 /* ReadGs.c */; }; - A5AA0550237F13C1009CD413 /* WriteDr2.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA00E8237F13BE009CD413 /* WriteDr2.nasm */; }; - A5AA0551237F13C1009CD413 /* WriteMm0.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA00E9237F13BE009CD413 /* WriteMm0.nasm */; }; - A5AA0552237F13C1009CD413 /* GccInline.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA00EA237F13BE009CD413 /* GccInline.c */; }; - A5AA0553237F13C1009CD413 /* CpuBreakpoint.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA00EB237F13BE009CD413 /* CpuBreakpoint.c */; }; - A5AA0554237F13C1009CD413 /* WriteMm1.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA00EC237F13BE009CD413 /* WriteMm1.nasm */; }; - A5AA0555237F13C1009CD413 /* ReadTr.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA00ED237F13BE009CD413 /* ReadTr.nasm */; }; - A5AA0556237F13C1009CD413 /* InternalSwitchStack.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA00EE237F13BE009CD413 /* InternalSwitchStack.c */; }; - A5AA0557237F13C1009CD413 /* DivU64x32.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA00EF237F13BE009CD413 /* DivU64x32.c */; }; - A5AA0558237F13C1009CD413 /* ReadMm4.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA00F0237F13BE009CD413 /* ReadMm4.c */; }; - A5AA0559237F13C1009CD413 /* DivU64x32Remainder.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA00F1237F13BE009CD413 /* DivU64x32Remainder.c */; }; - A5AA055A237F13C1009CD413 /* WriteDr3.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA00F2237F13BE009CD413 /* WriteDr3.nasm */; }; - A5AA055B237F13C1009CD413 /* ReadFs.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA00F3237F13BE009CD413 /* ReadFs.c */; }; - A5AA055C237F13C1009CD413 /* ReadCr0.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA00F4237F13BE009CD413 /* ReadCr0.c */; }; - A5AA055D237F13C1009CD413 /* CpuId.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA00F5237F13BE009CD413 /* CpuId.c */; }; - A5AA055E237F13C1009CD413 /* MultU64x32.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA00F6237F13BE009CD413 /* MultU64x32.nasm */; }; - A5AA055F237F13C1009CD413 /* WriteMm5.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA00F7237F13BE009CD413 /* WriteMm5.c */; }; - A5AA0560237F13C1009CD413 /* DisablePaging32.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA00F8237F13BE009CD413 /* DisablePaging32.nasm */; }; - A5AA0561237F13C1009CD413 /* SwapBytes64.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA00F9237F13BE009CD413 /* SwapBytes64.c */; }; - A5AA0562237F13C1009CD413 /* RShiftU64.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA00FA237F13BE009CD413 /* RShiftU64.c */; }; - A5AA0563237F13C1009CD413 /* ReadMm1.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA00FB237F13BE009CD413 /* ReadMm1.nasm */; }; - A5AA0564237F13C1009CD413 /* WriteMm1.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA00FC237F13BE009CD413 /* WriteMm1.c */; }; - A5AA0565237F13C1009CD413 /* ReadDr3.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA00FD237F13BE009CD413 /* ReadDr3.nasm */; }; - A5AA0566237F13C1009CD413 /* ReadCr4.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA00FE237F13BE009CD413 /* ReadCr4.c */; }; - A5AA0567237F13C1009CD413 /* DivU64x32.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA00FF237F13BE009CD413 /* DivU64x32.nasm */; }; - A5AA0568237F13C1009CD413 /* CpuBreakpoint.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0100237F13BE009CD413 /* CpuBreakpoint.nasm */; }; - A5AA0569237F13C1009CD413 /* Invd.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0101237F13BE009CD413 /* Invd.nasm */; }; - A5AA056A237F13C1009CD413 /* ReadMm0.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0102237F13BE009CD413 /* ReadMm0.c */; }; - A5AA056B237F13C1009CD413 /* LongJump.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0103237F13BE009CD413 /* LongJump.nasm */; }; - A5AA056C237F13C1009CD413 /* DisableCache.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0104237F13BE009CD413 /* DisableCache.c */; }; - A5AA056D237F13C1009CD413 /* ReadGdtr.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0105237F13BE009CD413 /* ReadGdtr.nasm */; }; - A5AA056E237F13C1009CD413 /* Wbinvd.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0106237F13BE009CD413 /* Wbinvd.nasm */; }; - A5AA056F237F13C1009CD413 /* ReadEflags.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0107237F13BE009CD413 /* ReadEflags.nasm */; }; - A5AA0570237F13C1009CD413 /* FxRestore.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0108237F13BE009CD413 /* FxRestore.c */; }; - A5AA0571237F13C1009CD413 /* WriteMsr64.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0109237F13BE009CD413 /* WriteMsr64.c */; }; - A5AA0572237F13C1009CD413 /* Non-existing.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA010A237F13BE009CD413 /* Non-existing.c */; }; - A5AA0573237F13C1009CD413 /* WriteDr2.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA010B237F13BE009CD413 /* WriteDr2.c */; }; - A5AA0574237F13C1009CD413 /* EnablePaging64.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA010C237F13BE009CD413 /* EnablePaging64.nasm */; }; - A5AA0575237F13C1009CD413 /* WriteDr4.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA010D237F13BE009CD413 /* WriteDr4.nasm */; }; - A5AA0576237F13C1009CD413 /* FlushCacheLine.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA010E237F13BE009CD413 /* FlushCacheLine.nasm */; }; - A5AA0577237F13C1009CD413 /* WriteIdtr.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA010F237F13BE009CD413 /* WriteIdtr.c */; }; - A5AA0578237F13C1009CD413 /* ReadDr3.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0110237F13BE009CD413 /* ReadDr3.c */; }; - A5AA0579237F13C1009CD413 /* WriteMm6.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0111237F13BE009CD413 /* WriteMm6.nasm */; }; - A5AA057A237F13C1009CD413 /* ReadLdtr.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0112237F13BE009CD413 /* ReadLdtr.nasm */; }; - A5AA057B237F13C1009CD413 /* ReadDr7.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0113237F13BE009CD413 /* ReadDr7.c */; }; - A5AA057C237F13C1009CD413 /* ReadEflags.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0114237F13BE009CD413 /* ReadEflags.c */; }; - A5AA057D237F13C1009CD413 /* WriteIdtr.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0115237F13BE009CD413 /* WriteIdtr.nasm */; }; - A5AA057E237F13C1009CD413 /* MultU64x64.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0116237F13BE009CD413 /* MultU64x64.c */; }; - A5AA057F237F13C1009CD413 /* DivU64x32Remainder.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0117237F13BE009CD413 /* DivU64x32Remainder.nasm */; }; - A5AA0580237F13C1009CD413 /* FxSave.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0118237F13BE009CD413 /* FxSave.nasm */; }; - A5AA0581237F13C1009CD413 /* Monitor.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0119237F13BE009CD413 /* Monitor.nasm */; }; - A5AA0582237F13C1009CD413 /* WriteDr6.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA011A237F13BE009CD413 /* WriteDr6.c */; }; - A5AA0583237F13C1009CD413 /* ReadDr4.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA011B237F13BE009CD413 /* ReadDr4.nasm */; }; - A5AA0584237F13C1009CD413 /* ReadMm6.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA011C237F13BE009CD413 /* ReadMm6.nasm */; }; - A5AA0585237F13C1009CD413 /* ReadMsr64.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA011D237F13BE009CD413 /* ReadMsr64.nasm */; }; - A5AA0586237F13C1009CD413 /* ReadIdtr.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA011E237F13BE009CD413 /* ReadIdtr.c */; }; - A5AA0587237F13C1009CD413 /* ARShiftU64.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA011F237F13BE009CD413 /* ARShiftU64.c */; }; - A5AA0588237F13C1009CD413 /* ReadCr3.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0120237F13BE009CD413 /* ReadCr3.c */; }; - A5AA0589237F13C1009CD413 /* ReadMm7.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0121237F13BE009CD413 /* ReadMm7.nasm */; }; - A5AA058A237F13C1009CD413 /* ReadDr5.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0122237F13BE009CD413 /* ReadDr5.nasm */; }; - A5AA058B237F13C1009CD413 /* WriteMm6.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0123237F13BE009CD413 /* WriteMm6.c */; }; - A5AA058C237F13C1009CD413 /* ReadTsc.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0124237F13BE009CD413 /* ReadTsc.c */; }; - A5AA058D237F13C1009CD413 /* WriteCr2.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0125237F13BE009CD413 /* WriteCr2.c */; }; - A5AA058E237F13C1009CD413 /* ModU64x32.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0126237F13BE009CD413 /* ModU64x32.c */; }; - A5AA058F237F13C1009CD413 /* ReadSs.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0127237F13BE009CD413 /* ReadSs.nasm */; }; - A5AA0590237F13C1009CD413 /* ReadMm7.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0128237F13BE009CD413 /* ReadMm7.c */; }; - A5AA0591237F13C1009CD413 /* EnableDisableInterrupts.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0129237F13BE009CD413 /* EnableDisableInterrupts.c */; }; - A5AA0592237F13C1009CD413 /* WriteMm7.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA012A237F13BE009CD413 /* WriteMm7.nasm */; }; - A5AA0593237F13C1009CD413 /* ReadMm3.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA012B237F13BE009CD413 /* ReadMm3.c */; }; - A5AA0594237F13C1009CD413 /* CpuId.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA012C237F13BE009CD413 /* CpuId.nasm */; }; - A5AA0595237F13C1009CD413 /* InternalSwitchStack.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA012D237F13BE009CD413 /* InternalSwitchStack.nasm */; }; - A5AA0596237F13C1009CD413 /* WriteDr5.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA012E237F13BE009CD413 /* WriteDr5.nasm */; }; - A5AA0597237F13C1009CD413 /* ReadPmc.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA012F237F13BE009CD413 /* ReadPmc.nasm */; }; - A5AA0598237F13C1009CD413 /* WriteMm2.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0130237F13BE009CD413 /* WriteMm2.c */; }; - A5AA0599237F13C1009CD413 /* ModU64x32.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0131237F13BE009CD413 /* ModU64x32.nasm */; }; - A5AA059A237F13C1009CD413 /* ReadTsc.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0132237F13BE009CD413 /* ReadTsc.nasm */; }; - A5AA059B237F13C1009CD413 /* EnablePaging32.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0133237F13BE009CD413 /* EnablePaging32.nasm */; }; - A5AA059C237F13C1009CD413 /* GetPowerOfTwo32.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0134237F13BE009CD413 /* GetPowerOfTwo32.c */; }; - A5AA059D237F13C1009CD413 /* Math64.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0135237F13BE009CD413 /* Math64.c */; }; - A5AA059E237F13C1009CD413 /* RRotU32.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0136237F13BE009CD413 /* RRotU32.c */; }; - A5AA059F237F13C1009CD413 /* DivU64x32.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0137237F13BE009CD413 /* DivU64x32.c */; }; - A5AA05A0237F13C1009CD413 /* DivU64x32Remainder.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0138237F13BE009CD413 /* DivU64x32Remainder.c */; }; - A5AA05A1237F13C1009CD413 /* X86MemoryFence.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0139237F13BE009CD413 /* X86MemoryFence.c */; }; - A5AA05A2237F13C1009CD413 /* SwapBytes64.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA013A237F13BE009CD413 /* SwapBytes64.c */; }; - A5AA05A3237F13C1009CD413 /* RShiftU64.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA013B237F13BE009CD413 /* RShiftU64.c */; }; - A5AA05A4237F13C1009CD413 /* SwitchStack.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA013C237F13BE009CD413 /* SwitchStack.c */; }; - A5AA05A5237F13C1009CD413 /* ChkStkGcc.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA013D237F13BE009CD413 /* ChkStkGcc.c */; }; - A5AA05A6237F13C1009CD413 /* SetJump.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA013E237F13BE009CD413 /* SetJump.c */; }; - A5AA05A7237F13C1009CD413 /* X86EnablePaging32.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA013F237F13BE009CD413 /* X86EnablePaging32.c */; }; - A5AA05A8237F13C1009CD413 /* X86WriteGdtr.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0140237F13BE009CD413 /* X86WriteGdtr.c */; }; - A5AA05A9237F13C1009CD413 /* SwapBytes16.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0141237F13BE009CD413 /* SwapBytes16.c */; }; - A5AA05AA237F13C1009CD413 /* HighBitSet32.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0142237F13BF009CD413 /* HighBitSet32.c */; }; - A5AA05AB237F13C1009CD413 /* X86RdRand.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0143237F13BF009CD413 /* X86RdRand.c */; }; - A5AA05AC237F13C1009CD413 /* Math64.S in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0145237F13BF009CD413 /* Math64.S */; }; - A5AA05AD237F13C1009CD413 /* CpuPause.asm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0146237F13BF009CD413 /* CpuPause.asm */; }; - A5AA05AE237F13C1009CD413 /* EnableInterrupts.asm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0147237F13BF009CD413 /* EnableInterrupts.asm */; }; - A5AA05AF237F13C1009CD413 /* SwitchStack.S in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0148237F13BF009CD413 /* SwitchStack.S */; }; - A5AA05B0237F13C1009CD413 /* CpuBreakpoint.S in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0149237F13BF009CD413 /* CpuBreakpoint.S */; }; - A5AA05B1237F13C1009CD413 /* SetJumpLongJump.asm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA014A237F13BF009CD413 /* SetJumpLongJump.asm */; }; - A5AA05B2237F13C1009CD413 /* CpuBreakpoint.asm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA014B237F13BF009CD413 /* CpuBreakpoint.asm */; }; - A5AA05B3237F13C1009CD413 /* GetInterruptsState.S in Sources */ = {isa = PBXBuildFile; fileRef = A5AA014C237F13BF009CD413 /* GetInterruptsState.S */; }; - A5AA05B4237F13C1009CD413 /* MemoryFence.asm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA014D237F13BF009CD413 /* MemoryFence.asm */; }; - A5AA05B5237F13C1009CD413 /* SpeculationBarrier.S in Sources */ = {isa = PBXBuildFile; fileRef = A5AA014E237F13BF009CD413 /* SpeculationBarrier.S */; }; - A5AA05B6237F13C1009CD413 /* DisableInterrupts.asm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA014F237F13BF009CD413 /* DisableInterrupts.asm */; }; - A5AA05B7237F13C1009CD413 /* SetJumpLongJump.S in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0150237F13BF009CD413 /* SetJumpLongJump.S */; }; - A5AA05B8237F13C1009CD413 /* GetInterruptsState.asm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0151237F13BF009CD413 /* GetInterruptsState.asm */; }; - A5AA05B9237F13C1009CD413 /* Unaligned.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0152237F13BF009CD413 /* Unaligned.c */; }; - A5AA05BA237F13C1009CD413 /* InternalSwitchStack.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0153237F13BF009CD413 /* InternalSwitchStack.c */; }; - A5AA05BB237F13C1009CD413 /* SpeculationBarrier.asm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0154237F13BF009CD413 /* SpeculationBarrier.asm */; }; - A5AA05BC237F13C1009CD413 /* MemoryFence.S in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0155237F13BF009CD413 /* MemoryFence.S */; }; - A5AA05BD237F13C1009CD413 /* DisableInterrupts.S in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0156237F13BF009CD413 /* DisableInterrupts.S */; }; - A5AA05BE237F13C1009CD413 /* SwitchStack.asm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0157237F13BF009CD413 /* SwitchStack.asm */; }; - A5AA05BF237F13C1009CD413 /* EnableInterrupts.S in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0158237F13BF009CD413 /* EnableInterrupts.S */; }; - A5AA05C0237F13C1009CD413 /* MultU64x64.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0159237F13BF009CD413 /* MultU64x64.c */; }; - A5AA05C1237F13C1009CD413 /* X86DisablePaging64.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA015A237F13BF009CD413 /* X86DisablePaging64.c */; }; - A5AA05C2237F13C1009CD413 /* X86ReadGdtr.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA015B237F13BF009CD413 /* X86ReadGdtr.c */; }; - A5AA05C3237F13C1009CD413 /* ARShiftU64.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA015C237F13BF009CD413 /* ARShiftU64.c */; }; - A5AA05C4237F13C1009CD413 /* EnableInterrupts.asm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA015E237F13BF009CD413 /* EnableInterrupts.asm */; }; - A5AA05C5237F13C1009CD413 /* SwitchStack.S in Sources */ = {isa = PBXBuildFile; fileRef = A5AA015F237F13BF009CD413 /* SwitchStack.S */; }; - A5AA05C6237F13C1009CD413 /* CpuBreakpoint.S in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0160237F13BF009CD413 /* CpuBreakpoint.S */; }; - A5AA05C7237F13C1009CD413 /* SetJumpLongJump.asm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0161237F13BF009CD413 /* SetJumpLongJump.asm */; }; - A5AA05C8237F13C1009CD413 /* CpuBreakpoint.asm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0162237F13BF009CD413 /* CpuBreakpoint.asm */; }; - A5AA05C9237F13C1009CD413 /* GetInterruptsState.S in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0163237F13BF009CD413 /* GetInterruptsState.S */; }; - A5AA05CA237F13C1009CD413 /* MemoryFence.asm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0164237F13BF009CD413 /* MemoryFence.asm */; }; - A5AA05CB237F13C1009CD413 /* SpeculationBarrier.S in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0165237F13BF009CD413 /* SpeculationBarrier.S */; }; - A5AA05CC237F13C1009CD413 /* DisableInterrupts.asm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0166237F13BF009CD413 /* DisableInterrupts.asm */; }; - A5AA05CD237F13C1009CD413 /* SetJumpLongJump.S in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0167237F13BF009CD413 /* SetJumpLongJump.S */; }; - A5AA05CE237F13C1009CD413 /* GetInterruptsState.asm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0168237F13BF009CD413 /* GetInterruptsState.asm */; }; - A5AA05CF237F13C1009CD413 /* SpeculationBarrier.asm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0169237F13BF009CD413 /* SpeculationBarrier.asm */; }; - A5AA05D0237F13C1009CD413 /* MemoryFence.S in Sources */ = {isa = PBXBuildFile; fileRef = A5AA016A237F13BF009CD413 /* MemoryFence.S */; }; - A5AA05D1237F13C1009CD413 /* DisableInterrupts.S in Sources */ = {isa = PBXBuildFile; fileRef = A5AA016B237F13BF009CD413 /* DisableInterrupts.S */; }; - A5AA05D2237F13C1009CD413 /* SwitchStack.asm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA016C237F13BF009CD413 /* SwitchStack.asm */; }; - A5AA05D3237F13C1009CD413 /* EnableInterrupts.S in Sources */ = {isa = PBXBuildFile; fileRef = A5AA016D237F13BF009CD413 /* EnableInterrupts.S */; }; - A5AA05D4237F13C1009CD413 /* LowBitSet32.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA016E237F13BF009CD413 /* LowBitSet32.c */; }; - A5AA05D5237F13C1009CD413 /* LRotU32.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA016F237F13BF009CD413 /* LRotU32.c */; }; - A5AA05D6237F13C1009CD413 /* ModU64x32.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0170237F13BF009CD413 /* ModU64x32.c */; }; - A5AA05D7237F13C1009CD413 /* LinkedList.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0171237F13BF009CD413 /* LinkedList.c */; }; - A5AA05D8237F13C1009CD413 /* X86SpeculationBarrier.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0172237F13BF009CD413 /* X86SpeculationBarrier.c */; }; - A5AA05D9237F13C1009CD413 /* SetMem64Wrapper.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0174237F13BF009CD413 /* SetMem64Wrapper.c */; }; - A5AA05DA237F13C1009CD413 /* ZeroMemWrapper.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0175237F13BF009CD413 /* ZeroMemWrapper.c */; }; - A5AA05DB237F13C1009CD413 /* CopyMemWrapper.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0176237F13BF009CD413 /* CopyMemWrapper.c */; }; - A5AA05DC237F13C1009CD413 /* ScanMem64Wrapper.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0177237F13BF009CD413 /* ScanMem64Wrapper.c */; }; - A5AA05DD237F13C1009CD413 /* ZeroMem.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0179237F13BF009CD413 /* ZeroMem.nasm */; }; - A5AA05DE237F13C1009CD413 /* CompareMem.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA017A237F13BF009CD413 /* CompareMem.nasm */; }; - A5AA05DF237F13C1009CD413 /* SetMem16.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA017B237F13BF009CD413 /* SetMem16.nasm */; }; - A5AA05E0237F13C1009CD413 /* ScanMem64.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA017C237F13BF009CD413 /* ScanMem64.nasm */; }; - A5AA05E1237F13C1009CD413 /* ScanMem32.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA017D237F13BF009CD413 /* ScanMem32.nasm */; }; - A5AA05E2237F13C1009CD413 /* SetMem.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA017E237F13BF009CD413 /* SetMem.nasm */; }; - A5AA05E3237F13C1009CD413 /* IsZeroBuffer.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA017F237F13BF009CD413 /* IsZeroBuffer.nasm */; }; - A5AA05E4237F13C1009CD413 /* SetMem64.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0180237F13BF009CD413 /* SetMem64.nasm */; }; - A5AA05E5237F13C1009CD413 /* ScanMem8.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0181237F13BF009CD413 /* ScanMem8.nasm */; }; - A5AA05E6237F13C1009CD413 /* SetMem32.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0182237F13BF009CD413 /* SetMem32.nasm */; }; - A5AA05E7237F13C1009CD413 /* ScanMem16.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0183237F13BF009CD413 /* ScanMem16.nasm */; }; - A5AA05E8237F13C1009CD413 /* CopyMem.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0184237F13BF009CD413 /* CopyMem.nasm */; }; - A5AA05E9237F13C1009CD413 /* ScanMem8Wrapper.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0185237F13BF009CD413 /* ScanMem8Wrapper.c */; }; - A5AA05EA237F13C1009CD413 /* SetMem32Wrapper.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0186237F13BF009CD413 /* SetMem32Wrapper.c */; }; - A5AA05EB237F13C1009CD413 /* ZeroMem.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0188237F13BF009CD413 /* ZeroMem.nasm */; }; - A5AA05EC237F13C1009CD413 /* CompareMem.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0189237F13BF009CD413 /* CompareMem.nasm */; }; - A5AA05ED237F13C1009CD413 /* SetMem16.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA018A237F13BF009CD413 /* SetMem16.nasm */; }; - A5AA05EE237F13C1009CD413 /* ScanMem64.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA018B237F13BF009CD413 /* ScanMem64.nasm */; }; - A5AA05EF237F13C1009CD413 /* ScanMem32.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA018C237F13BF009CD413 /* ScanMem32.nasm */; }; - A5AA05F0237F13C1009CD413 /* SetMem.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA018D237F13BF009CD413 /* SetMem.nasm */; }; - A5AA05F1237F13C1009CD413 /* IsZeroBuffer.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA018E237F13BF009CD413 /* IsZeroBuffer.nasm */; }; - A5AA05F2237F13C1009CD413 /* SetMem64.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA018F237F13BF009CD413 /* SetMem64.nasm */; }; - A5AA05F3237F13C1009CD413 /* ScanMem8.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0190237F13BF009CD413 /* ScanMem8.nasm */; }; - A5AA05F4237F13C1009CD413 /* SetMem32.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0191237F13BF009CD413 /* SetMem32.nasm */; }; - A5AA05F5237F13C1009CD413 /* ScanMem16.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0192237F13BF009CD413 /* ScanMem16.nasm */; }; - A5AA05F6237F13C1009CD413 /* CopyMem.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0193237F13BF009CD413 /* CopyMem.nasm */; }; - A5AA05F7237F13C1009CD413 /* ScanMem32Wrapper.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0194237F13BF009CD413 /* ScanMem32Wrapper.c */; }; - A5AA05F8237F13C1009CD413 /* IsZeroBufferWrapper.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0195237F13BF009CD413 /* IsZeroBufferWrapper.c */; }; - A5AA05F9237F13C1009CD413 /* SetMemWrapper.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0196237F13BF009CD413 /* SetMemWrapper.c */; }; - A5AA05FA237F13C1009CD413 /* CompareMemWrapper.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0197237F13BF009CD413 /* CompareMemWrapper.c */; }; - A5AA05FB237F13C1009CD413 /* SetMem16Wrapper.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0198237F13BF009CD413 /* SetMem16Wrapper.c */; }; - A5AA05FC237F13C1009CD413 /* MemLibGuid.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA019A237F13BF009CD413 /* MemLibGuid.c */; }; - A5AA05FD237F13C1009CD413 /* ScanMem16Wrapper.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA019C237F13BF009CD413 /* ScanMem16Wrapper.c */; }; - A5AA05FE237F13C1009CD413 /* Synchronization.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA01A1237F13BF009CD413 /* Synchronization.c */; }; - A5AA05FF237F13C1009CD413 /* InterlockedCompareExchange64.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA01A4237F13BF009CD413 /* InterlockedCompareExchange64.c */; }; - A5AA0600237F13C1009CD413 /* InterlockedIncrement.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA01A5237F13BF009CD413 /* InterlockedIncrement.nasm */; }; - A5AA0601237F13C1009CD413 /* InterlockedCompareExchange16.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA01A6237F13BF009CD413 /* InterlockedCompareExchange16.nasm */; }; - A5AA0602237F13C1009CD413 /* InterlockedCompareExchange16.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA01A7237F13BF009CD413 /* InterlockedCompareExchange16.c */; }; - A5AA0603237F13C1009CD413 /* GccInline.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA01A8237F13BF009CD413 /* GccInline.c */; }; - A5AA0604237F13C1009CD413 /* InterlockedCompareExchange32.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA01A9237F13BF009CD413 /* InterlockedCompareExchange32.c */; }; - A5AA0605237F13C1009CD413 /* InterlockedCompareExchange64.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA01AA237F13BF009CD413 /* InterlockedCompareExchange64.nasm */; }; - A5AA0606237F13C1009CD413 /* InterlockedCompareExchange32.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA01AB237F13BF009CD413 /* InterlockedCompareExchange32.nasm */; }; - A5AA0607237F13C1009CD413 /* InterlockedDecrement.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA01AC237F13BF009CD413 /* InterlockedDecrement.nasm */; }; - A5AA0608237F13C1009CD413 /* InterlockedIncrementMsc.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA01AD237F13BF009CD413 /* InterlockedIncrementMsc.c */; }; - A5AA0609237F13C1009CD413 /* InterlockedCompareExchange64.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA01AF237F13BF009CD413 /* InterlockedCompareExchange64.c */; }; - A5AA060A237F13C1009CD413 /* InternalGetSpinLockProperties.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA01B0237F13BF009CD413 /* InternalGetSpinLockProperties.c */; }; - A5AA060B237F13C1009CD413 /* InterlockedIncrement.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA01B1237F13BF009CD413 /* InterlockedIncrement.nasm */; }; - A5AA060C237F13C1009CD413 /* InterlockedCompareExchange16.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA01B2237F13BF009CD413 /* InterlockedCompareExchange16.nasm */; }; - A5AA060D237F13C1009CD413 /* InterlockedCompareExchange16.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA01B3237F13BF009CD413 /* InterlockedCompareExchange16.c */; }; - A5AA060E237F13C1009CD413 /* GccInline.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA01B4237F13BF009CD413 /* GccInline.c */; }; - A5AA060F237F13C1009CD413 /* InterlockedCompareExchange32.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA01B5237F13BF009CD413 /* InterlockedCompareExchange32.c */; }; - A5AA0610237F13C1009CD413 /* InterlockedCompareExchange64.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA01B6237F13BF009CD413 /* InterlockedCompareExchange64.nasm */; }; - A5AA0611237F13C1009CD413 /* InterlockedCompareExchange32.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA01B7237F13BF009CD413 /* InterlockedCompareExchange32.nasm */; }; - A5AA0612237F13C2009CD413 /* InterlockedDecrement.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA01B8237F13BF009CD413 /* InterlockedDecrement.nasm */; }; - A5AA0613237F13C2009CD413 /* SynchronizationMsc.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA01BA237F13BF009CD413 /* SynchronizationMsc.c */; }; - A5AA0614237F13C2009CD413 /* Synchronization.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA01BB237F13BF009CD413 /* Synchronization.c */; }; - A5AA0615237F13C2009CD413 /* Synchronization.S in Sources */ = {isa = PBXBuildFile; fileRef = A5AA01BD237F13BF009CD413 /* Synchronization.S */; }; - A5AA0616237F13C2009CD413 /* Synchronization.asm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA01BE237F13BF009CD413 /* Synchronization.asm */; }; - A5AA0617237F13C2009CD413 /* Synchronization.S in Sources */ = {isa = PBXBuildFile; fileRef = A5AA01C0237F13BF009CD413 /* Synchronization.S */; }; - A5AA0618237F13C2009CD413 /* Synchronization.asm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA01C1237F13BF009CD413 /* Synchronization.asm */; }; - A5AA0619237F13C2009CD413 /* SynchronizationGcc.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA01C2237F13BF009CD413 /* SynchronizationGcc.c */; }; - A5AA061A237F13C2009CD413 /* InterlockedDecrementMsc.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA01C3237F13BF009CD413 /* InterlockedDecrementMsc.c */; }; - A5AA061B237F13C2009CD413 /* SetMem64Wrapper.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA01C5237F13BF009CD413 /* SetMem64Wrapper.c */; }; - A5AA061C237F13C2009CD413 /* ZeroMemWrapper.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA01C6237F13BF009CD413 /* ZeroMemWrapper.c */; }; - A5AA061D237F13C2009CD413 /* CopyMemWrapper.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA01C7237F13BF009CD413 /* CopyMemWrapper.c */; }; - A5AA061E237F13C2009CD413 /* ScanMem64Wrapper.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA01C8237F13BF009CD413 /* ScanMem64Wrapper.c */; }; - A5AA061F237F13C2009CD413 /* MemLibGeneric.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA01C9237F13BF009CD413 /* MemLibGeneric.c */; }; - A5AA0620237F13C2009CD413 /* ScanMem8Wrapper.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA01CA237F13BF009CD413 /* ScanMem8Wrapper.c */; }; - A5AA0621237F13C2009CD413 /* SetMem32Wrapper.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA01CB237F13BF009CD413 /* SetMem32Wrapper.c */; }; - A5AA0622237F13C2009CD413 /* ScanMem32Wrapper.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA01CC237F13BF009CD413 /* ScanMem32Wrapper.c */; }; - A5AA0623237F13C2009CD413 /* IsZeroBufferWrapper.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA01CD237F13BF009CD413 /* IsZeroBufferWrapper.c */; }; - A5AA0624237F13C2009CD413 /* SetMemWrapper.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA01CE237F13BF009CD413 /* SetMemWrapper.c */; }; - A5AA0625237F13C2009CD413 /* MemLib.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA01CF237F13BF009CD413 /* MemLib.c */; }; - A5AA0626237F13C2009CD413 /* CompareMemWrapper.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA01D0237F13BF009CD413 /* CompareMemWrapper.c */; }; - A5AA0627237F13C2009CD413 /* SetMem16Wrapper.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA01D2237F13BF009CD413 /* SetMem16Wrapper.c */; }; - A5AA0628237F13C2009CD413 /* MemLibGuid.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA01D3237F13BF009CD413 /* MemLibGuid.c */; }; - A5AA0629237F13C2009CD413 /* ScanMem16Wrapper.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA01D6237F13BF009CD413 /* ScanMem16Wrapper.c */; }; - A5AA062A237F13C2009CD413 /* BasePciSegmentLib.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA01DD237F13BF009CD413 /* BasePciSegmentLib.c */; }; - A5AA062B237F13C2009CD413 /* PciSegmentLibCommon.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA01DE237F13BF009CD413 /* PciSegmentLibCommon.c */; }; - A5AA062C237F13C2009CD413 /* DxeRuntimePciSegmentLib.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA01DF237F13BF009CD413 /* DxeRuntimePciSegmentLib.c */; }; - A5AA062D237F13C2009CD413 /* CpuSleepFlushTlb.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA01E2237F13BF009CD413 /* CpuSleepFlushTlb.c */; }; - A5AA062E237F13C2009CD413 /* CpuSleep.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA01E4237F13BF009CD413 /* CpuSleep.nasm */; }; - A5AA062F237F13C2009CD413 /* CpuFlushTlb.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA01E5237F13BF009CD413 /* CpuFlushTlb.nasm */; }; - A5AA0630237F13C2009CD413 /* CpuSleep.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA01E9237F13BF009CD413 /* CpuSleep.c */; }; - A5AA0631237F13C2009CD413 /* CpuFlushTlbGcc.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA01EA237F13BF009CD413 /* CpuFlushTlbGcc.c */; }; - A5AA0632237F13C2009CD413 /* CpuFlushTlb.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA01EB237F13BF009CD413 /* CpuFlushTlb.c */; }; - A5AA0633237F13C2009CD413 /* CpuSleep.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA01EC237F13BF009CD413 /* CpuSleep.nasm */; }; - A5AA0634237F13C2009CD413 /* CpuFlushTlb.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA01ED237F13BF009CD413 /* CpuFlushTlb.nasm */; }; - A5AA0635237F13C2009CD413 /* CpuSleepGcc.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA01EE237F13BF009CD413 /* CpuSleepGcc.c */; }; - A5AA0636237F13C2009CD413 /* CpuFlushTlb.S in Sources */ = {isa = PBXBuildFile; fileRef = A5AA01F0237F13BF009CD413 /* CpuFlushTlb.S */; }; - A5AA0637237F13C2009CD413 /* CpuFlushTlb.asm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA01F1237F13BF009CD413 /* CpuFlushTlb.asm */; }; - A5AA0638237F13C2009CD413 /* CpuSleep.asm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA01F2237F13BF009CD413 /* CpuSleep.asm */; }; - A5AA0639237F13C2009CD413 /* CpuSleep.S in Sources */ = {isa = PBXBuildFile; fileRef = A5AA01F3237F13BF009CD413 /* CpuSleep.S */; }; - A5AA063A237F13C2009CD413 /* CpuFlushTlb.S in Sources */ = {isa = PBXBuildFile; fileRef = A5AA01F5237F13BF009CD413 /* CpuFlushTlb.S */; }; - A5AA063B237F13C2009CD413 /* CpuFlushTlb.asm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA01F6237F13BF009CD413 /* CpuFlushTlb.asm */; }; - A5AA063C237F13C2009CD413 /* CpuSleep.asm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA01F7237F13BF009CD413 /* CpuSleep.asm */; }; - A5AA063D237F13C2009CD413 /* CpuSleep.S in Sources */ = {isa = PBXBuildFile; fileRef = A5AA01F8237F13BF009CD413 /* CpuSleep.S */; }; - A5AA063E237F13C2009CD413 /* PeiExtractGuidedSectionLib.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA01FA237F13BF009CD413 /* PeiExtractGuidedSectionLib.c */; }; - A5AA063F237F13C2009CD413 /* DriverEntryPoint.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA01FE237F13BF009CD413 /* DriverEntryPoint.c */; }; - A5AA0640237F13C2009CD413 /* DebugLibConstructor.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0202237F13BF009CD413 /* DebugLibConstructor.c */; }; - A5AA0641237F13C2009CD413 /* DebugLib.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0203237F13BF009CD413 /* DebugLib.c */; }; - A5AA0642237F13C2009CD413 /* PciExpressLib.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0208237F13BF009CD413 /* PciExpressLib.c */; }; - A5AA0643237F13C2009CD413 /* PciExpressLib.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA020C237F13BF009CD413 /* PciExpressLib.c */; }; - A5AA0644237F13C2009CD413 /* SetMem64Wrapper.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA020E237F13BF009CD413 /* SetMem64Wrapper.c */; }; - A5AA0645237F13C2009CD413 /* ZeroMemWrapper.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA020F237F13BF009CD413 /* ZeroMemWrapper.c */; }; - A5AA0646237F13C2009CD413 /* CopyMemWrapper.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0210237F13BF009CD413 /* CopyMemWrapper.c */; }; - A5AA0647237F13C2009CD413 /* ScanMem64Wrapper.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0211237F13BF009CD413 /* ScanMem64Wrapper.c */; }; - A5AA0648237F13C2009CD413 /* ZeroMem.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0213237F13BF009CD413 /* ZeroMem.nasm */; }; - A5AA0649237F13C2009CD413 /* CompareMem.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0214237F13BF009CD413 /* CompareMem.nasm */; }; - A5AA064A237F13C2009CD413 /* SetMem16.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0215237F13BF009CD413 /* SetMem16.nasm */; }; - A5AA064B237F13C2009CD413 /* ScanMem64.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0216237F13BF009CD413 /* ScanMem64.nasm */; }; - A5AA064C237F13C2009CD413 /* ScanMem32.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0217237F13BF009CD413 /* ScanMem32.nasm */; }; - A5AA064D237F13C2009CD413 /* SetMem.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0218237F13BF009CD413 /* SetMem.nasm */; }; - A5AA064E237F13C2009CD413 /* IsZeroBuffer.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0219237F13BF009CD413 /* IsZeroBuffer.nasm */; }; - A5AA064F237F13C2009CD413 /* SetMem64.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA021A237F13BF009CD413 /* SetMem64.nasm */; }; - A5AA0650237F13C2009CD413 /* ScanMem8.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA021B237F13BF009CD413 /* ScanMem8.nasm */; }; - A5AA0651237F13C2009CD413 /* SetMem32.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA021C237F13BF009CD413 /* SetMem32.nasm */; }; - A5AA0652237F13C2009CD413 /* ScanMem16.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA021D237F13BF009CD413 /* ScanMem16.nasm */; }; - A5AA0653237F13C2009CD413 /* CopyMem.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA021E237F13BF009CD413 /* CopyMem.nasm */; }; - A5AA0654237F13C2009CD413 /* ScanMem8Wrapper.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA021F237F13BF009CD413 /* ScanMem8Wrapper.c */; }; - A5AA0655237F13C2009CD413 /* SetMem32Wrapper.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0220237F13BF009CD413 /* SetMem32Wrapper.c */; }; - A5AA0656237F13C2009CD413 /* ZeroMem.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0222237F13BF009CD413 /* ZeroMem.nasm */; }; - A5AA0657237F13C2009CD413 /* CompareMem.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0223237F13BF009CD413 /* CompareMem.nasm */; }; - A5AA0658237F13C2009CD413 /* SetMem16.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0224237F13BF009CD413 /* SetMem16.nasm */; }; - A5AA0659237F13C2009CD413 /* ScanMem64.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0225237F13BF009CD413 /* ScanMem64.nasm */; }; - A5AA065A237F13C2009CD413 /* ScanMem32.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0226237F13BF009CD413 /* ScanMem32.nasm */; }; - A5AA065B237F13C2009CD413 /* SetMem.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0227237F13BF009CD413 /* SetMem.nasm */; }; - A5AA065C237F13C2009CD413 /* IsZeroBuffer.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0228237F13BF009CD413 /* IsZeroBuffer.nasm */; }; - A5AA065D237F13C2009CD413 /* SetMem64.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0229237F13BF009CD413 /* SetMem64.nasm */; }; - A5AA065E237F13C2009CD413 /* ScanMem8.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA022A237F13BF009CD413 /* ScanMem8.nasm */; }; - A5AA065F237F13C2009CD413 /* SetMem32.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA022B237F13BF009CD413 /* SetMem32.nasm */; }; - A5AA0660237F13C2009CD413 /* ScanMem16.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA022C237F13BF009CD413 /* ScanMem16.nasm */; }; - A5AA0661237F13C2009CD413 /* CopyMem.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA022D237F13BF009CD413 /* CopyMem.nasm */; }; - A5AA0662237F13C2009CD413 /* ScanMem32Wrapper.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA022E237F13BF009CD413 /* ScanMem32Wrapper.c */; }; - A5AA0663237F13C2009CD413 /* IsZeroBufferWrapper.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA022F237F13BF009CD413 /* IsZeroBufferWrapper.c */; }; - A5AA0664237F13C2009CD413 /* SetMemWrapper.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0230237F13BF009CD413 /* SetMemWrapper.c */; }; - A5AA0665237F13C2009CD413 /* CompareMemWrapper.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0231237F13BF009CD413 /* CompareMemWrapper.c */; }; - A5AA0666237F13C2009CD413 /* ScanMemGeneric.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0233237F13BF009CD413 /* ScanMemGeneric.c */; }; - A5AA0667237F13C2009CD413 /* CompareMem.asm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0234237F13BF009CD413 /* CompareMem.asm */; }; - A5AA0668237F13C2009CD413 /* CopyMem.S in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0235237F13BF009CD413 /* CopyMem.S */; }; - A5AA0669237F13C2009CD413 /* SetMem.S in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0236237F13BF009CD413 /* SetMem.S */; }; - A5AA066A237F13C2009CD413 /* ScanMem.asm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0237237F13BF009CD413 /* ScanMem.asm */; }; - A5AA066B237F13C2009CD413 /* CopyMem.asm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0238237F13BF009CD413 /* CopyMem.asm */; }; - A5AA066C237F13C2009CD413 /* CompareMem.S in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0239237F13BF009CD413 /* CompareMem.S */; }; - A5AA066D237F13C2009CD413 /* MemLibGuid.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA023A237F13BF009CD413 /* MemLibGuid.c */; }; - A5AA066E237F13C2009CD413 /* SetMem.asm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA023B237F13BF009CD413 /* SetMem.asm */; }; - A5AA066F237F13C2009CD413 /* CompareGuid.asm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA023C237F13BF009CD413 /* CompareGuid.asm */; }; - A5AA0670237F13C2009CD413 /* CompareGuid.S in Sources */ = {isa = PBXBuildFile; fileRef = A5AA023D237F13BF009CD413 /* CompareGuid.S */; }; - A5AA0671237F13C2009CD413 /* ScanMem.S in Sources */ = {isa = PBXBuildFile; fileRef = A5AA023E237F13BF009CD413 /* ScanMem.S */; }; - A5AA0672237F13C2009CD413 /* SetMem16Wrapper.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0240237F13BF009CD413 /* SetMem16Wrapper.c */; }; - A5AA0673237F13C2009CD413 /* MemLibGuid.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0241237F13BF009CD413 /* MemLibGuid.c */; }; - A5AA0674237F13C2009CD413 /* CopyMem.S in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0243237F13BF009CD413 /* CopyMem.S */; }; - A5AA0675237F13C2009CD413 /* SetMem.S in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0244237F13BF009CD413 /* SetMem.S */; }; - A5AA0676237F13C2009CD413 /* CompareMem.S in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0245237F13BF009CD413 /* CompareMem.S */; }; - A5AA0677237F13C2009CD413 /* CompareGuid.S in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0246237F13BF009CD413 /* CompareGuid.S */; }; - A5AA0678237F13C2009CD413 /* ScanMem.S in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0247237F13BF009CD413 /* ScanMem.S */; }; - A5AA0679237F13C2009CD413 /* ScanMem16Wrapper.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA024A237F13BF009CD413 /* ScanMem16Wrapper.c */; }; - A5AA067A237F13C2009CD413 /* PerformanceLib.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA024C237F13BF009CD413 /* PerformanceLib.c */; }; - A5AA067B237F13C2009CD413 /* PciSegmentLib.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0252237F13BF009CD413 /* PciSegmentLib.c */; }; - A5AA067C237F13C2009CD413 /* PostCode.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0254237F13BF009CD413 /* PostCode.c */; }; - A5AA067D237F13C2009CD413 /* PcdLib.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA025A237F13BF009CD413 /* PcdLib.c */; }; - A5AA067E237F13C2009CD413 /* BaseStackCheckGcc.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA025C237F13BF009CD413 /* BaseStackCheckGcc.c */; }; - A5AA067F237F13C2009CD413 /* BaseStackCheckNull.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA025E237F13BF009CD413 /* BaseStackCheckNull.c */; }; - A5AA0680237F13C2009CD413 /* BaseRng.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0263237F13BF009CD413 /* BaseRng.c */; }; - A5AA0681237F13C2009CD413 /* DxeCoreEntryPoint.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0265237F13BF009CD413 /* DxeCoreEntryPoint.c */; }; - A5AA0682237F13C2009CD413 /* PostCode.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0269237F13BF009CD413 /* PostCode.c */; }; - A5AA0683237F13C2009CD413 /* PeiCoreEntryPoint.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA026F237F13BF009CD413 /* PeiCoreEntryPoint.c */; }; - A5AA0684237F13C2009CD413 /* BasePeCoff.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0272237F13BF009CD413 /* BasePeCoff.c */; }; - A5AA0685237F13C2009CD413 /* PeCoffLoaderEx.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0273237F13BF009CD413 /* PeCoffLoaderEx.c */; }; - A5AA0686237F13C2009CD413 /* PeCoffLoaderEx.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0275237F13BF009CD413 /* PeCoffLoaderEx.c */; }; - A5AA0687237F13C2009CD413 /* SmmLibNull.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA027B237F13BF009CD413 /* SmmLibNull.c */; }; - A5AA0688237F13C2009CD413 /* PciCf8Lib.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA027F237F13BF009CD413 /* PciCf8Lib.c */; }; - A5AA0689237F13C2009CD413 /* MmServicesTableLib.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0283237F13BF009CD413 /* MmServicesTableLib.c */; }; - A5AA068A237F13C2009CD413 /* SafeIntLib64.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0285237F13BF009CD413 /* SafeIntLib64.c */; }; - A5AA068B237F13C2009CD413 /* SafeIntLibEbc.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0286237F13BF009CD413 /* SafeIntLibEbc.c */; }; - A5AA068C237F13C2009CD413 /* SafeIntLib32.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0288237F13BF009CD413 /* SafeIntLib32.c */; }; - A5AA068D237F13C2009CD413 /* SafeIntLib.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0289237F13BF009CD413 /* SafeIntLib.c */; }; - A5AA068E237F13C2009CD413 /* SmmServicesTableLib.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA028B237F13BF009CD413 /* SmmServicesTableLib.c */; }; - A5AA068F237F13C2009CD413 /* DxeExtractGuidedSectionLib.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0291237F13BF009CD413 /* DxeExtractGuidedSectionLib.c */; }; - A5AA0690237F13C2009CD413 /* ApplicationEntryPoint.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0295237F13BF009CD413 /* ApplicationEntryPoint.c */; }; - A5AA0691237F13C2009CD413 /* SetMem64Wrapper.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0297237F13BF009CD413 /* SetMem64Wrapper.c */; }; - A5AA0692237F13C2009CD413 /* ZeroMemWrapper.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0298237F13BF009CD413 /* ZeroMemWrapper.c */; }; - A5AA0693237F13C2009CD413 /* CopyMemWrapper.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA029A237F13BF009CD413 /* CopyMemWrapper.c */; }; - A5AA0694237F13C2009CD413 /* ScanMem64Wrapper.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA029B237F13BF009CD413 /* ScanMem64Wrapper.c */; }; - A5AA0695237F13C2009CD413 /* MemLibGeneric.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA029D237F13BF009CD413 /* MemLibGeneric.c */; }; - A5AA0696237F13C2009CD413 /* ScanMem8Wrapper.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA029E237F13BF009CD413 /* ScanMem8Wrapper.c */; }; - A5AA0697237F13C2009CD413 /* SetMem32Wrapper.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA029F237F13BF009CD413 /* SetMem32Wrapper.c */; }; - A5AA0698237F13C2009CD413 /* CopyMem.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA02A0237F13BF009CD413 /* CopyMem.c */; }; - A5AA0699237F13C2009CD413 /* SetMem.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA02A1237F13BF009CD413 /* SetMem.c */; }; - A5AA069A237F13C2009CD413 /* ScanMem32Wrapper.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA02A2237F13BF009CD413 /* ScanMem32Wrapper.c */; }; - A5AA069B237F13C2009CD413 /* IsZeroBufferWrapper.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA02A3237F13BF009CD413 /* IsZeroBufferWrapper.c */; }; - A5AA069C237F13C2009CD413 /* SetMemWrapper.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA02A4237F13BF009CD413 /* SetMemWrapper.c */; }; - A5AA069D237F13C2009CD413 /* CompareMemWrapper.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA02A5237F13BF009CD413 /* CompareMemWrapper.c */; }; - A5AA069E237F13C2009CD413 /* SetMem16Wrapper.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA02A6237F13BF009CD413 /* SetMem16Wrapper.c */; }; - A5AA069F237F13C2009CD413 /* MemLibGuid.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA02A7237F13BF009CD413 /* MemLibGuid.c */; }; - A5AA06A0237F13C2009CD413 /* ScanMem16Wrapper.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA02A9237F13BF009CD413 /* ScanMem16Wrapper.c */; }; - A5AA06A1237F13C2009CD413 /* IoLibMmioBuffer.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA02AB237F13BF009CD413 /* IoLibMmioBuffer.c */; }; - A5AA06A2237F13C2009CD413 /* IoLib.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA02AC237F13BF009CD413 /* IoLib.c */; }; - A5AA06A3237F13C2009CD413 /* IoHighLevel.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA02AD237F13BF009CD413 /* IoHighLevel.c */; }; - A5AA06A4237F13C2009CD413 /* DxeSmbusLib.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA02B2237F13BF009CD413 /* DxeSmbusLib.c */; }; - A5AA06A5237F13C2009CD413 /* SmbusLib.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA02B3237F13BF009CD413 /* SmbusLib.c */; }; - A5AA06A6237F13C2009CD413 /* BaseSmbusLibNull.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA02B8237F13BF009CD413 /* BaseSmbusLibNull.c */; }; - A5AA06A7237F13C2009CD413 /* TimerLibNull.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA02BE237F13BF009CD413 /* TimerLibNull.c */; }; - A5AA06A8237F13C2009CD413 /* S3IoLib.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA02C2237F13BF009CD413 /* S3IoLib.c */; }; - A5AA06A9237F13C2009CD413 /* DebugLib.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA02C6237F13BF009CD413 /* DebugLib.c */; }; - A5AA06AA237F13C2009CD413 /* SetMem64Wrapper.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA02C8237F13BF009CD413 /* SetMem64Wrapper.c */; }; - A5AA06AB237F13C2009CD413 /* ZeroMemWrapper.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA02C9237F13BF009CD413 /* ZeroMemWrapper.c */; }; - A5AA06AC237F13C2009CD413 /* CopyMemWrapper.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA02CA237F13BF009CD413 /* CopyMemWrapper.c */; }; - A5AA06AD237F13C2009CD413 /* ScanMem64Wrapper.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA02CB237F13BF009CD413 /* ScanMem64Wrapper.c */; }; - A5AA06AE237F13C2009CD413 /* ZeroMem.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA02CD237F13BF009CD413 /* ZeroMem.nasm */; }; - A5AA06AF237F13C2009CD413 /* CompareMem.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA02CE237F13BF009CD413 /* CompareMem.nasm */; }; - A5AA06B0237F13C2009CD413 /* SetMem16.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA02CF237F13BF009CD413 /* SetMem16.nasm */; }; - A5AA06B1237F13C2009CD413 /* ScanMem64.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA02D0237F13BF009CD413 /* ScanMem64.nasm */; }; - A5AA06B2237F13C2009CD413 /* ScanMem32.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA02D1237F13BF009CD413 /* ScanMem32.nasm */; }; - A5AA06B3237F13C2009CD413 /* SetMem.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA02D2237F13BF009CD413 /* SetMem.nasm */; }; - A5AA06B4237F13C2009CD413 /* IsZeroBuffer.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA02D3237F13BF009CD413 /* IsZeroBuffer.nasm */; }; - A5AA06B5237F13C2009CD413 /* SetMem64.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA02D4237F13BF009CD413 /* SetMem64.nasm */; }; - A5AA06B6237F13C2009CD413 /* ScanMem8.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA02D5237F13BF009CD413 /* ScanMem8.nasm */; }; - A5AA06B7237F13C2009CD413 /* SetMem32.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA02D6237F13BF009CD413 /* SetMem32.nasm */; }; - A5AA06B8237F13C2009CD413 /* ScanMem16.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA02D7237F13BF009CD413 /* ScanMem16.nasm */; }; - A5AA06B9237F13C2009CD413 /* CopyMem.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA02D8237F13BF009CD413 /* CopyMem.nasm */; }; - A5AA06BA237F13C2009CD413 /* ScanMem8Wrapper.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA02DA237F13BF009CD413 /* ScanMem8Wrapper.c */; }; - A5AA06BB237F13C2009CD413 /* SetMem32Wrapper.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA02DC237F13BF009CD413 /* SetMem32Wrapper.c */; }; - A5AA06BC237F13C2009CD413 /* ZeroMem.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA02DE237F13BF009CD413 /* ZeroMem.nasm */; }; - A5AA06BD237F13C2009CD413 /* CompareMem.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA02DF237F13BF009CD413 /* CompareMem.nasm */; }; - A5AA06BE237F13C2009CD413 /* SetMem16.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA02E0237F13BF009CD413 /* SetMem16.nasm */; }; - A5AA06BF237F13C2009CD413 /* ScanMem64.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA02E1237F13BF009CD413 /* ScanMem64.nasm */; }; - A5AA06C0237F13C2009CD413 /* ScanMem32.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA02E2237F13BF009CD413 /* ScanMem32.nasm */; }; - A5AA06C1237F13C2009CD413 /* SetMem.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA02E3237F13BF009CD413 /* SetMem.nasm */; }; - A5AA06C2237F13C2009CD413 /* IsZeroBuffer.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA02E4237F13BF009CD413 /* IsZeroBuffer.nasm */; }; - A5AA06C3237F13C2009CD413 /* SetMem64.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA02E5237F13BF009CD413 /* SetMem64.nasm */; }; - A5AA06C4237F13C2009CD413 /* ScanMem8.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA02E6237F13BF009CD413 /* ScanMem8.nasm */; }; - A5AA06C5237F13C2009CD413 /* SetMem32.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA02E7237F13BF009CD413 /* SetMem32.nasm */; }; - A5AA06C6237F13C2009CD413 /* ScanMem16.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA02E8237F13BF009CD413 /* ScanMem16.nasm */; }; - A5AA06C7237F13C2009CD413 /* CopyMem.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA02E9237F13BF009CD413 /* CopyMem.nasm */; }; - A5AA06C8237F13C2009CD413 /* ScanMem32Wrapper.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA02EA237F13BF009CD413 /* ScanMem32Wrapper.c */; }; - A5AA06C9237F13C2009CD413 /* IsZeroBufferWrapper.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA02EB237F13BF009CD413 /* IsZeroBufferWrapper.c */; }; - A5AA06CA237F13C2009CD413 /* SetMemWrapper.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA02EC237F13BF009CD413 /* SetMemWrapper.c */; }; - A5AA06CB237F13C2009CD413 /* CompareMemWrapper.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA02ED237F13BF009CD413 /* CompareMemWrapper.c */; }; - A5AA06CC237F13C2009CD413 /* SetMem16Wrapper.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA02EE237F13BF009CD413 /* SetMem16Wrapper.c */; }; - A5AA06CD237F13C2009CD413 /* MemLibGuid.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA02EF237F13BF009CD413 /* MemLibGuid.c */; }; - A5AA06CE237F13C2009CD413 /* ScanMem16Wrapper.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA02F1237F13BF009CD413 /* ScanMem16Wrapper.c */; }; - A5AA06CF237F13C2009CD413 /* BaseUefiDecompressLib.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA02F7237F13BF009CD413 /* BaseUefiDecompressLib.c */; }; - A5AA06D0237F13C2009CD413 /* BaseUefiTianoCustomDecompressLib.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA02F8237F13BF009CD413 /* BaseUefiTianoCustomDecompressLib.c */; }; - A5AA06D1237F13C2009CD413 /* BaseSerialPortLibNull.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA02FC237F13BF009CD413 /* BaseSerialPortLibNull.c */; }; - A5AA06D2237F13C2009CD413 /* BootScriptLib.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA02FF237F13BF009CD413 /* BootScriptLib.c */; }; - A5AA06D3237F13C2009CD413 /* DxePcdLib.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0302237F13BF009CD413 /* DxePcdLib.c */; }; - A5AA06D4237F13C2009CD413 /* SmmPeriodicSmiLib.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0308237F13BF009CD413 /* SmmPeriodicSmiLib.c */; }; - A5AA06D5237F13C2009CD413 /* UefiScsiLib.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA030A237F13BF009CD413 /* UefiScsiLib.c */; }; - A5AA06D6237F13C2009CD413 /* PeiResourcePublicationLib.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA030E237F13BF009CD413 /* PeiResourcePublicationLib.c */; }; - A5AA06D7237F13C2009CD413 /* HobLib.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0314237F13BF009CD413 /* HobLib.c */; }; - A5AA06D8237F13C2009CD413 /* S3PciSegmentLib.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0316237F13BF009CD413 /* S3PciSegmentLib.c */; }; - A5AA06D9237F13C2009CD413 /* PciSegmentInfoLib.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA031C237F13BF009CD413 /* PciSegmentInfoLib.c */; }; - A5AA06DA237F13C2009CD413 /* MemoryAllocationLib.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA031E237F13BF009CD413 /* MemoryAllocationLib.c */; }; - A5AA06DB237F13C2009CD413 /* BaseExtractGuidedSectionLib.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0324237F13BF009CD413 /* BaseExtractGuidedSectionLib.c */; }; - A5AA06DC237F13C2009CD413 /* UefiBootServicesTableLib.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0328237F13BF009CD413 /* UefiBootServicesTableLib.c */; }; - A5AA06DD237F13C2009CD413 /* DebugLibConstructor.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA032A237F13BF009CD413 /* DebugLibConstructor.c */; }; - A5AA06DE237F13C2009CD413 /* DebugLib.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA032D237F13BF009CD413 /* DebugLib.c */; }; - A5AA06DF237F13C2009CD413 /* MemoryAllocationLib.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA032F237F13C0009CD413 /* MemoryAllocationLib.c */; }; - A5AA06E0237F13C2009CD413 /* DevicePathUtilities.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0333237F13C0009CD413 /* DevicePathUtilities.c */; }; - A5AA06E1237F13C2009CD413 /* UefiDevicePathLib.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0334237F13C0009CD413 /* UefiDevicePathLib.c */; }; - A5AA06E2237F13C2009CD413 /* DevicePathFromText.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0335237F13C0009CD413 /* DevicePathFromText.c */; }; - A5AA06E3237F13C2009CD413 /* DevicePathToText.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0337237F13C0009CD413 /* DevicePathToText.c */; }; - A5AA06E4237F13C2009CD413 /* UefiDevicePathLibOptionalDevicePathProtocol.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0338237F13C0009CD413 /* UefiDevicePathLibOptionalDevicePathProtocol.c */; }; - A5AA06E5237F13C2009CD413 /* HobLib.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0340237F13C0009CD413 /* HobLib.c */; }; - A5AA06E6237F13C2009CD413 /* SetMem64Wrapper.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0342237F13C0009CD413 /* SetMem64Wrapper.c */; }; - A5AA06E7237F13C2009CD413 /* ZeroMemWrapper.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0343237F13C0009CD413 /* ZeroMemWrapper.c */; }; - A5AA06E8237F13C2009CD413 /* CopyMemWrapper.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0344237F13C0009CD413 /* CopyMemWrapper.c */; }; - A5AA06E9237F13C2009CD413 /* ScanMem64Wrapper.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0345237F13C0009CD413 /* ScanMem64Wrapper.c */; }; - A5AA06EA237F13C2009CD413 /* MemLibGeneric.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0346237F13C0009CD413 /* MemLibGeneric.c */; }; - A5AA06EB237F13C2009CD413 /* ScanMem8Wrapper.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0348237F13C0009CD413 /* ScanMem8Wrapper.c */; }; - A5AA06EC237F13C2009CD413 /* SetMem32Wrapper.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA034A237F13C0009CD413 /* SetMem32Wrapper.c */; }; - A5AA06ED237F13C2009CD413 /* ScanMem32Wrapper.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA034B237F13C0009CD413 /* ScanMem32Wrapper.c */; }; - A5AA06EE237F13C2009CD413 /* IsZeroBufferWrapper.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA034C237F13C0009CD413 /* IsZeroBufferWrapper.c */; }; - A5AA06EF237F13C2009CD413 /* SetMemWrapper.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA034D237F13C0009CD413 /* SetMemWrapper.c */; }; - A5AA06F0237F13C2009CD413 /* MemLib.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA034E237F13C0009CD413 /* MemLib.c */; }; - A5AA06F1237F13C2009CD413 /* CompareMemWrapper.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA034F237F13C0009CD413 /* CompareMemWrapper.c */; }; - A5AA06F2237F13C2009CD413 /* SetMem16Wrapper.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0350237F13C0009CD413 /* SetMem16Wrapper.c */; }; - A5AA06F3237F13C2009CD413 /* MemLibGuid.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0351237F13C0009CD413 /* MemLibGuid.c */; }; - A5AA06F4237F13C2009CD413 /* ScanMem16Wrapper.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0353237F13C0009CD413 /* ScanMem16Wrapper.c */; }; - A5AA06F5237F13C2009CD413 /* IoLibEbc.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0356237F13C0009CD413 /* IoLibEbc.c */; }; - A5AA06F6237F13C2009CD413 /* IoLibGcc.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0358237F13C0009CD413 /* IoLibGcc.c */; }; - A5AA06F7237F13C2009CD413 /* IoLibMmioBuffer.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA035B237F13C0009CD413 /* IoLibMmioBuffer.c */; }; - A5AA06F8237F13C2009CD413 /* IoFifo.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA035D237F13C0009CD413 /* IoFifo.nasm */; }; - A5AA06F9237F13C2009CD413 /* IoFifoSev.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA035E237F13C0009CD413 /* IoFifoSev.nasm */; }; - A5AA06FA237F13C2009CD413 /* IoLib.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA035F237F13C0009CD413 /* IoLib.c */; }; - A5AA06FB237F13C2009CD413 /* IoHighLevel.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0360237F13C0009CD413 /* IoHighLevel.c */; }; - A5AA06FC237F13C2009CD413 /* IoLibMsc.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0361237F13C0009CD413 /* IoLibMsc.c */; }; - A5AA06FD237F13C2009CD413 /* IoFifo.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0363237F13C0009CD413 /* IoFifo.nasm */; }; - A5AA06FE237F13C2009CD413 /* IoFifoSev.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0364237F13C0009CD413 /* IoFifoSev.nasm */; }; - A5AA06FF237F13C2009CD413 /* IoLibArm.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0365237F13C0009CD413 /* IoLibArm.c */; }; - A5AA0700237F13C2009CD413 /* ArmVirtMmio.S in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0367237F13C0009CD413 /* ArmVirtMmio.S */; }; - A5AA0701237F13C2009CD413 /* ArmVirtMmio.asm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0368237F13C0009CD413 /* ArmVirtMmio.asm */; }; - A5AA0702237F13C2009CD413 /* ArmVirtMmio.S in Sources */ = {isa = PBXBuildFile; fileRef = A5AA036B237F13C0009CD413 /* ArmVirtMmio.S */; }; - A5AA0703237F13C2009CD413 /* ArmVirtMmio.asm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA036C237F13C0009CD413 /* ArmVirtMmio.asm */; }; - A5AA0704237F13C2009CD413 /* IoLibArmVirt.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA036D237F13C0009CD413 /* IoLibArmVirt.c */; }; - A5AA0705237F13C2009CD413 /* PciSegmentLib.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0372237F13C0009CD413 /* PciSegmentLib.c */; }; - A5AA0706237F13C2009CD413 /* PeCoffGetEntryPoint.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0376237F13C0009CD413 /* PeCoffGetEntryPoint.c */; }; - A5AA0707237F13C2009CD413 /* UefiDevicePathLib.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA037A237F13C0009CD413 /* UefiDevicePathLib.c */; }; - A5AA0708237F13C2009CD413 /* SmmIoLib.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA037C237F13C0009CD413 /* SmmIoLib.c */; }; - A5AA0709237F13C2009CD413 /* HobLib.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0380237F13C0009CD413 /* HobLib.c */; }; - A5AA070A237F13C2009CD413 /* UefiRuntimeServicesTableLib.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0386237F13C0009CD413 /* UefiRuntimeServicesTableLib.c */; }; - A5AA070B237F13C2009CD413 /* PeiPcdLib.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0388237F13C0009CD413 /* PeiPcdLib.c */; }; - A5AA070C237F13C2009CD413 /* SmmMemLib.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA038D237F13C0009CD413 /* SmmMemLib.c */; }; - A5AA070D237F13C2009CD413 /* UefiFileHandleLib.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0392237F13C0009CD413 /* UefiFileHandleLib.c */; }; - A5AA070E237F13C2009CD413 /* DebugLib.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0394237F13C0009CD413 /* DebugLib.c */; }; - A5AA070F237F13C2009CD413 /* SetMem64Wrapper.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0398237F13C0009CD413 /* SetMem64Wrapper.c */; }; - A5AA0710237F13C2009CD413 /* ZeroMemWrapper.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0399237F13C0009CD413 /* ZeroMemWrapper.c */; }; - A5AA0711237F13C2009CD413 /* CopyMemWrapper.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA039A237F13C0009CD413 /* CopyMemWrapper.c */; }; - A5AA0712237F13C2009CD413 /* ScanMem64Wrapper.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA039B237F13C0009CD413 /* ScanMem64Wrapper.c */; }; - A5AA0713237F13C2009CD413 /* ZeroMem.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA039D237F13C0009CD413 /* ZeroMem.nasm */; }; - A5AA0714237F13C2009CD413 /* CompareMem.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA039E237F13C0009CD413 /* CompareMem.nasm */; }; - A5AA0715237F13C2009CD413 /* SetMem16.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA039F237F13C0009CD413 /* SetMem16.nasm */; }; - A5AA0716237F13C2009CD413 /* ScanMem64.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA03A0237F13C0009CD413 /* ScanMem64.nasm */; }; - A5AA0717237F13C2009CD413 /* ScanMem32.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA03A1237F13C0009CD413 /* ScanMem32.nasm */; }; - A5AA0718237F13C2009CD413 /* SetMem.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA03A2237F13C0009CD413 /* SetMem.nasm */; }; - A5AA0719237F13C2009CD413 /* IsZeroBuffer.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA03A3237F13C0009CD413 /* IsZeroBuffer.nasm */; }; - A5AA071A237F13C2009CD413 /* SetMem64.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA03A4237F13C0009CD413 /* SetMem64.nasm */; }; - A5AA071B237F13C2009CD413 /* ScanMem8.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA03A5237F13C0009CD413 /* ScanMem8.nasm */; }; - A5AA071C237F13C2009CD413 /* SetMem32.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA03A6237F13C0009CD413 /* SetMem32.nasm */; }; - A5AA071D237F13C2009CD413 /* ScanMem16.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA03A7237F13C0009CD413 /* ScanMem16.nasm */; }; - A5AA071E237F13C2009CD413 /* CopyMem.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA03A8237F13C0009CD413 /* CopyMem.nasm */; }; - A5AA071F237F13C2009CD413 /* ScanMem8Wrapper.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA03A9237F13C0009CD413 /* ScanMem8Wrapper.c */; }; - A5AA0720237F13C2009CD413 /* SetMem32Wrapper.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA03AA237F13C0009CD413 /* SetMem32Wrapper.c */; }; - A5AA0721237F13C2009CD413 /* ZeroMem.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA03AC237F13C0009CD413 /* ZeroMem.nasm */; }; - A5AA0722237F13C2009CD413 /* CompareMem.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA03AD237F13C0009CD413 /* CompareMem.nasm */; }; - A5AA0723237F13C2009CD413 /* SetMem16.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA03AE237F13C0009CD413 /* SetMem16.nasm */; }; - A5AA0724237F13C2009CD413 /* ScanMem64.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA03AF237F13C0009CD413 /* ScanMem64.nasm */; }; - A5AA0725237F13C2009CD413 /* ScanMem32.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA03B0237F13C0009CD413 /* ScanMem32.nasm */; }; - A5AA0726237F13C2009CD413 /* SetMem.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA03B1237F13C0009CD413 /* SetMem.nasm */; }; - A5AA0727237F13C2009CD413 /* IsZeroBuffer.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA03B2237F13C0009CD413 /* IsZeroBuffer.nasm */; }; - A5AA0728237F13C2009CD413 /* SetMem64.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA03B3237F13C0009CD413 /* SetMem64.nasm */; }; - A5AA0729237F13C2009CD413 /* ScanMem8.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA03B4237F13C0009CD413 /* ScanMem8.nasm */; }; - A5AA072A237F13C2009CD413 /* SetMem32.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA03B5237F13C0009CD413 /* SetMem32.nasm */; }; - A5AA072B237F13C2009CD413 /* ScanMem16.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA03B6237F13C0009CD413 /* ScanMem16.nasm */; }; - A5AA072C237F13C2009CD413 /* CopyMem.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA03B7237F13C0009CD413 /* CopyMem.nasm */; }; - A5AA072D237F13C2009CD413 /* ScanMem32Wrapper.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA03B8237F13C0009CD413 /* ScanMem32Wrapper.c */; }; - A5AA072E237F13C2009CD413 /* IsZeroBufferWrapper.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA03B9237F13C0009CD413 /* IsZeroBufferWrapper.c */; }; - A5AA072F237F13C2009CD413 /* SetMemWrapper.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA03BA237F13C0009CD413 /* SetMemWrapper.c */; }; - A5AA0730237F13C2009CD413 /* CompareMemWrapper.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA03BB237F13C0009CD413 /* CompareMemWrapper.c */; }; - A5AA0731237F13C2009CD413 /* SetMem16Wrapper.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA03BC237F13C0009CD413 /* SetMem16Wrapper.c */; }; - A5AA0732237F13C2009CD413 /* MemLibGuid.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA03BD237F13C0009CD413 /* MemLibGuid.c */; }; - A5AA0733237F13C2009CD413 /* ScanMem16Wrapper.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA03C0237F13C0009CD413 /* ScanMem16Wrapper.c */; }; - A5AA0734237F13C2009CD413 /* BaseOrderedCollectionRedBlackTreeLib.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA03C5237F13C0009CD413 /* BaseOrderedCollectionRedBlackTreeLib.c */; }; - A5AA0735237F13C2009CD413 /* MemoryAllocationLib.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA03C8237F13C0009CD413 /* MemoryAllocationLib.c */; }; - A5AA0736237F13C2009CD413 /* RuntimeLib.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA03CD237F13C0009CD413 /* RuntimeLib.c */; }; - A5AA0737237F13C2009CD413 /* DebugLibConstructor.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA03D1237F13C0009CD413 /* DebugLibConstructor.c */; }; - A5AA0738237F13C2009CD413 /* DebugLib.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA03D2237F13C0009CD413 /* DebugLib.c */; }; - A5AA0739237F13C2009CD413 /* PciLib.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA03D6237F13C0009CD413 /* PciLib.c */; }; - A5AA073A237F13C2009CD413 /* UefiLibPrint.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA03D8237F13C0009CD413 /* UefiLibPrint.c */; }; - A5AA073B237F13C2009CD413 /* UefiDriverModel.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA03DB237F13C0009CD413 /* UefiDriverModel.c */; }; - A5AA073C237F13C2009CD413 /* UefiNotTiano.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA03DC237F13C0009CD413 /* UefiNotTiano.c */; }; - A5AA073D237F13C2009CD413 /* Console.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA03DD237F13C0009CD413 /* Console.c */; }; - A5AA073E237F13C2009CD413 /* UefiLib.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA03DE237F13C0009CD413 /* UefiLib.c */; }; - A5AA073F237F13C2009CD413 /* Acpi.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA03E0237F13C0009CD413 /* Acpi.c */; }; - A5AA0740237F13C2009CD413 /* HstiDxe.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA03E3237F13C0009CD413 /* HstiDxe.c */; }; - A5AA0741237F13C2009CD413 /* HstiAip.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA03E5237F13C0009CD413 /* HstiAip.c */; }; - A5AA0742237F13C2009CD413 /* PostCode.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA03E8237F13C0009CD413 /* PostCode.c */; }; - A5AA0743237F13C2009CD413 /* S3StallLib.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA03EE237F13C0009CD413 /* S3StallLib.c */; }; - A5AA0744237F13C2009CD413 /* SetMem64Wrapper.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA03F0237F13C0009CD413 /* SetMem64Wrapper.c */; }; - A5AA0745237F13C2009CD413 /* ZeroMemWrapper.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA03F1237F13C0009CD413 /* ZeroMemWrapper.c */; }; - A5AA0746237F13C2009CD413 /* CopyMemWrapper.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA03F3237F13C0009CD413 /* CopyMemWrapper.c */; }; - A5AA0747237F13C2009CD413 /* ScanMem64Wrapper.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA03F4237F13C0009CD413 /* ScanMem64Wrapper.c */; }; - A5AA0748237F13C2009CD413 /* ZeroMem.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA03F7237F13C0009CD413 /* ZeroMem.nasm */; }; - A5AA0749237F13C2009CD413 /* CompareMem.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA03F8237F13C0009CD413 /* CompareMem.nasm */; }; - A5AA074A237F13C2009CD413 /* SetMem16.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA03F9237F13C0009CD413 /* SetMem16.nasm */; }; - A5AA074B237F13C2009CD413 /* ScanMem64.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA03FA237F13C0009CD413 /* ScanMem64.nasm */; }; - A5AA074C237F13C2009CD413 /* ScanMem32.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA03FB237F13C0009CD413 /* ScanMem32.nasm */; }; - A5AA074D237F13C3009CD413 /* SetMem.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA03FC237F13C0009CD413 /* SetMem.nasm */; }; - A5AA074E237F13C3009CD413 /* IsZeroBuffer.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA03FD237F13C0009CD413 /* IsZeroBuffer.nasm */; }; - A5AA074F237F13C3009CD413 /* SetMem64.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA03FE237F13C0009CD413 /* SetMem64.nasm */; }; - A5AA0750237F13C3009CD413 /* ScanMem8.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA03FF237F13C0009CD413 /* ScanMem8.nasm */; }; - A5AA0751237F13C3009CD413 /* SetMem32.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0400237F13C0009CD413 /* SetMem32.nasm */; }; - A5AA0752237F13C3009CD413 /* ScanMem16.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0401237F13C0009CD413 /* ScanMem16.nasm */; }; - A5AA0753237F13C3009CD413 /* CopyMem.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0402237F13C0009CD413 /* CopyMem.nasm */; }; - A5AA0754237F13C3009CD413 /* ScanMem8Wrapper.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0403237F13C0009CD413 /* ScanMem8Wrapper.c */; }; - A5AA0755237F13C3009CD413 /* SetMem32Wrapper.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0404237F13C0009CD413 /* SetMem32Wrapper.c */; }; - A5AA0756237F13C3009CD413 /* ZeroMem.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0406237F13C0009CD413 /* ZeroMem.nasm */; }; - A5AA0757237F13C3009CD413 /* CompareMem.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0407237F13C0009CD413 /* CompareMem.nasm */; }; - A5AA0758237F13C3009CD413 /* SetMem16.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0408237F13C0009CD413 /* SetMem16.nasm */; }; - A5AA0759237F13C3009CD413 /* ScanMem64.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0409237F13C0009CD413 /* ScanMem64.nasm */; }; - A5AA075A237F13C3009CD413 /* ScanMem32.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA040A237F13C0009CD413 /* ScanMem32.nasm */; }; - A5AA075B237F13C3009CD413 /* SetMem.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA040B237F13C0009CD413 /* SetMem.nasm */; }; - A5AA075C237F13C3009CD413 /* IsZeroBuffer.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA040C237F13C0009CD413 /* IsZeroBuffer.nasm */; }; - A5AA075D237F13C3009CD413 /* SetMem64.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA040D237F13C0009CD413 /* SetMem64.nasm */; }; - A5AA075E237F13C3009CD413 /* ScanMem8.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA040E237F13C0009CD413 /* ScanMem8.nasm */; }; - A5AA075F237F13C3009CD413 /* SetMem32.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA040F237F13C0009CD413 /* SetMem32.nasm */; }; - A5AA0760237F13C3009CD413 /* ScanMem16.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0410237F13C0009CD413 /* ScanMem16.nasm */; }; - A5AA0761237F13C3009CD413 /* CopyMem.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0411237F13C0009CD413 /* CopyMem.nasm */; }; - A5AA0762237F13C3009CD413 /* ScanMem32Wrapper.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0412237F13C0009CD413 /* ScanMem32Wrapper.c */; }; - A5AA0763237F13C3009CD413 /* IsZeroBufferWrapper.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0413237F13C0009CD413 /* IsZeroBufferWrapper.c */; }; - A5AA0764237F13C3009CD413 /* SetMemWrapper.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0414237F13C0009CD413 /* SetMemWrapper.c */; }; - A5AA0765237F13C3009CD413 /* CompareMemWrapper.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0415237F13C0009CD413 /* CompareMemWrapper.c */; }; - A5AA0766237F13C3009CD413 /* SetMem16Wrapper.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0416237F13C0009CD413 /* SetMem16Wrapper.c */; }; - A5AA0767237F13C3009CD413 /* MemLibGuid.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0417237F13C0009CD413 /* MemLibGuid.c */; }; - A5AA0768237F13C3009CD413 /* ScanMem16Wrapper.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0419237F13C0009CD413 /* ScanMem16Wrapper.c */; }; - A5AA0769237F13C3009CD413 /* PciLib.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA041D237F13C0009CD413 /* PciLib.c */; }; - A5AA076A237F13C3009CD413 /* PeimEntryPoint.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA041F237F13C0009CD413 /* PeimEntryPoint.c */; }; - A5AA076B237F13C3009CD413 /* SmiHandlerProfileLibNull.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0423237F13C0009CD413 /* SmiHandlerProfileLibNull.c */; }; - A5AA076C237F13C3009CD413 /* S3PciLib.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0427237F13C0009CD413 /* S3PciLib.c */; }; - A5AA076D237F13C3009CD413 /* PrintLib.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA042C237F13C0009CD413 /* PrintLib.c */; }; - A5AA076E237F13C3009CD413 /* PrintLibInternal.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA042F237F13C0009CD413 /* PrintLibInternal.c */; }; - A5AA076F237F13C3009CD413 /* IoLibMmioBuffer.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0431237F13C0009CD413 /* IoLibMmioBuffer.c */; }; - A5AA0770237F13C3009CD413 /* IoLib.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0432237F13C0009CD413 /* IoLib.c */; }; - A5AA0771237F13C3009CD413 /* IoHighLevel.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0433237F13C0009CD413 /* IoHighLevel.c */; }; - A5AA0772237F13C3009CD413 /* BaseReportStatusCodeLib.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0437237F13C0009CD413 /* BaseReportStatusCodeLib.c */; }; - A5AA0773237F13C3009CD413 /* DxeServicesTableLib.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA043B237F13C0009CD413 /* DxeServicesTableLib.c */; }; - A5AA0774237F13C3009CD413 /* PeCoffExtraActionLib.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0441237F13C0009CD413 /* PeCoffExtraActionLib.c */; }; - A5AA0775237F13C3009CD413 /* UsbDxeLib.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0443237F13C0009CD413 /* UsbDxeLib.c */; }; - A5AA0776237F13C3009CD413 /* Hid.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0446237F13C0009CD413 /* Hid.c */; }; - A5AA07C6237F13CD009CD413 /* IsaAcpi.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA077B237F13CD009CD413 /* IsaAcpi.c */; }; - A5AA07C7237F13CD009CD413 /* ComponentName.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA077E237F13CD009CD413 /* ComponentName.c */; }; - A5AA07C8237F13CD009CD413 /* PcatIsaAcpi.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0780237F13CD009CD413 /* PcatIsaAcpi.c */; }; - A5AA07C9237F13CD009CD413 /* HpetTimer.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0785237F13CD009CD413 /* HpetTimer.c */; }; - A5AA07CA237F13CD009CD413 /* IdeController.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0794237F13CD009CD413 /* IdeController.c */; }; - A5AA07CB237F13CD009CD413 /* ComponentName.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA0797237F13CD009CD413 /* ComponentName.c */; }; - A5AA07CC237F13CD009CD413 /* BaseAcpiTimerLib.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA07A0237F13CD009CD413 /* BaseAcpiTimerLib.c */; }; - A5AA07CD237F13CD009CD413 /* DxeAcpiTimerLib.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA07A3237F13CD009CD413 /* DxeAcpiTimerLib.c */; }; - A5AA07CE237F13CD009CD413 /* PeiAcpiTimerLib.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA07A4237F13CD009CD413 /* PeiAcpiTimerLib.c */; }; - A5AA07CF237F13CD009CD413 /* AcpiTimerLib.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA07A5237F13CD009CD413 /* AcpiTimerLib.c */; }; - A5AA07D0237F13CD009CD413 /* IoApicLib.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA07A9237F13CD009CD413 /* IoApicLib.c */; }; - A5AA07D1237F13CD009CD413 /* ResetSystemLib.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA07AB237F13CD009CD413 /* ResetSystemLib.c */; }; - A5AA07D2237F13CD009CD413 /* SerialPortLib.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA07AF237F13CD009CD413 /* SerialPortLib.c */; }; - A5AA07D3237F13CD009CD413 /* 8259.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA07B4237F13CD009CD413 /* 8259.c */; }; - A5AA07D4237F13CD009CD413 /* Timer.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA07BA237F13CD009CD413 /* Timer.c */; }; - A5AA07D5237F13CD009CD413 /* PcRtc.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA07C2237F13CD009CD413 /* PcRtc.c */; }; - A5AA07D6237F13CD009CD413 /* PcRtcEntry.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA07C3237F13CD009CD413 /* PcRtcEntry.c */; }; - A5AAFB12237F13B3009CD413 /* Runtime.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF378237F13B0009CD413 /* Runtime.c */; }; - A5AAFB13237F13B3009CD413 /* Crc32.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF37B237F13B0009CD413 /* Crc32.c */; }; - A5AAFB14237F13B3009CD413 /* Stall.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF380237F13B0009CD413 /* Stall.c */; }; - A5AAFB15237F13B3009CD413 /* MemoryProtection.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF381237F13B0009CD413 /* MemoryProtection.c */; }; - A5AAFB16237F13B3009CD413 /* DebugImageInfo.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF382237F13B0009CD413 /* DebugImageInfo.c */; }; - A5AAFB17237F13B3009CD413 /* InstallConfigurationTable.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF383237F13B0009CD413 /* InstallConfigurationTable.c */; }; - A5AAFB18237F13B3009CD413 /* SetWatchdogTimer.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF384237F13B0009CD413 /* SetWatchdogTimer.c */; }; - A5AAFB19237F13B3009CD413 /* PropertiesTable.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF385237F13B0009CD413 /* PropertiesTable.c */; }; - A5AAFB1A237F13B3009CD413 /* MemoryAttributesTable.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF386237F13B0009CD413 /* MemoryAttributesTable.c */; }; - A5AAFB1B237F13B3009CD413 /* Handle.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF388237F13B0009CD413 /* Handle.c */; }; - A5AAFB1C237F13B3009CD413 /* Locate.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF38A237F13B0009CD413 /* Locate.c */; }; - A5AAFB1D237F13B3009CD413 /* DriverSupport.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF38B237F13B0009CD413 /* DriverSupport.c */; }; - A5AAFB1E237F13B3009CD413 /* Notify.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF38C237F13B0009CD413 /* Notify.c */; }; - A5AAFB1F237F13B3009CD413 /* FwVolBlock.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF38F237F13B0009CD413 /* FwVolBlock.c */; }; - A5AAFB20237F13B3009CD413 /* Dispatcher.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF392237F13B0009CD413 /* Dispatcher.c */; }; - A5AAFB21237F13B3009CD413 /* Dependency.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF393237F13B0009CD413 /* Dependency.c */; }; - A5AAFB22237F13B3009CD413 /* FwVolAttrib.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF395237F13B0009CD413 /* FwVolAttrib.c */; }; - A5AAFB23237F13B3009CD413 /* FwVolRead.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF396237F13B0009CD413 /* FwVolRead.c */; }; - A5AAFB24237F13B3009CD413 /* Ffs.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF398237F13B0009CD413 /* Ffs.c */; }; - A5AAFB25237F13B3009CD413 /* FwVolWrite.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF399237F13B0009CD413 /* FwVolWrite.c */; }; - A5AAFB26237F13B3009CD413 /* FwVol.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF39A237F13B0009CD413 /* FwVol.c */; }; - A5AAFB27237F13B3009CD413 /* DxeProtocolNotify.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF39C237F13B0009CD413 /* DxeProtocolNotify.c */; }; - A5AAFB28237F13B3009CD413 /* DxeMain.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF39D237F13B0009CD413 /* DxeMain.c */; }; - A5AAFB29237F13B3009CD413 /* Library.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF39F237F13B0009CD413 /* Library.c */; }; - A5AAFB2A237F13B3009CD413 /* Gcd.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF3A1237F13B0009CD413 /* Gcd.c */; }; - A5AAFB2B237F13B3009CD413 /* Image.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF3A4237F13B0009CD413 /* Image.c */; }; - A5AAFB2C237F13B3009CD413 /* CoreSectionExtraction.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF3A9237F13B0009CD413 /* CoreSectionExtraction.c */; }; - A5AAFB2D237F13B3009CD413 /* Timer.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF3AB237F13B0009CD413 /* Timer.c */; }; - A5AAFB2E237F13B3009CD413 /* Event.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF3AD237F13B0009CD413 /* Event.c */; }; - A5AAFB2F237F13B3009CD413 /* Tpl.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF3AE237F13B0009CD413 /* Tpl.c */; }; - A5AAFB30237F13B3009CD413 /* HeapGuard.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF3B1237F13B0009CD413 /* HeapGuard.c */; }; - A5AAFB31237F13B3009CD413 /* MemData.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF3B2237F13B0009CD413 /* MemData.c */; }; - A5AAFB32237F13B3009CD413 /* MemoryProfileRecord.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF3B3237F13B0009CD413 /* MemoryProfileRecord.c */; }; - A5AAFB33237F13B3009CD413 /* Page.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF3B4237F13B0009CD413 /* Page.c */; }; - A5AAFB34237F13B3009CD413 /* Pool.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF3B7237F13B0009CD413 /* Pool.c */; }; - A5AAFB35237F13B3009CD413 /* Smi.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF3B9237F13B0009CD413 /* Smi.c */; }; - A5AAFB36237F13B3009CD413 /* SmiHandlerProfile.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF3BA237F13B0009CD413 /* SmiHandlerProfile.c */; }; - A5AAFB37237F13B3009CD413 /* HeapGuard.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF3BB237F13B0009CD413 /* HeapGuard.c */; }; - A5AAFB38237F13B3009CD413 /* PiSmmCore.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF3BC237F13B0009CD413 /* PiSmmCore.c */; }; - A5AAFB39237F13B3009CD413 /* Dispatcher.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF3BD237F13B0009CD413 /* Dispatcher.c */; }; - A5AAFB3A237F13B3009CD413 /* SmramProfileRecord.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF3BF237F13B0009CD413 /* SmramProfileRecord.c */; }; - A5AAFB3B237F13B3009CD413 /* Handle.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF3C0237F13B0009CD413 /* Handle.c */; }; - A5AAFB3C237F13B3009CD413 /* InstallConfigurationTable.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF3C2237F13B0009CD413 /* InstallConfigurationTable.c */; }; - A5AAFB3D237F13B3009CD413 /* PiSmmIpl.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF3C4237F13B0009CD413 /* PiSmmIpl.c */; }; - A5AAFB3E237F13B3009CD413 /* Page.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF3C5237F13B0009CD413 /* Page.c */; }; - A5AAFB3F237F13B3009CD413 /* Locate.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF3C9237F13B0009CD413 /* Locate.c */; }; - A5AAFB40237F13B3009CD413 /* Dependency.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF3CA237F13B0009CD413 /* Dependency.c */; }; - A5AAFB41237F13B3009CD413 /* Pool.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF3CB237F13B0009CD413 /* Pool.c */; }; - A5AAFB42237F13B3009CD413 /* MemoryAttributesTable.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF3CD237F13B0009CD413 /* MemoryAttributesTable.c */; }; - A5AAFB43237F13B3009CD413 /* Notify.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF3CF237F13B0009CD413 /* Notify.c */; }; - A5AAFB44237F13B3009CD413 /* PciCfg2.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF3D4237F13B0009CD413 /* PciCfg2.c */; }; - A5AAFB45237F13B3009CD413 /* MemoryServices.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF3D6237F13B0009CD413 /* MemoryServices.c */; }; - A5AAFB46237F13B3009CD413 /* Hob.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF3D8237F13B0009CD413 /* Hob.c */; }; - A5AAFB47237F13B3009CD413 /* Security.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF3DA237F13B0009CD413 /* Security.c */; }; - A5AAFB48237F13B3009CD413 /* Reset.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF3DC237F13B0009CD413 /* Reset.c */; }; - A5AAFB49237F13B3009CD413 /* Dispatcher.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF3DE237F13B0009CD413 /* Dispatcher.c */; }; - A5AAFB4A237F13B3009CD413 /* FwVol.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF3E1237F13B0009CD413 /* FwVol.c */; }; - A5AAFB4B237F13B3009CD413 /* Dependency.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF3E4237F13B0009CD413 /* Dependency.c */; }; - A5AAFB4C237F13B3009CD413 /* Image.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF3E6237F13B0009CD413 /* Image.c */; }; - A5AAFB4D237F13B3009CD413 /* PeiMain.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF3E8237F13B0009CD413 /* PeiMain.c */; }; - A5AAFB4E237F13B3009CD413 /* StatusCode.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF3EA237F13B0009CD413 /* StatusCode.c */; }; - A5AAFB4F237F13B3009CD413 /* BootMode.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF3EC237F13B0009CD413 /* BootMode.c */; }; - A5AAFB50237F13B3009CD413 /* CpuIo.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF3EE237F13B0009CD413 /* CpuIo.c */; }; - A5AAFB51237F13B3009CD413 /* Ppi.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF3F0237F13B0009CD413 /* Ppi.c */; }; - A5AAFB52237F13B3009CD413 /* DxeLoadFunc.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF3F7237F13B0009CD413 /* DxeLoadFunc.c */; }; - A5AAFB53237F13B3009CD413 /* DxeLoad.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF3F8237F13B0009CD413 /* DxeLoad.c */; }; - A5AAFB54237F13B3009CD413 /* VirtualMemory.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF3FB237F13B0009CD413 /* VirtualMemory.c */; }; - A5AAFB55237F13B3009CD413 /* DxeLoadFunc.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF3FD237F13B0009CD413 /* DxeLoadFunc.c */; }; - A5AAFB56237F13B3009CD413 /* IdtVectorAsm.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF400237F13B0009CD413 /* IdtVectorAsm.nasm */; }; - A5AAFB57237F13B3009CD413 /* DxeLoadFunc.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF401237F13B0009CD413 /* DxeLoadFunc.c */; }; - A5AAFB58237F13B3009CD413 /* DxeLoadFunc.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF403237F13B0009CD413 /* DxeLoadFunc.c */; }; - A5AAFB59237F13B3009CD413 /* DebugPort.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF407237F13B0009CD413 /* DebugPort.c */; }; - A5AAFB5A237F13B3009CD413 /* ComponentName.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF40A237F13B0009CD413 /* ComponentName.c */; }; - A5AAFB5B237F13B3009CD413 /* EsrtFmpDebugPrint.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF40E237F13B0009CD413 /* EsrtFmpDebugPrint.c */; }; - A5AAFB5C237F13B3009CD413 /* EsrtFmp.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF412237F13B0009CD413 /* EsrtFmp.c */; }; - A5AAFB5D237F13B3009CD413 /* PlDebugSupportX64.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF416237F13B0009CD413 /* PlDebugSupportX64.c */; }; - A5AAFB5E237F13B3009CD413 /* AsmFuncs.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF417237F13B0009CD413 /* AsmFuncs.nasm */; }; - A5AAFB5F237F13B3009CD413 /* DebugSupport.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF419237F13B0009CD413 /* DebugSupport.c */; }; - A5AAFB60237F13B3009CD413 /* AsmFuncs.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF41C237F13B0009CD413 /* AsmFuncs.nasm */; }; - A5AAFB61237F13B3009CD413 /* PlDebugSupport.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF41D237F13B0009CD413 /* PlDebugSupport.c */; }; - A5AAFB62237F13B3009CD413 /* PlDebugSupportIa32.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF41E237F13B0009CD413 /* PlDebugSupportIa32.c */; }; - A5AAFB63237F13B3009CD413 /* AmlNamespace.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF424237F13B0009CD413 /* AmlNamespace.c */; }; - A5AAFB64237F13B3009CD413 /* AcpiTableProtocol.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF426237F13B0009CD413 /* AcpiTableProtocol.c */; }; - A5AAFB65237F13B3009CD413 /* AmlOption.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF427237F13B0009CD413 /* AmlOption.c */; }; - A5AAFB66237F13B3009CD413 /* AmlString.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF428237F13B0009CD413 /* AmlString.c */; }; - A5AAFB67237F13B3009CD413 /* AcpiSdt.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF429237F13B0009CD413 /* AcpiSdt.c */; }; - A5AAFB68237F13B3009CD413 /* AcpiTable.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF42A237F13B0009CD413 /* AcpiTable.c */; }; - A5AAFB69237F13B3009CD413 /* AmlChild.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF42C237F13B0009CD413 /* AmlChild.c */; }; - A5AAFB6A237F13B3009CD413 /* Aml.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF42F237F13B0009CD413 /* Aml.c */; }; - A5AAFB6B237F13B3009CD413 /* AcpiS3ContextSave.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF432237F13B0009CD413 /* AcpiS3ContextSave.c */; }; - A5AAFB6C237F13B3009CD413 /* S3SaveState.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF434237F13B0009CD413 /* S3SaveState.c */; }; - A5AAFB6D237F13B3009CD413 /* BootGraphicsResourceTableDxe.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF43A237F13B0009CD413 /* BootGraphicsResourceTableDxe.c */; }; - A5AAFB6E237F13B3009CD413 /* FirmwarePerformanceSmm.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF441237F13B0009CD413 /* FirmwarePerformanceSmm.c */; }; - A5AAFB6F237F13B3009CD413 /* FirmwarePerformancePei.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF443237F13B0009CD413 /* FirmwarePerformancePei.c */; }; - A5AAFB70237F13B3009CD413 /* AcpiPlatform.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF448237F13B0009CD413 /* AcpiPlatform.c */; }; - A5AAFB71237F13B3009CD413 /* S3Asm.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF450237F13B0009CD413 /* S3Asm.nasm */; }; - A5AAFB72237F13B3009CD413 /* SetIdtEntry.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF451237F13B0009CD413 /* SetIdtEntry.c */; }; - A5AAFB73237F13B3009CD413 /* S3Asm.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF455237F13B0009CD413 /* S3Asm.nasm */; }; - A5AAFB74237F13B3009CD413 /* SetIdtEntry.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF456237F13B0009CD413 /* SetIdtEntry.c */; }; - A5AAFB75237F13B3009CD413 /* ScriptExecute.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF457237F13B0009CD413 /* ScriptExecute.c */; }; - A5AAFB76237F13B3009CD413 /* SmmS3SaveState.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF45D237F13B0009CD413 /* SmmS3SaveState.c */; }; - A5AAFB77237F13B3009CD413 /* FirmwarePerformanceDxe.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF462237F13B0009CD413 /* FirmwarePerformanceDxe.c */; }; - A5AAFB78237F13B3009CD413 /* EbcSupport.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF469237F13B0009CD413 /* EbcSupport.c */; }; - A5AAFB79237F13B3009CD413 /* EbcLowLevel.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF46A237F13B0009CD413 /* EbcLowLevel.nasm */; }; - A5AAFB7A237F13B3009CD413 /* EbcDebuggerHook.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF46C237F13B0009CD413 /* EbcDebuggerHook.c */; }; - A5AAFB7B237F13B3009CD413 /* EdbDisasmSupport.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF470237F13B0009CD413 /* EdbDisasmSupport.c */; }; - A5AAFB7C237F13B3009CD413 /* EdbSymbol.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF471237F13B0009CD413 /* EdbSymbol.c */; }; - A5AAFB7D237F13B3009CD413 /* EdbHook.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF474237F13B0009CD413 /* EdbHook.c */; }; - A5AAFB7E237F13B3009CD413 /* EdbSupportUI.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF475237F13B0009CD413 /* EdbSupportUI.c */; }; - A5AAFB7F237F13B3009CD413 /* EdbSupportString.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF476237F13B0009CD413 /* EdbSupportString.c */; }; - A5AAFB80237F13B3009CD413 /* EdbCmdExtIo.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF477237F13B0009CD413 /* EdbCmdExtIo.c */; }; - A5AAFB81237F13B3009CD413 /* Edb.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF478237F13B0009CD413 /* Edb.c */; }; - A5AAFB82237F13B3009CD413 /* EdbCmdMemory.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF479237F13B0009CD413 /* EdbCmdMemory.c */; }; - A5AAFB83237F13B3009CD413 /* EbcDebuggerConfig.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF47A237F13B0009CD413 /* EbcDebuggerConfig.c */; }; - A5AAFB84237F13B3009CD413 /* EdbSupportFile.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF47D237F13B0009CD413 /* EdbSupportFile.c */; }; - A5AAFB85237F13B3009CD413 /* EdbCommand.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF47E237F13B0009CD413 /* EdbCommand.c */; }; - A5AAFB86237F13B3009CD413 /* EdbCmdStep.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF47F237F13B0009CD413 /* EdbCmdStep.c */; }; - A5AAFB87237F13B3009CD413 /* EdbDisasm.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF480237F13B0009CD413 /* EdbDisasm.c */; }; - A5AAFB88237F13B3009CD413 /* EdbCmdRegister.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF481237F13B0009CD413 /* EdbCmdRegister.c */; }; - A5AAFB89237F13B3009CD413 /* EdbCmdGo.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF483237F13B1009CD413 /* EdbCmdGo.c */; }; - A5AAFB8A237F13B3009CD413 /* EdbCmdScope.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF484237F13B1009CD413 /* EdbCmdScope.c */; }; - A5AAFB8B237F13B3009CD413 /* EdbCmdQuit.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF485237F13B1009CD413 /* EdbCmdQuit.c */; }; - A5AAFB8C237F13B3009CD413 /* EdbCmdHelp.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF486237F13B1009CD413 /* EdbCmdHelp.c */; }; - A5AAFB8D237F13B3009CD413 /* EdbCmdExtPci.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF487237F13B1009CD413 /* EdbCmdExtPci.c */; }; - A5AAFB8E237F13B3009CD413 /* EdbCmdBranch.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF488237F13B1009CD413 /* EdbCmdBranch.c */; }; - A5AAFB8F237F13B3009CD413 /* EdbCmdBreak.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF48A237F13B1009CD413 /* EdbCmdBreak.c */; }; - A5AAFB90237F13B3009CD413 /* EdbCmdSymbol.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF48B237F13B1009CD413 /* EdbCmdSymbol.c */; }; - A5AAFB91237F13B3009CD413 /* EdbCmdBreakpoint.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF48C237F13B1009CD413 /* EdbCmdBreakpoint.c */; }; - A5AAFB92237F13B3009CD413 /* EbcSupport.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF490237F13B1009CD413 /* EbcSupport.c */; }; - A5AAFB93237F13B3009CD413 /* EbcLowLevel.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF491237F13B1009CD413 /* EbcLowLevel.nasm */; }; - A5AAFB94237F13B3009CD413 /* EbcInt.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF492237F13B1009CD413 /* EbcInt.c */; }; - A5AAFB95237F13B3009CD413 /* EbcExecute.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF494237F13B1009CD413 /* EbcExecute.c */; }; - A5AAFB96237F13B3009CD413 /* EbcSupport.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF497237F13B1009CD413 /* EbcSupport.c */; }; - A5AAFB97237F13B3009CD413 /* EbcLowLevel.S in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF498237F13B1009CD413 /* EbcLowLevel.S */; }; - A5AAFB98237F13B3009CD413 /* EsrtDxe.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF49D237F13B1009CD413 /* EsrtDxe.c */; }; - A5AAFB99237F13B3009CD413 /* EsrtImpl.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF49E237F13B1009CD413 /* EsrtImpl.c */; }; - A5AAFB9A237F13B3009CD413 /* SmbiosDxe.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF4A5237F13B1009CD413 /* SmbiosDxe.c */; }; - A5AAFB9B237F13B3009CD413 /* SectionExtractionDxe.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF4AC237F13B1009CD413 /* SectionExtractionDxe.c */; }; - A5AAFB9C237F13B3009CD413 /* unicode_property_data_posix.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF4B2237F13B1009CD413 /* unicode_property_data_posix.c */; }; - A5AAFB9D237F13B3009CD413 /* unicode.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF4B3237F13B1009CD413 /* unicode.c */; }; - A5AAFB9E237F13B3009CD413 /* ascii.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF4B5237F13B1009CD413 /* ascii.c */; }; - A5AAFB9F237F13B3009CD413 /* unicode_fold2_key.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF4B6237F13B1009CD413 /* unicode_fold2_key.c */; }; - A5AAFBA0237F13B3009CD413 /* unicode_fold3_key.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF4B9237F13B1009CD413 /* unicode_fold3_key.c */; }; - A5AAFBA1237F13B3009CD413 /* regposix.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF4BA237F13B1009CD413 /* regposix.c */; }; - A5AAFBA2237F13B3009CD413 /* unicode_fold1_key.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF4BB237F13B1009CD413 /* unicode_fold1_key.c */; }; - A5AAFBA3237F13B3009CD413 /* unicode_wb_data.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF4BC237F13B1009CD413 /* unicode_wb_data.c */; }; - A5AAFBA4237F13B3009CD413 /* regexec.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF4BD237F13B1009CD413 /* regexec.c */; }; - A5AAFBA5237F13B3009CD413 /* regcomp.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF4C0237F13B1009CD413 /* regcomp.c */; }; - A5AAFBA6237F13B3009CD413 /* unicode_egcb_data.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF4C1237F13B1009CD413 /* unicode_egcb_data.c */; }; - A5AAFBA7237F13B3009CD413 /* regtrav.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF4C2237F13B1009CD413 /* regtrav.c */; }; - A5AAFBA8237F13B3009CD413 /* regsyntax.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF4C3237F13B1009CD413 /* regsyntax.c */; }; - A5AAFBA9237F13B3009CD413 /* OnigurumaIntrinsics.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF4C4237F13B1009CD413 /* OnigurumaIntrinsics.c */; }; - A5AAFBAA237F13B3009CD413 /* regversion.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF4C5237F13B1009CD413 /* regversion.c */; }; - A5AAFBAB237F13B3009CD413 /* OnigurumaUefiPort.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF4C6237F13B1009CD413 /* OnigurumaUefiPort.c */; }; - A5AAFBAC237F13B3009CD413 /* unicode_property_data.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF4C7237F13B1009CD413 /* unicode_property_data.c */; }; - A5AAFBAD237F13B3009CD413 /* st.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF4C9237F13B1009CD413 /* st.c */; }; - A5AAFBAE237F13B3009CD413 /* utf16_le.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF4CD237F13B1009CD413 /* utf16_le.c */; }; - A5AAFBAF237F13B3009CD413 /* regposerr.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF4CF237F13B1009CD413 /* regposerr.c */; }; - A5AAFBB0237F13B3009CD413 /* regparse.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF4D0237F13B1009CD413 /* regparse.c */; }; - A5AAFBB1237F13B3009CD413 /* onig_init.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF4D1237F13B1009CD413 /* onig_init.c */; }; - A5AAFBB2237F13B3009CD413 /* regenc.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF4D2237F13B1009CD413 /* regenc.c */; }; - A5AAFBB3237F13B3009CD413 /* regerror.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF4D3237F13B1009CD413 /* regerror.c */; }; - A5AAFBB4237F13B3009CD413 /* unicode_unfold_key.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF4D5237F13B1009CD413 /* unicode_unfold_key.c */; }; - A5AAFBB5237F13B3009CD413 /* reggnu.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF4D6237F13B1009CD413 /* reggnu.c */; }; - A5AAFBB6237F13B3009CD413 /* unicode_fold_data.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF4D7237F13B1009CD413 /* unicode_fold_data.c */; }; - A5AAFBB7237F13B3009CD413 /* RegularExpressionDxe.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF4D8237F13B1009CD413 /* RegularExpressionDxe.c */; }; - A5AAFBB8237F13B3009CD413 /* Measurement.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF4DB237F13B1009CD413 /* Measurement.c */; }; - A5AAFBB9237F13B3009CD413 /* SpeculationBarrierDxe.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF4DC237F13B1009CD413 /* SpeculationBarrierDxe.c */; }; - A5AAFBBA237F13B3009CD413 /* SpeculationBarrierSmm.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF4E0237F13B1009CD413 /* SpeculationBarrierSmm.c */; }; - A5AAFBBB237F13B3009CD413 /* VariableTraditionalMm.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF4E2237F13B1009CD413 /* VariableTraditionalMm.c */; }; - A5AAFBBC237F13B3009CD413 /* VariableExLib.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF4E4237F13B1009CD413 /* VariableExLib.c */; }; - A5AAFBBD237F13B3009CD413 /* VariableSmmRuntimeDxe.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF4E6237F13B1009CD413 /* VariableSmmRuntimeDxe.c */; }; - A5AAFBBE237F13B3009CD413 /* VariableStandaloneMm.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF4E8237F13B1009CD413 /* VariableStandaloneMm.c */; }; - A5AAFBBF237F13B3009CD413 /* VariableSmm.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF4EA237F13B1009CD413 /* VariableSmm.c */; }; - A5AAFBC0237F13B3009CD413 /* TcgMorLockSmm.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF4EB237F13B1009CD413 /* TcgMorLockSmm.c */; }; - A5AAFBC1237F13B3009CD413 /* Reclaim.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF4EC237F13B1009CD413 /* Reclaim.c */; }; - A5AAFBC2237F13B3009CD413 /* VariableDxe.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF4ED237F13B1009CD413 /* VariableDxe.c */; }; - A5AAFBC3237F13B3009CD413 /* TcgMorLockDxe.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF4EF237F13B1009CD413 /* TcgMorLockDxe.c */; }; - A5AAFBC4237F13B3009CD413 /* VarCheck.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF4F0237F13B1009CD413 /* VarCheck.c */; }; - A5AAFBC5237F13B3009CD413 /* Variable.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF4F4237F13B1009CD413 /* Variable.c */; }; - A5AAFBC6237F13B3009CD413 /* Variable.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF4FA237F13B1009CD413 /* Variable.c */; }; - A5AAFBC7237F13B3009CD413 /* InputHandler.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF4FC237F13B1009CD413 /* InputHandler.c */; }; - A5AAFBC8237F13B3009CD413 /* FormDisplay.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF4FD237F13B1009CD413 /* FormDisplay.c */; }; - A5AAFBC9237F13B3009CD413 /* Popup.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF501237F13B1009CD413 /* Popup.c */; }; - A5AAFBCA237F13B3009CD413 /* ProcessOptions.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF502237F13B1009CD413 /* ProcessOptions.c */; }; - A5AAFBCB237F13B3009CD413 /* CapsuleOnDiskLoadPei.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF507237F13B1009CD413 /* CapsuleOnDiskLoadPei.c */; }; - A5AAFBCC237F13B3009CD413 /* DriverHealthManagerDxe.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF512237F13B1009CD413 /* DriverHealthManagerDxe.c */; }; - A5AAFBCD237F13B3009CD413 /* MonotonicCounter.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF517237F13B1009CD413 /* MonotonicCounter.c */; }; - A5AAFBCE237F13B3009CD413 /* LegacyRegion2.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF51B237F13B1009CD413 /* LegacyRegion2.c */; }; - A5AAFBCF237F13B3009CD413 /* WatchdogTimer.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF522237F13B1009CD413 /* WatchdogTimer.c */; }; - A5AAFBD0237F13B3009CD413 /* FaultTolerantWrite.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF52B237F13B1009CD413 /* FaultTolerantWrite.c */; }; - A5AAFBD1237F13B3009CD413 /* FaultTolerantWriteStandaloneMm.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF52D237F13B1009CD413 /* FaultTolerantWriteStandaloneMm.c */; }; - A5AAFBD2237F13B3009CD413 /* FaultTolerantWriteSmmDxe.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF52E237F13B1009CD413 /* FaultTolerantWriteSmmDxe.c */; }; - A5AAFBD3237F13B3009CD413 /* FaultTolerantWriteTraditionalMm.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF532237F13B1009CD413 /* FaultTolerantWriteTraditionalMm.c */; }; - A5AAFBD4237F13B3009CD413 /* FaultTolerantWriteDxe.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF533237F13B1009CD413 /* FaultTolerantWriteDxe.c */; }; - A5AAFBD5237F13B3009CD413 /* FaultTolerantWriteSmm.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF535237F13B1009CD413 /* FaultTolerantWriteSmm.c */; }; - A5AAFBD6237F13B3009CD413 /* FtwMisc.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF536237F13B1009CD413 /* FtwMisc.c */; }; - A5AAFBD7237F13B3009CD413 /* UpdateWorkingBlock.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF538237F13B1009CD413 /* UpdateWorkingBlock.c */; }; - A5AAFBD8237F13B3009CD413 /* DevicePath.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF53C237F13B1009CD413 /* DevicePath.c */; }; - A5AAFBD9237F13B3009CD413 /* DriverSample.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF542237F13B1009CD413 /* DriverSample.c */; }; - A5AAFBDA237F13B3009CD413 /* SmbiosMeasurementDxe.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF54D237F13B1009CD413 /* SmbiosMeasurementDxe.c */; }; - A5AAFBDB237F13B3009CD413 /* HiiResourcesSample.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF551237F13B1009CD413 /* HiiResourcesSample.c */; }; - A5AAFBDC237F13B3009CD413 /* PlatDriOverrideLib.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF55C237F13B1009CD413 /* PlatDriOverrideLib.c */; }; - A5AAFBDD237F13B3009CD413 /* PlatDriOverrideDxe.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF55F237F13B1009CD413 /* PlatDriOverrideDxe.c */; }; - A5AAFBDE237F13B3009CD413 /* LoadFileOnFv2.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF562237F13B1009CD413 /* LoadFileOnFv2.c */; }; - A5AAFBDF237F13B3009CD413 /* BootManagerPolicyDxe.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF56A237F13B1009CD413 /* BootManagerPolicyDxe.c */; }; - A5AAFBE0237F13B3009CD413 /* Pcd.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF56D237F13B1009CD413 /* Pcd.c */; }; - A5AAFBE1237F13B3009CD413 /* Service.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF571237F13B1009CD413 /* Service.c */; }; - A5AAFBE2237F13B3009CD413 /* Pcd.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF574237F13B1009CD413 /* Pcd.c */; }; - A5AAFBE3237F13B3009CD413 /* Service.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF579237F13B1009CD413 /* Service.c */; }; - A5AAFBE4237F13B3009CD413 /* SectionExtractionPei.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF57B237F13B1009CD413 /* SectionExtractionPei.c */; }; - A5AAFBE5237F13B3009CD413 /* StatusCodeHandlerRuntimeDxe.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF581237F13B1009CD413 /* StatusCodeHandlerRuntimeDxe.c */; }; - A5AAFBE6237F13B3009CD413 /* MemoryStatusCodeWorker.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF582237F13B1009CD413 /* MemoryStatusCodeWorker.c */; }; - A5AAFBE7237F13B3009CD413 /* SerialStatusCodeWorker.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF587237F13B1009CD413 /* SerialStatusCodeWorker.c */; }; - A5AAFBE8237F13B3009CD413 /* MemoryStausCodeWorker.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF58D237F13B1009CD413 /* MemoryStausCodeWorker.c */; }; - A5AAFBE9237F13B3009CD413 /* SerialStatusCodeWorker.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF58E237F13B1009CD413 /* SerialStatusCodeWorker.c */; }; - A5AAFBEA237F13B3009CD413 /* StatusCodeHandlerPei.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF58F237F13B1009CD413 /* StatusCodeHandlerPei.c */; }; - A5AAFBEB237F13B3009CD413 /* MemoryStatusCodeWorker.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF591237F13B1009CD413 /* MemoryStatusCodeWorker.c */; }; - A5AAFBEC237F13B3009CD413 /* StatusCodeHandlerSmm.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF592237F13B1009CD413 /* StatusCodeHandlerSmm.c */; }; - A5AAFBED237F13B3009CD413 /* SerialStatusCodeWorker.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF595237F13B1009CD413 /* SerialStatusCodeWorker.c */; }; - A5AAFBEE237F13B3009CD413 /* DebugServicePei.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF599237F13B1009CD413 /* DebugServicePei.c */; }; - A5AAFBEF237F13B3009CD413 /* TimestampDxe.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF59E237F13B1009CD413 /* TimestampDxe.c */; }; - A5AAFBF0237F13B3009CD413 /* ResetSystem.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF5A6237F13B1009CD413 /* ResetSystem.c */; }; - A5AAFBF1237F13B3009CD413 /* FvSimpleFileSystemEntryPoint.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF5A9237F13B1009CD413 /* FvSimpleFileSystemEntryPoint.c */; }; - A5AAFBF2237F13B3009CD413 /* FvSimpleFileSystem.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF5AA237F13B1009CD413 /* FvSimpleFileSystem.c */; }; - A5AAFBF3237F13B3009CD413 /* ComponentName.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF5AC237F13B1009CD413 /* ComponentName.c */; }; - A5AAFBF4237F13B3009CD413 /* Defer3rdPartyImageLoad.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF5B1237F13B1009CD413 /* Defer3rdPartyImageLoad.c */; }; - A5AAFBF5237F13B3009CD413 /* SecurityStub.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF5B3237F13B1009CD413 /* SecurityStub.c */; }; - A5AAFBF6237F13B3009CD413 /* ComponentName.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF5BC237F13B1009CD413 /* ComponentName.c */; }; - A5AAFBF7237F13B3009CD413 /* DiskIo.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF5BE237F13B1009CD413 /* DiskIo.c */; }; - A5AAFBF8237F13B3009CD413 /* PeiCdExpress.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF5C1237F13B1009CD413 /* PeiCdExpress.c */; }; - A5AAFBF9237F13B3009CD413 /* Partition.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF5C6237F13B1009CD413 /* Partition.c */; }; - A5AAFBFA237F13B3009CD413 /* Udf.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF5C7237F13B1009CD413 /* Udf.c */; }; - A5AAFBFB237F13B3009CD413 /* ComponentName.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF5C9237F13B1009CD413 /* ComponentName.c */; }; - A5AAFBFC237F13B3009CD413 /* ElTorito.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF5CA237F13B1009CD413 /* ElTorito.c */; }; - A5AAFBFD237F13B3009CD413 /* Mbr.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF5CE237F13B1009CD413 /* Mbr.c */; }; - A5AAFBFE237F13B3009CD413 /* Gpt.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF5CF237F13B1009CD413 /* Gpt.c */; }; - A5AAFBFF237F13B3009CD413 /* RamDiskFileExplorer.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF5D2237F13B1009CD413 /* RamDiskFileExplorer.c */; }; - A5AAFC00237F13B3009CD413 /* RamDiskImpl.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF5D5237F13B1009CD413 /* RamDiskImpl.c */; }; - A5AAFC01237F13B3009CD413 /* RamDiskBlockIo.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF5D6237F13B1009CD413 /* RamDiskBlockIo.c */; }; - A5AAFC02237F13B3009CD413 /* RamDiskProtocol.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF5D7237F13B1009CD413 /* RamDiskProtocol.c */; }; - A5AAFC03237F13B3009CD413 /* RamDiskDriver.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF5DB237F13B1009CD413 /* RamDiskDriver.c */; }; - A5AAFC04237F13B3009CD413 /* UnicodeCollationEng.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF5E1237F13B1009CD413 /* UnicodeCollationEng.c */; }; - A5AAFC05237F13B3009CD413 /* FileName.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF5E5237F13B1009CD413 /* FileName.c */; }; - A5AAFC06237F13B3009CD413 /* Udf.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF5E6237F13B1009CD413 /* Udf.c */; }; - A5AAFC07237F13B3009CD413 /* FileSystemOperations.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF5E7237F13B1009CD413 /* FileSystemOperations.c */; }; - A5AAFC08237F13B3009CD413 /* ComponentName.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF5E8237F13B1009CD413 /* ComponentName.c */; }; - A5AAFC09237F13B3009CD413 /* File.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF5EB237F13B1009CD413 /* File.c */; }; - A5AAFC0A237F13B3009CD413 /* LightMemoryTest.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF5EE237F13B1009CD413 /* LightMemoryTest.c */; }; - A5AAFC0B237F13B3009CD413 /* NullMemoryTest.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF5F7237F13B1009CD413 /* NullMemoryTest.c */; }; - A5AAFC0C237F13B3009CD413 /* Database.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF5FC237F13B1009CD413 /* Database.c */; }; - A5AAFC0D237F13B3009CD413 /* ConfigRouting.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF5FD237F13B1009CD413 /* ConfigRouting.c */; }; - A5AAFC0E237F13B3009CD413 /* Font.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF5FE237F13B1009CD413 /* Font.c */; }; - A5AAFC0F237F13B3009CD413 /* String.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF5FF237F13B1009CD413 /* String.c */; }; - A5AAFC10237F13B3009CD413 /* Image.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF600237F13B1009CD413 /* Image.c */; }; - A5AAFC11237F13B3009CD413 /* ConfigKeywordHandler.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF603237F13B1009CD413 /* ConfigKeywordHandler.c */; }; - A5AAFC12237F13B3009CD413 /* HiiDatabaseEntry.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF604237F13B1009CD413 /* HiiDatabaseEntry.c */; }; - A5AAFC13237F13B3009CD413 /* ImageEx.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF605237F13B1009CD413 /* ImageEx.c */; }; - A5AAFC14237F13B3009CD413 /* PciCfg2.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF607237F13B1009CD413 /* PciCfg2.c */; }; - A5AAFC15237F13B3009CD413 /* FaultTolerantWritePei.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF60E237F13B1009CD413 /* FaultTolerantWritePei.c */; }; - A5AAFC16237F13B3009CD413 /* BdsEntry.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF612237F13B1009CD413 /* BdsEntry.c */; }; - A5AAFC17237F13B3009CD413 /* HwErrRecSupport.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF613237F13B1009CD413 /* HwErrRecSupport.c */; }; - A5AAFC18237F13B3009CD413 /* Language.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF618237F13B1009CD413 /* Language.c */; }; - A5AAFC19237F13B3009CD413 /* SmmCommunicationBufferDxe.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF61C237F13B1009CD413 /* SmmCommunicationBufferDxe.c */; }; - A5AAFC1A237F13B3009CD413 /* X64Entry.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF625237F13B1009CD413 /* X64Entry.c */; }; - A5AAFC1B237F13B3009CD413 /* PageFaultHandler.nasm in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF626237F13B1009CD413 /* PageFaultHandler.nasm */; }; - A5AAFC1C237F13B3009CD413 /* CapsuleCoalesce.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF628237F13B1009CD413 /* CapsuleCoalesce.c */; }; - A5AAFC1D237F13B3009CD413 /* UefiCapsule.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF62D237F13B1009CD413 /* UefiCapsule.c */; }; - A5AAFC1E237F13B3009CD413 /* ResetSystem.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF633237F13B1009CD413 /* ResetSystem.c */; }; - A5AAFC1F237F13B3009CD413 /* Print.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF635237F13B1009CD413 /* Print.c */; }; - A5AAFC20237F13B3009CD413 /* SerialIo.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF63A237F13B1009CD413 /* SerialIo.c */; }; - A5AAFC21237F13B3009CD413 /* SmmLockBox.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF643237F13B1009CD413 /* SmmLockBox.c */; }; - A5AAFC22237F13B3009CD413 /* FileExplorerDxe.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF645237F13B1009CD413 /* FileExplorerDxe.c */; }; - A5AAFC23237F13B3009CD413 /* ReportStatusCodeRouterRuntimeDxe.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF64B237F13B1009CD413 /* ReportStatusCodeRouterRuntimeDxe.c */; }; - A5AAFC24237F13B3009CD413 /* ReportStatusCodeRouterPei.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF655237F13B1009CD413 /* ReportStatusCodeRouterPei.c */; }; - A5AAFC25237F13B3009CD413 /* ReportStatusCodeRouterSmm.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF657237F13B1009CD413 /* ReportStatusCodeRouterSmm.c */; }; - A5AAFC26237F13B3009CD413 /* CapsuleCache.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF65D237F13B1009CD413 /* CapsuleCache.c */; }; - A5AAFC27237F13B3009CD413 /* CapsuleCacheNull.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF65E237F13B1009CD413 /* CapsuleCacheNull.c */; }; - A5AAFC28237F13B3009CD413 /* SaveLongModeContext.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF660237F13B1009CD413 /* SaveLongModeContext.c */; }; - A5AAFC29237F13B3009CD413 /* CapsuleReset.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF665237F13B1009CD413 /* CapsuleReset.c */; }; - A5AAFC2A237F13B3009CD413 /* SaveLongModeContext.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF666237F13B1009CD413 /* SaveLongModeContext.c */; }; - A5AAFC2B237F13B3009CD413 /* CapsuleReset.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF668237F13B1009CD413 /* CapsuleReset.c */; }; - A5AAFC2C237F13B3009CD413 /* CapsuleService.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF669237F13B1009CD413 /* CapsuleService.c */; }; - A5AAFC2D237F13B3009CD413 /* Expression.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF66B237F13B1009CD413 /* Expression.c */; }; - A5AAFC2E237F13B3009CD413 /* Presentation.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF66E237F13B1009CD413 /* Presentation.c */; }; - A5AAFC2F237F13B3009CD413 /* Setup.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF670237F13B1009CD413 /* Setup.c */; }; - A5AAFC30237F13B3009CD413 /* IfrParse.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF672237F13B1009CD413 /* IfrParse.c */; }; - A5AAFC31237F13B3009CD413 /* ComponentName.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF678237F13B1009CD413 /* ComponentName.c */; }; - A5AAFC32237F13B3009CD413 /* LaffStd.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF67B237F13B1009CD413 /* LaffStd.c */; }; - A5AAFC33237F13B3009CD413 /* GraphicsConsole.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF67C237F13B1009CD413 /* GraphicsConsole.c */; }; - A5AAFC34237F13B3009CD413 /* TerminalConOut.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF680237F13B1009CD413 /* TerminalConOut.c */; }; - A5AAFC35237F13B3009CD413 /* TerminalConIn.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF681237F13B1009CD413 /* TerminalConIn.c */; }; - A5AAFC36237F13B3009CD413 /* Terminal.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF683237F13B1009CD413 /* Terminal.c */; }; - A5AAFC37237F13B3009CD413 /* Vtutf8.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF684237F13B1009CD413 /* Vtutf8.c */; }; - A5AAFC38237F13B3009CD413 /* ComponentName.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF685237F13B1009CD413 /* ComponentName.c */; }; - A5AAFC39237F13B3009CD413 /* Ansi.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF687237F13B1009CD413 /* Ansi.c */; }; - A5AAFC3A237F13B3009CD413 /* ConPlatform.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF68A237F13B1009CD413 /* ConPlatform.c */; }; - A5AAFC3B237F13B3009CD413 /* ComponentName.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF68C237F13B1009CD413 /* ComponentName.c */; }; - A5AAFC3C237F13B3009CD413 /* ConSplitterGraphics.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF691237F13B1009CD413 /* ConSplitterGraphics.c */; }; - A5AAFC3D237F13B3009CD413 /* ComponentName.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF692237F13B1009CD413 /* ComponentName.c */; }; - A5AAFC3E237F13B3009CD413 /* ConSplitter.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF693237F13B1009CD413 /* ConSplitter.c */; }; - A5AAFC3F237F13B3009CD413 /* ComponentName.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF699237F13B1009CD413 /* ComponentName.c */; }; - A5AAFC40237F13B3009CD413 /* GraphicsOutput.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF69B237F13B1009CD413 /* GraphicsOutput.c */; }; - A5AAFC41237F13B3009CD413 /* Metronome.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF69E237F13B1009CD413 /* Metronome.c */; }; - A5AAFC42237F13B3009CD413 /* SdBlockIoPei.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF748237F13B1009CD413 /* SdBlockIoPei.c */; }; - A5AAFC43237F13B3009CD413 /* SdHcMem.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF749237F13B1009CD413 /* SdHcMem.c */; }; - A5AAFC44237F13B3009CD413 /* DmaMem.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF750237F13B2009CD413 /* DmaMem.c */; }; - A5AAFC45237F13B3009CD413 /* SdHci.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF751237F13B2009CD413 /* SdHci.c */; }; - A5AAFC46237F13B3009CD413 /* EmmcHcMem.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF753237F13B2009CD413 /* EmmcHcMem.c */; }; - A5AAFC47237F13B3009CD413 /* EmmcHci.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF754237F13B2009CD413 /* EmmcHci.c */; }; - A5AAFC48237F13B3009CD413 /* EmmcBlockIoPei.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF755237F13B2009CD413 /* EmmcBlockIoPei.c */; }; - A5AAFC49237F13B3009CD413 /* DmaMem.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF75A237F13B2009CD413 /* DmaMem.c */; }; - A5AAFC4A237F13B3009CD413 /* SdBlockIo.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF75E237F13B2009CD413 /* SdBlockIo.c */; }; - A5AAFC4B237F13B3009CD413 /* SdDxe.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF760237F13B2009CD413 /* SdDxe.c */; }; - A5AAFC4C237F13B3009CD413 /* ComponentName.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF762237F13B2009CD413 /* ComponentName.c */; }; - A5AAFC4D237F13B3009CD413 /* SdDiskInfo.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF767237F13B2009CD413 /* SdDiskInfo.c */; }; - A5AAFC4E237F13B3009CD413 /* EmmcBlockIo.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF76C237F13B2009CD413 /* EmmcBlockIo.c */; }; - A5AAFC4F237F13B3009CD413 /* ComponentName.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF76D237F13B2009CD413 /* ComponentName.c */; }; - A5AAFC50237F13B3009CD413 /* EmmcDxe.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF76F237F13B2009CD413 /* EmmcDxe.c */; }; - A5AAFC51237F13B3009CD413 /* EmmcDiskInfo.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF770237F13B2009CD413 /* EmmcDiskInfo.c */; }; - A5AAFC52237F13B3009CD413 /* AtapiPeim.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF779237F13B2009CD413 /* AtapiPeim.c */; }; - A5AAFC53237F13B3009CD413 /* SdMmcPciHci.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF77B237F13B2009CD413 /* SdMmcPciHci.c */; }; - A5AAFC54237F13B3009CD413 /* SdDevice.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF77D237F13B2009CD413 /* SdDevice.c */; }; - A5AAFC55237F13B3009CD413 /* ComponentName.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF77E237F13B2009CD413 /* ComponentName.c */; }; - A5AAFC56237F13B3009CD413 /* EmmcDevice.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF781237F13B2009CD413 /* EmmcDevice.c */; }; - A5AAFC57237F13B3009CD413 /* SdMmcPciHcDxe.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF784237F13B2009CD413 /* SdMmcPciHcDxe.c */; }; - A5AAFC58237F13B3009CD413 /* IncompatiblePciDeviceSupport.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF789237F13B2009CD413 /* IncompatiblePciDeviceSupport.c */; }; - A5AAFC59237F13B3009CD413 /* PciEnumerator.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF78B237F13B2009CD413 /* PciEnumerator.c */; }; - A5AAFC5A237F13B3009CD413 /* PciDriverOverride.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF78C237F13B2009CD413 /* PciDriverOverride.c */; }; - A5AAFC5B237F13B3009CD413 /* PciResourceSupport.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF78D237F13B2009CD413 /* PciResourceSupport.c */; }; - A5AAFC5C237F13B3009CD413 /* PciDeviceSupport.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF78E237F13B2009CD413 /* PciDeviceSupport.c */; }; - A5AAFC5D237F13B3009CD413 /* PciIo.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF78F237F13B2009CD413 /* PciIo.c */; }; - A5AAFC5E237F13B3009CD413 /* PciCommand.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF790237F13B2009CD413 /* PciCommand.c */; }; - A5AAFC5F237F13B3009CD413 /* PciHotPlugSupport.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF791237F13B2009CD413 /* PciHotPlugSupport.c */; }; - A5AAFC60237F13B3009CD413 /* PciEnumeratorSupport.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF794237F13B2009CD413 /* PciEnumeratorSupport.c */; }; - A5AAFC61237F13B3009CD413 /* ComponentName.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF797237F13B2009CD413 /* ComponentName.c */; }; - A5AAFC62237F13B3009CD413 /* PciBus.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF798237F13B2009CD413 /* PciBus.c */; }; - A5AAFC63237F13B3009CD413 /* PciPowerManagement.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF799237F13B2009CD413 /* PciPowerManagement.c */; }; - A5AAFC64237F13B3009CD413 /* PciRomTable.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF7A0237F13B2009CD413 /* PciRomTable.c */; }; - A5AAFC65237F13B3009CD413 /* PciOptionRomSupport.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF7A2237F13B2009CD413 /* PciOptionRomSupport.c */; }; - A5AAFC66237F13B3009CD413 /* PciLib.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF7A9237F13B2009CD413 /* PciLib.c */; }; - A5AAFC67237F13B3009CD413 /* XhciSched.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF7B0237F13B2009CD413 /* XhciSched.c */; }; - A5AAFC68237F13B3009CD413 /* DmaMem.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF7B1237F13B2009CD413 /* DmaMem.c */; }; - A5AAFC69237F13B3009CD413 /* UsbHcMem.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF7B3237F13B2009CD413 /* UsbHcMem.c */; }; - A5AAFC6A237F13B3009CD413 /* XhcPeim.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF7B5237F13B2009CD413 /* XhcPeim.c */; }; - A5AAFC6B237F13B3009CD413 /* EhciSched.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF7BB237F13B2009CD413 /* EhciSched.c */; }; - A5AAFC6C237F13B3009CD413 /* DmaMem.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF7BE237F13B2009CD413 /* DmaMem.c */; }; - A5AAFC6D237F13B3009CD413 /* EhcPeim.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF7C0237F13B2009CD413 /* EhcPeim.c */; }; - A5AAFC6E237F13B3009CD413 /* EhciUrb.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF7C1237F13B2009CD413 /* EhciUrb.c */; }; - A5AAFC6F237F13B3009CD413 /* UsbHcMem.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF7C3237F13B2009CD413 /* UsbHcMem.c */; }; - A5AAFC70237F13B3009CD413 /* ComponentName.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF7C6237F13B2009CD413 /* ComponentName.c */; }; - A5AAFC71237F13B3009CD413 /* UfsPciHcDxe.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF7C7237F13B2009CD413 /* UfsPciHcDxe.c */; }; - A5AAFC72237F13B3009CD413 /* UhciDebug.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF7CE237F13B2009CD413 /* UhciDebug.c */; }; - A5AAFC73237F13B3009CD413 /* Uhci.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF7D0237F13B2009CD413 /* Uhci.c */; }; - A5AAFC74237F13B3009CD413 /* ComponentName.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF7D2237F13B2009CD413 /* ComponentName.c */; }; - A5AAFC75237F13B4009CD413 /* UhciSched.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF7D4237F13B2009CD413 /* UhciSched.c */; }; - A5AAFC76237F13B4009CD413 /* UhciReg.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF7D7237F13B2009CD413 /* UhciReg.c */; }; - A5AAFC77237F13B4009CD413 /* UhciQueue.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF7D9237F13B2009CD413 /* UhciQueue.c */; }; - A5AAFC78237F13B4009CD413 /* UsbHcMem.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF7DA237F13B2009CD413 /* UsbHcMem.c */; }; - A5AAFC79237F13B4009CD413 /* DevicePath.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF7DE237F13B2009CD413 /* DevicePath.c */; }; - A5AAFC7A237F13B4009CD413 /* NvmExpressPei.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF7E1237F13B2009CD413 /* NvmExpressPei.c */; }; - A5AAFC7B237F13B4009CD413 /* NvmExpressPeiBlockIo.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF7E2237F13B2009CD413 /* NvmExpressPeiBlockIo.c */; }; - A5AAFC7C237F13B4009CD413 /* NvmExpressPeiS3.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF7E5237F13B2009CD413 /* NvmExpressPeiS3.c */; }; - A5AAFC7D237F13B4009CD413 /* NvmExpressPeiStorageSecurity.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF7E6237F13B2009CD413 /* NvmExpressPeiStorageSecurity.c */; }; - A5AAFC7E237F13B4009CD413 /* NvmExpressPeiHci.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF7E9237F13B2009CD413 /* NvmExpressPeiHci.c */; }; - A5AAFC7F237F13B4009CD413 /* DmaMem.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF7EC237F13B2009CD413 /* DmaMem.c */; }; - A5AAFC80237F13B4009CD413 /* NvmExpressPeiPassThru.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF7ED237F13B2009CD413 /* NvmExpressPeiPassThru.c */; }; - A5AAFC81237F13B4009CD413 /* SdMmcPciHcPei.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF7F0237F13B2009CD413 /* SdMmcPciHcPei.c */; }; - A5AAFC82237F13B4009CD413 /* SataController.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF7F5237F13B2009CD413 /* SataController.c */; }; - A5AAFC83237F13B4009CD413 /* ComponentName.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF7F8237F13B2009CD413 /* ComponentName.c */; }; - A5AAFC84237F13B4009CD413 /* Serial.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF7FD237F13B2009CD413 /* Serial.c */; }; - A5AAFC85237F13B4009CD413 /* SerialIo.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF7FE237F13B2009CD413 /* SerialIo.c */; }; - A5AAFC86237F13B4009CD413 /* ComponentName.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF801237F13B2009CD413 /* ComponentName.c */; }; - A5AAFC87237F13B4009CD413 /* PciRootBridgeIo.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF804237F13B2009CD413 /* PciRootBridgeIo.c */; }; - A5AAFC88237F13B4009CD413 /* PciHostBridge.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF809237F13B2009CD413 /* PciHostBridge.c */; }; - A5AAFC89237F13B4009CD413 /* Xhci.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF80D237F13B2009CD413 /* Xhci.c */; }; - A5AAFC8A237F13B4009CD413 /* XhciReg.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF80E237F13B2009CD413 /* XhciReg.c */; }; - A5AAFC8B237F13B4009CD413 /* ComponentName.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF80F237F13B2009CD413 /* ComponentName.c */; }; - A5AAFC8C237F13B4009CD413 /* XhciSched.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF811237F13B2009CD413 /* XhciSched.c */; }; - A5AAFC8D237F13B4009CD413 /* UsbHcMem.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF815237F13B2009CD413 /* UsbHcMem.c */; }; - A5AAFC8E237F13B4009CD413 /* UhcPeim.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF819237F13B2009CD413 /* UhcPeim.c */; }; - A5AAFC8F237F13B4009CD413 /* DmaMem.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF81E237F13B2009CD413 /* DmaMem.c */; }; - A5AAFC90237F13B4009CD413 /* NvmExpressHci.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF820237F13B2009CD413 /* NvmExpressHci.c */; }; - A5AAFC91237F13B4009CD413 /* NvmExpressPassthru.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF821237F13B2009CD413 /* NvmExpressPassthru.c */; }; - A5AAFC92237F13B4009CD413 /* NvmExpressBlockIo.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF822237F13B2009CD413 /* NvmExpressBlockIo.c */; }; - A5AAFC93237F13B4009CD413 /* NvmExpress.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF825237F13B2009CD413 /* NvmExpress.c */; }; - A5AAFC94237F13B4009CD413 /* ComponentName.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF827237F13B2009CD413 /* ComponentName.c */; }; - A5AAFC95237F13B4009CD413 /* NvmExpressDiskInfo.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF82B237F13B2009CD413 /* NvmExpressDiskInfo.c */; }; - A5AAFC96237F13B4009CD413 /* NonDiscoverablePciDeviceIo.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF82F237F13B2009CD413 /* NonDiscoverablePciDeviceIo.c */; }; - A5AAFC97237F13B4009CD413 /* ComponentName.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF830237F13B2009CD413 /* ComponentName.c */; }; - A5AAFC98237F13B4009CD413 /* NonDiscoverablePciDeviceDxe.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF831237F13B2009CD413 /* NonDiscoverablePciDeviceDxe.c */; }; - A5AAFC99237F13B4009CD413 /* EhciReg.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF834237F13B2009CD413 /* EhciReg.c */; }; - A5AAFC9A237F13B4009CD413 /* ComponentName.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF839237F13B2009CD413 /* ComponentName.c */; }; - A5AAFC9B237F13B4009CD413 /* EhciSched.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF83C237F13B2009CD413 /* EhciSched.c */; }; - A5AAFC9C237F13B4009CD413 /* Ehci.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF83E237F13B2009CD413 /* Ehci.c */; }; - A5AAFC9D237F13B4009CD413 /* EhciDebug.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF83F237F13B2009CD413 /* EhciDebug.c */; }; - A5AAFC9E237F13B4009CD413 /* EhciUrb.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF841237F13B2009CD413 /* EhciUrb.c */; }; - A5AAFC9F237F13B4009CD413 /* UsbHcMem.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF843237F13B2009CD413 /* UsbHcMem.c */; }; - A5AAFCA0237F13B4009CD413 /* UfsPciHcPei.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF84A237F13B2009CD413 /* UfsPciHcPei.c */; }; - A5AAFCA1237F13B4009CD413 /* ComponentName.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF84E237F13B2009CD413 /* ComponentName.c */; }; - A5AAFCA2237F13B4009CD413 /* IsaBusDxe.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF852237F13B2009CD413 /* IsaBusDxe.c */; }; - A5AAFCA3237F13B4009CD413 /* Ps2KbdTextIn.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF855237F13B2009CD413 /* Ps2KbdTextIn.c */; }; - A5AAFCA4237F13B4009CD413 /* Ps2Keyboard.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF857237F13B2009CD413 /* Ps2Keyboard.c */; }; - A5AAFCA5237F13B4009CD413 /* Ps2KbdCtrller.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF858237F13B2009CD413 /* Ps2KbdCtrller.c */; }; - A5AAFCA6237F13B4009CD413 /* ComponentName.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF859237F13B2009CD413 /* ComponentName.c */; }; - A5AAFCA7237F13B4009CD413 /* Ps2Mouse.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF85E237F13B2009CD413 /* Ps2Mouse.c */; }; - A5AAFCA8237F13B4009CD413 /* ComponentName.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF85F237F13B2009CD413 /* ComponentName.c */; }; - A5AAFCA9237F13B4009CD413 /* CommPs2.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF864237F13B2009CD413 /* CommPs2.c */; }; - A5AAFCAA237F13B4009CD413 /* ScsiDisk.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF869237F13B2009CD413 /* ScsiDisk.c */; }; - A5AAFCAB237F13B4009CD413 /* ComponentName.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF86A237F13B2009CD413 /* ComponentName.c */; }; - A5AAFCAC237F13B4009CD413 /* ScsiBus.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF870237F13B2009CD413 /* ScsiBus.c */; }; - A5AAFCAD237F13B4009CD413 /* ComponentName.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF871237F13B2009CD413 /* ComponentName.c */; }; - A5AAFCAE237F13B4009CD413 /* UfsHcMem.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF878237F13B2009CD413 /* UfsHcMem.c */; }; - A5AAFCAF237F13B4009CD413 /* UfsHci.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF87A237F13B2009CD413 /* UfsHci.c */; }; - A5AAFCB0237F13B4009CD413 /* UfsBlockIoPei.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF87C237F13B2009CD413 /* UfsBlockIoPei.c */; }; - A5AAFCB1237F13B4009CD413 /* DmaMem.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF880237F13B2009CD413 /* DmaMem.c */; }; - A5AAFCB2237F13B4009CD413 /* UfsPassThruHci.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF883237F13B2009CD413 /* UfsPassThruHci.c */; }; - A5AAFCB3237F13B4009CD413 /* ComponentName.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF885237F13B2009CD413 /* ComponentName.c */; }; - A5AAFCB4237F13B4009CD413 /* UfsDevConfigProtocol.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF886237F13B2009CD413 /* UfsDevConfigProtocol.c */; }; - A5AAFCB5237F13B4009CD413 /* UfsPassThru.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF88A237F13B2009CD413 /* UfsPassThru.c */; }; - A5AAFCB6237F13B4009CD413 /* I2cBus.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF890237F13B2009CD413 /* I2cBus.c */; }; - A5AAFCB7237F13B4009CD413 /* I2cHost.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF893237F13B2009CD413 /* I2cHost.c */; }; - A5AAFCB8237F13B4009CD413 /* I2cDxe.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF898237F13B2009CD413 /* I2cDxe.c */; }; - A5AAFCB9237F13B4009CD413 /* ComponentName.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF89E237F13B2009CD413 /* ComponentName.c */; }; - A5AAFCBA237F13B4009CD413 /* UsbMouse.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF8A0237F13B2009CD413 /* UsbMouse.c */; }; - A5AAFCBB237F13B4009CD413 /* MouseHid.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF8A1237F13B2009CD413 /* MouseHid.c */; }; - A5AAFCBC237F13B4009CD413 /* UsbMouseAbsolutePointer.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF8A5237F13B2009CD413 /* UsbMouseAbsolutePointer.c */; }; - A5AAFCBD237F13B4009CD413 /* ComponentName.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF8A7237F13B2009CD413 /* ComponentName.c */; }; - A5AAFCBE237F13B4009CD413 /* MouseHid.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF8AA237F13B2009CD413 /* MouseHid.c */; }; - A5AAFCBF237F13B4009CD413 /* UsbDesc.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF8AE237F13B2009CD413 /* UsbDesc.c */; }; - A5AAFCC0237F13B4009CD413 /* UsbBus.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF8B1237F13B2009CD413 /* UsbBus.c */; }; - A5AAFCC1237F13B4009CD413 /* ComponentName.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF8B2237F13B2009CD413 /* ComponentName.c */; }; - A5AAFCC2237F13B4009CD413 /* UsbEnumer.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF8B4237F13B2009CD413 /* UsbEnumer.c */; }; - A5AAFCC3237F13B4009CD413 /* UsbHub.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF8B7237F13B2009CD413 /* UsbHub.c */; }; - A5AAFCC4237F13B4009CD413 /* UsbUtility.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF8B8237F13B2009CD413 /* UsbUtility.c */; }; - A5AAFCC5237F13B4009CD413 /* KeyBoard.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF8BC237F13B2009CD413 /* KeyBoard.c */; }; - A5AAFCC6237F13B4009CD413 /* ComponentName.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF8C0237F13B2009CD413 /* ComponentName.c */; }; - A5AAFCC7237F13B4009CD413 /* EfiKey.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF8C2237F13B2009CD413 /* EfiKey.c */; }; - A5AAFCC8237F13B4009CD413 /* PeiUsbLib.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF8C4237F13B2009CD413 /* PeiUsbLib.c */; }; - A5AAFCC9237F13B4009CD413 /* UsbIoPeim.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF8C8237F13B2009CD413 /* UsbIoPeim.c */; }; - A5AAFCCA237F13B4009CD413 /* HubPeim.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF8CA237F13B2009CD413 /* HubPeim.c */; }; - A5AAFCCB237F13B4009CD413 /* UsbPeim.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF8CC237F13B2009CD413 /* UsbPeim.c */; }; - A5AAFCCC237F13B4009CD413 /* PeiUsbLib.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF8CF237F13B2009CD413 /* PeiUsbLib.c */; }; - A5AAFCCD237F13B4009CD413 /* BotPeim.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF8D3237F13B2009CD413 /* BotPeim.c */; }; - A5AAFCCE237F13B4009CD413 /* PeiAtapi.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF8D6237F13B2009CD413 /* PeiAtapi.c */; }; - A5AAFCCF237F13B4009CD413 /* UsbBotPeim.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF8D8237F13B2009CD413 /* UsbBotPeim.c */; }; - A5AAFCD0237F13B4009CD413 /* UsbMassDiskInfo.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF8DB237F13B2009CD413 /* UsbMassDiskInfo.c */; }; - A5AAFCD1237F13B4009CD413 /* UsbMassBoot.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF8DE237F13B2009CD413 /* UsbMassBoot.c */; }; - A5AAFCD2237F13B4009CD413 /* ComponentName.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF8E3237F13B2009CD413 /* ComponentName.c */; }; - A5AAFCD3237F13B4009CD413 /* UsbMassCbi.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF8E4237F13B2009CD413 /* UsbMassCbi.c */; }; - A5AAFCD4237F13B4009CD413 /* UsbMassImpl.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF8E6237F13B2009CD413 /* UsbMassImpl.c */; }; - A5AAFCD5237F13B4009CD413 /* UsbMassBot.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF8E9237F13B2009CD413 /* UsbMassBot.c */; }; - A5AAFCD6237F13B4009CD413 /* DevicePath.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF8EC237F13B2009CD413 /* DevicePath.c */; }; - A5AAFCD7237F13B4009CD413 /* AhciPeiBlockIo.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF8EF237F13B2009CD413 /* AhciPeiBlockIo.c */; }; - A5AAFCD8237F13B4009CD413 /* AhciPeiPassThru.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF8F1237F13B2009CD413 /* AhciPeiPassThru.c */; }; - A5AAFCD9237F13B4009CD413 /* AhciPeiStorageSecurity.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF8F3237F13B2009CD413 /* AhciPeiStorageSecurity.c */; }; - A5AAFCDA237F13B4009CD413 /* AhciPei.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF8F5237F13B2009CD413 /* AhciPei.c */; }; - A5AAFCDB237F13B4009CD413 /* DmaMem.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF8F7237F13B2009CD413 /* DmaMem.c */; }; - A5AAFCDC237F13B4009CD413 /* AhciMode.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF8F9237F13B2009CD413 /* AhciMode.c */; }; - A5AAFCDD237F13B4009CD413 /* AhciPeiS3.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF8FA237F13B2009CD413 /* AhciPeiS3.c */; }; - A5AAFCDE237F13B4009CD413 /* ComponentName.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF8FE237F13B2009CD413 /* ComponentName.c */; }; - A5AAFCDF237F13B4009CD413 /* IdeMode.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF900237F13B2009CD413 /* IdeMode.c */; }; - A5AAFCE0237F13B4009CD413 /* AtaAtapiPassThru.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF902237F13B2009CD413 /* AtaAtapiPassThru.c */; }; - A5AAFCE1237F13B4009CD413 /* AhciMode.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF905237F13B2009CD413 /* AhciMode.c */; }; - A5AAFCE2237F13B4009CD413 /* AtaPassThruExecute.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF908237F13B2009CD413 /* AtaPassThruExecute.c */; }; - A5AAFCE3237F13B4009CD413 /* ComponentName.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF90A237F13B2009CD413 /* ComponentName.c */; }; - A5AAFCE4237F13B4009CD413 /* AtaBus.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF90D237F13B2009CD413 /* AtaBus.c */; }; - A5AAFCE5237F13B4009CD413 /* DxeCapsuleRuntime.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF910237F13B2009CD413 /* DxeCapsuleRuntime.c */; }; - A5AAFCE6237F13B4009CD413 /* CapsuleOnDisk.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF911237F13B2009CD413 /* CapsuleOnDisk.c */; }; - A5AAFCE7237F13B4009CD413 /* DxeCapsuleProcessLibNull.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF912237F13B2009CD413 /* DxeCapsuleProcessLibNull.c */; }; - A5AAFCE8237F13B4009CD413 /* DxeCapsuleReportLibNull.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF913237F13B2009CD413 /* DxeCapsuleReportLibNull.c */; }; - A5AAFCE9237F13B4009CD413 /* DxeCapsuleProcessLib.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF914237F13B2009CD413 /* DxeCapsuleProcessLib.c */; }; - A5AAFCEA237F13B4009CD413 /* DxeCapsuleReportLib.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF915237F13B2009CD413 /* DxeCapsuleReportLib.c */; }; - A5AAFCEB237F13B4009CD413 /* DxeCapsuleLib.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF919237F13B2009CD413 /* DxeCapsuleLib.c */; }; - A5AAFCEC237F13B4009CD413 /* SmmIpmiLibSmmIpmiProtocol.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF91D237F13B2009CD413 /* SmmIpmiLibSmmIpmiProtocol.c */; }; - A5AAFCED237F13B4009CD413 /* OemHookStatusCodeLibNull.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF922237F13B2009CD413 /* OemHookStatusCodeLibNull.c */; }; - A5AAFCEE237F13B4009CD413 /* DxeCrc32GuidedSectionExtractLib.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF925237F13B2009CD413 /* DxeCrc32GuidedSectionExtractLib.c */; }; - A5AAFCEF237F13B4009CD413 /* BootLogoLib.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF929237F13B2009CD413 /* BootLogoLib.c */; }; - A5AAFCF0237F13B4009CD413 /* LockBoxNullLib.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF92E237F13B2009CD413 /* LockBoxNullLib.c */; }; - A5AAFCF1237F13B4009CD413 /* FmpAuthenticationLibNull.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF931237F13B2009CD413 /* FmpAuthenticationLibNull.c */; }; - A5AAFCF2237F13B4009CD413 /* PlatVarCleanupLib.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF936237F13B2009CD413 /* PlatVarCleanupLib.c */; }; - A5AAFCF3237F13B4009CD413 /* PeiIpmiLibIpmiPpi.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF93D237F13B2009CD413 /* PeiIpmiLibIpmiPpi.c */; }; - A5AAFCF4237F13B4009CD413 /* F86GuidedSectionExtraction.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF942237F13B2009CD413 /* F86GuidedSectionExtraction.c */; }; - A5AAFCF5237F13B4009CD413 /* LzFind.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF94C237F13B2009CD413 /* LzFind.c */; }; - A5AAFCF6237F13B4009CD413 /* Bra86.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF94F237F13B2009CD413 /* Bra86.c */; }; - A5AAFCF7237F13B4009CD413 /* LzmaDec.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF950237F13B2009CD413 /* LzmaDec.c */; }; - A5AAFCF8237F13B4009CD413 /* LzmaDecompress.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF958237F13B2009CD413 /* LzmaDecompress.c */; }; - A5AAFCF9237F13B4009CD413 /* GuidedSectionExtraction.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF95A237F13B2009CD413 /* GuidedSectionExtraction.c */; }; - A5AAFCFA237F13B4009CD413 /* DeviceManager.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF962237F13B2009CD413 /* DeviceManager.c */; }; - A5AAFCFB237F13B4009CD413 /* BaseIpmiLibNull.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF964237F13B2009CD413 /* BaseIpmiLibNull.c */; }; - A5AAFCFC237F13B4009CD413 /* PeiCrc32GuidedSectionExtractLib.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF96A237F13B2009CD413 /* PeiCrc32GuidedSectionExtractLib.c */; }; - A5AAFCFD237F13B4009CD413 /* BmConnect.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF96C237F13B2009CD413 /* BmConnect.c */; }; - A5AAFCFE237F13B4009CD413 /* BmConsole.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF96D237F13B2009CD413 /* BmConsole.c */; }; - A5AAFCFF237F13B4009CD413 /* BmHotkey.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF96E237F13B2009CD413 /* BmHotkey.c */; }; - A5AAFD00237F13B4009CD413 /* BmLoadOption.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF971237F13B2009CD413 /* BmLoadOption.c */; }; - A5AAFD01237F13B4009CD413 /* BmBootDescription.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF972237F13B2009CD413 /* BmBootDescription.c */; }; - A5AAFD02237F13B4009CD413 /* BmDriverHealth.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF974237F13B2009CD413 /* BmDriverHealth.c */; }; - A5AAFD03237F13B4009CD413 /* BmBoot.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF975237F13B2009CD413 /* BmBoot.c */; }; - A5AAFD04237F13B4009CD413 /* BmMisc.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF976237F13B2009CD413 /* BmMisc.c */; }; - A5AAFD05237F13B4009CD413 /* NetBuffer.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF97A237F13B2009CD413 /* NetBuffer.c */; }; - A5AAFD06237F13B4009CD413 /* DxeNetLib.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF97B237F13B2009CD413 /* DxeNetLib.c */; }; - A5AAFD07237F13B4009CD413 /* FileExplorer.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF980237F13B2009CD413 /* FileExplorer.c */; }; - A5AAFD08237F13B4009CD413 /* DxeIpmiLibIpmiProtocol.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF987237F13B2009CD413 /* DxeIpmiLibIpmiProtocol.c */; }; - A5AAFD09237F13B4009CD413 /* VarCheckLib.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF989237F13B2009CD413 /* VarCheckLib.c */; }; - A5AAFD0A237F13B4009CD413 /* DisplayUpdateProgressLibGraphics.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF98F237F13B2009CD413 /* DisplayUpdateProgressLibGraphics.c */; }; - A5AAFD0B237F13B4009CD413 /* AuthVariableLibNull.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF993237F13B2009CD413 /* AuthVariableLibNull.c */; }; - A5AAFD0C237F13B4009CD413 /* ReportStatusCodeLib.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF996237F13B2009CD413 /* ReportStatusCodeLib.c */; }; - A5AAFD0D237F13B4009CD413 /* ReportStatusCodeLib.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF99B237F13B2009CD413 /* ReportStatusCodeLib.c */; }; - A5AAFD0E237F13B4009CD413 /* PeiPerformanceLib.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF99E237F13B2009CD413 /* PeiPerformanceLib.c */; }; - A5AAFD0F237F13B4009CD413 /* SmmLockBoxSmmLib.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF9A1237F13B2009CD413 /* SmmLockBoxSmmLib.c */; }; - A5AAFD10237F13B4009CD413 /* SmmLockBoxPeiLib.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF9A8237F13B2009CD413 /* SmmLockBoxPeiLib.c */; }; - A5AAFD11237F13B4009CD413 /* SmmLockBoxDxeLib.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF9AA237F13B2009CD413 /* SmmLockBoxDxeLib.c */; }; - A5AAFD12237F13B4009CD413 /* DxePerformanceLib.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF9AC237F13B2009CD413 /* DxePerformanceLib.c */; }; - A5AAFD13237F13B4009CD413 /* MemoryAllocationLib.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF9B1237F13B2009CD413 /* MemoryAllocationLib.c */; }; - A5AAFD14237F13B4009CD413 /* SmmMemoryProfileLib.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF9B3237F13B2009CD413 /* SmmMemoryProfileLib.c */; }; - A5AAFD15237F13B4009CD413 /* PlatformBootManager.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF9B5237F13B2009CD413 /* PlatformBootManager.c */; }; - A5AAFD16237F13B4009CD413 /* DxeFileExplorerProtocol.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF9BB237F13B2009CD413 /* DxeFileExplorerProtocol.c */; }; - A5AAFD17237F13B4009CD413 /* BootScriptSave.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF9BF237F13B2009CD413 /* BootScriptSave.c */; }; - A5AAFD18237F13B4009CD413 /* BootScriptExecute.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF9C0237F13B2009CD413 /* BootScriptExecute.c */; }; - A5AAFD19237F13B4009CD413 /* DxeHttpLib.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF9C4237F13B2009CD413 /* DxeHttpLib.c */; }; - A5AAFD1A237F13B4009CD413 /* BasePlatformHookLibNull.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF9CB237F13B2009CD413 /* BasePlatformHookLibNull.c */; }; - A5AAFD1B237F13B4009CD413 /* BaseResetSystemLibNull.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF9CF237F13B2009CD413 /* BaseResetSystemLibNull.c */; }; - A5AAFD1C237F13B4009CD413 /* NonDiscoverableDeviceRegistrationLib.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF9D1237F13B2009CD413 /* NonDiscoverableDeviceRegistrationLib.c */; }; - A5AAFD1D237F13B4009CD413 /* FrameBufferBltLib.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF9D4237F13B2009CD413 /* FrameBufferBltLib.c */; }; - A5AAFD1E237F13B4009CD413 /* PciHostBridgeLibNull.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF9D9237F13B2009CD413 /* PciHostBridgeLibNull.c */; }; - A5AAFD1F237F13B4009CD413 /* DebugLib.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF9DC237F13B2009CD413 /* DebugLib.c */; }; - A5AAFD20237F13B4009CD413 /* TpmMeasurementLibNull.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF9E0237F13B2009CD413 /* TpmMeasurementLibNull.c */; }; - A5AAFD21237F13B4009CD413 /* PeiDebugPrintHobLib.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF9E4237F13B2009CD413 /* PeiDebugPrintHobLib.c */; }; - A5AAFD22237F13B4009CD413 /* ReportStatusCodeLib.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF9E9237F13B2009CD413 /* ReportStatusCodeLib.c */; }; - A5AAFD23237F13B4009CD413 /* UefiSortLib.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF9EC237F13B2009CD413 /* UefiSortLib.c */; }; - A5AAFD24237F13B4009CD413 /* VarCheckHiiGen.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF9EF237F13B2009CD413 /* VarCheckHiiGen.c */; }; - A5AAFD25237F13B4009CD413 /* VarCheckHiiGenFromFv.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF9F2237F13B2009CD413 /* VarCheckHiiGenFromFv.c */; }; - A5AAFD26237F13B4009CD413 /* VarCheckHiiGenFromHii.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF9F5237F13B2009CD413 /* VarCheckHiiGenFromHii.c */; }; - A5AAFD27237F13B4009CD413 /* VarCheckHiiLibNullClass.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF9F6237F13B2009CD413 /* VarCheckHiiLibNullClass.c */; }; - A5AAFD28237F13B4009CD413 /* BaseMemoryAllocationLibNull.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF9F9237F13B2009CD413 /* BaseMemoryAllocationLibNull.c */; }; - A5AAFD29237F13B4009CD413 /* DisplayUpdateProgressLibText.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAF9FD237F13B2009CD413 /* DisplayUpdateProgressLibText.c */; }; - A5AAFD2A237F13B4009CD413 /* CustomizedDisplayLibInternal.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAFA06237F13B2009CD413 /* CustomizedDisplayLibInternal.c */; }; - A5AAFD2B237F13B4009CD413 /* CustomizedDisplayLib.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAFA07237F13B2009CD413 /* CustomizedDisplayLib.c */; }; - A5AAFD2C237F13B4009CD413 /* SmmCorePlatformHookLibNull.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAFA0B237F13B2009CD413 /* SmmCorePlatformHookLibNull.c */; }; - A5AAFD2D237F13B4009CD413 /* DebugAgentLibNull.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAFA0F237F13B2009CD413 /* DebugAgentLibNull.c */; }; - A5AAFD2E237F13B4009CD413 /* UefiHiiServicesLib.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAFA13237F13B2009CD413 /* UefiHiiServicesLib.c */; }; - A5AAFD2F237F13B4009CD413 /* BmLib.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAFA15237F13B2009CD413 /* BmLib.c */; }; - A5AAFD30237F13B4009CD413 /* BootOption.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAFA17237F13B2009CD413 /* BootOption.c */; }; - A5AAFD31237F13B4009CD413 /* BootMaintenanceManagerCustomizedUiSupport.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAFA19237F13B2009CD413 /* BootMaintenanceManagerCustomizedUiSupport.c */; }; - A5AAFD32237F13B4009CD413 /* BootMaintenanceManagerCustomizedUi.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAFA1A237F13B2009CD413 /* BootMaintenanceManagerCustomizedUi.c */; }; - A5AAFD33237F13B4009CD413 /* BootMaintenance.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAFA1E237F13B2009CD413 /* BootMaintenance.c */; }; - A5AAFD34237F13B4009CD413 /* UpdatePage.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAFA21237F13B2009CD413 /* UpdatePage.c */; }; - A5AAFD35237F13B4009CD413 /* Data.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAFA22237F13B2009CD413 /* Data.c */; }; - A5AAFD36237F13B4009CD413 /* ConsoleOption.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAFA24237F13B2009CD413 /* ConsoleOption.c */; }; - A5AAFD37237F13B4009CD413 /* Variable.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAFA25237F13B2009CD413 /* Variable.c */; }; - A5AAFD38237F13B4009CD413 /* PlatformHookLibSerialPortPpi.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAFA29237F13B2009CD413 /* PlatformHookLibSerialPortPpi.c */; }; - A5AAFD39237F13B4009CD413 /* BaseSerialPortLib16550.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAFA2B237F13B2009CD413 /* BaseSerialPortLib16550.c */; }; - A5AAFD3A237F13B4009CD413 /* BaseHobLibNull.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAFA2F237F13B2009CD413 /* BaseHobLibNull.c */; }; - A5AAFD3B237F13B4009CD413 /* SmmPerformanceLib.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAFA33237F13B2009CD413 /* SmmPerformanceLib.c */; }; - A5AAFD3C237F13B4009CD413 /* DxeCapsuleLibNull.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAFA39237F13B2009CD413 /* DxeCapsuleLibNull.c */; }; - A5AAFD3D237F13B4009CD413 /* DxeDebugPrintErrorLevelLib.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAFA3D237F13B2009CD413 /* DxeDebugPrintErrorLevelLib.c */; }; - A5AAFD3E237F13B4009CD413 /* PiSmmCoreSmmServicesTableLib.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAFA41237F13B2009CD413 /* PiSmmCoreSmmServicesTableLib.c */; }; - A5AAFD3F237F13B4009CD413 /* BrotliDecompress.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAFA49237F13B2009CD413 /* BrotliDecompress.c */; }; - A5AAFD40237F13B4009CD413 /* dictionary.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAFA4E237F13B2009CD413 /* dictionary.c */; }; - A5AAFD41237F13B4009CD413 /* transform.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAFA50237F13B2009CD413 /* transform.c */; }; - A5AAFD42237F13B4009CD413 /* state.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAFA57237F13B2009CD413 /* state.c */; }; - A5AAFD43237F13B4009CD413 /* decode.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAFA59237F13B3009CD413 /* decode.c */; }; - A5AAFD44237F13B4009CD413 /* huffman.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAFA5A237F13B3009CD413 /* huffman.c */; }; - A5AAFD45237F13B4009CD413 /* bit_reader.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAFA5B237F13B3009CD413 /* bit_reader.c */; }; - A5AAFD46237F13B4009CD413 /* GuidedSectionExtraction.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAFA62237F13B3009CD413 /* GuidedSectionExtraction.c */; }; - A5AAFD47237F13B4009CD413 /* ResetUtility.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAFA64237F13B3009CD413 /* ResetUtility.c */; }; - A5AAFD48237F13B4009CD413 /* SmmCorePerformanceLib.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAFA67237F13B3009CD413 /* SmmCorePerformanceLib.c */; }; - A5AAFD49237F13B4009CD413 /* MemoryAllocationLib.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAFA6C237F13B3009CD413 /* MemoryAllocationLib.c */; }; - A5AAFD4A237F13B4009CD413 /* DxeMemoryProfileLib.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAFA6F237F13B3009CD413 /* DxeMemoryProfileLib.c */; }; - A5AAFD4B237F13B4009CD413 /* DebugLib.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAFA72237F13B3009CD413 /* DebugLib.c */; }; - A5AAFD4C237F13B4009CD413 /* SmmSmiHandlerProfileLib.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAFA74237F13B3009CD413 /* SmmSmiHandlerProfileLib.c */; }; - A5AAFD4D237F13B4009CD413 /* ReportStatusCodeLib.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAFA7A237F13B3009CD413 /* ReportStatusCodeLib.c */; }; - A5AAFD4E237F13B4009CD413 /* VarCheckUefiLibNullClass.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAFA7E237F13B3009CD413 /* VarCheckUefiLibNullClass.c */; }; - A5AAFD4F237F13B4009CD413 /* RuntimeResetSystemLib.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAFA81237F13B3009CD413 /* RuntimeResetSystemLib.c */; }; - A5AAFD50237F13B4009CD413 /* VarCheckPcdLibNullClass.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAFA84237F13B3009CD413 /* VarCheckPcdLibNullClass.c */; }; - A5AAFD51237F13B4009CD413 /* DxeSecurityManagementLib.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAFA89237F13B3009CD413 /* DxeSecurityManagementLib.c */; }; - A5AAFD52237F13B4009CD413 /* PiSmmCoreMemoryProfileLib.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAFA8D237F13B3009CD413 /* PiSmmCoreMemoryProfileLib.c */; }; - A5AAFD53237F13B4009CD413 /* MemoryAllocationLib.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAFA8F237F13B3009CD413 /* MemoryAllocationLib.c */; }; - A5AAFD54237F13B4009CD413 /* PiSmmCoreMemoryProfileLibNull.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAFA93237F13B3009CD413 /* PiSmmCoreMemoryProfileLibNull.c */; }; - A5AAFD55237F13B4009CD413 /* PrintLib.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAFA98237F13B3009CD413 /* PrintLib.c */; }; - A5AAFD56237F13B4009CD413 /* MemoryAllocationLib.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAFA9B237F13B3009CD413 /* MemoryAllocationLib.c */; }; - A5AAFD57237F13B4009CD413 /* DxeCoreMemoryProfileLib.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAFAA0237F13B3009CD413 /* DxeCoreMemoryProfileLib.c */; }; - A5AAFD58237F13B4009CD413 /* DxeCoreMemoryProfileLibNull.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAFAA3237F13B3009CD413 /* DxeCoreMemoryProfileLibNull.c */; }; - A5AAFD59237F13B4009CD413 /* BootManager.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAFAAA237F13B3009CD413 /* BootManager.c */; }; - A5AAFD5A237F13B4009CD413 /* BmpSupportLib.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAFAAC237F13B3009CD413 /* BmpSupportLib.c */; }; - A5AAFD5B237F13B4009CD413 /* CpuExceptionHandlerLibNull.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAFAB2237F13B3009CD413 /* CpuExceptionHandlerLibNull.c */; }; - A5AAFD5C237F13B4009CD413 /* HiiLib.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAFAB4237F13B3009CD413 /* HiiLib.c */; }; - A5AAFD5D237F13B4009CD413 /* HiiString.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAFAB7237F13B3009CD413 /* HiiString.c */; }; - A5AAFD5E237F13B4009CD413 /* HiiLanguage.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAFAB8237F13B3009CD413 /* HiiLanguage.c */; }; - A5AAFD5F237F13B4009CD413 /* BaseSortLib.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAFABD237F13B3009CD413 /* BaseSortLib.c */; }; - A5AAFD60237F13B4009CD413 /* DxeCorePerformanceLib.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAFABF237F13B3009CD413 /* DxeCorePerformanceLib.c */; }; - A5AAFD61237F13B4009CD413 /* DxeResetSystemLib.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAFAC6237F13B3009CD413 /* DxeResetSystemLib.c */; }; - A5AAFD62237F13B4009CD413 /* PeiResetSystemLib.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAFACA237F13B3009CD413 /* PeiResetSystemLib.c */; }; - A5AAFD63237F13B4009CD413 /* Logo.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAFAD5237F13B3009CD413 /* Logo.c */; }; - A5AAFD64237F13B4009CD413 /* FrontPageCustomizedUiSupport.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAFADD237F13B3009CD413 /* FrontPageCustomizedUiSupport.c */; }; - A5AAFD65237F13B4009CD413 /* String.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAFADF237F13B3009CD413 /* String.c */; }; - A5AAFD66237F13B4009CD413 /* FrontPageCustomizedUi.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAFAE0237F13B3009CD413 /* FrontPageCustomizedUi.c */; }; - A5AAFD67237F13B4009CD413 /* FrontPage.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAFAE2237F13B3009CD413 /* FrontPage.c */; }; - A5AAFD68237F13B4009CD413 /* HelloWorld.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAFAEC237F13B3009CD413 /* HelloWorld.c */; }; - A5AAFD69237F13B4009CD413 /* BootManagerMenu.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAFAEF237F13B3009CD413 /* BootManagerMenu.c */; }; - A5AAFD6A237F13B4009CD413 /* AppSupport.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAFAF8237F13B3009CD413 /* AppSupport.c */; }; - A5AAFD6B237F13B4009CD413 /* CapsuleOnDisk.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAFAFB237F13B3009CD413 /* CapsuleOnDisk.c */; }; - A5AAFD6C237F13B4009CD413 /* CapsuleApp.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAFAFC237F13B3009CD413 /* CapsuleApp.c */; }; - A5AAFD6D237F13B4009CD413 /* CapsuleDump.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAFAFD237F13B3009CD413 /* CapsuleDump.c */; }; - A5AAFD6E237F13B4009CD413 /* MemoryProfileInfo.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAFB00237F13B3009CD413 /* MemoryProfileInfo.c */; }; - A5AAFD6F237F13B4009CD413 /* DumpDynPcd.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAFB06237F13B3009CD413 /* DumpDynPcd.c */; }; - A5AAFD70237F13B4009CD413 /* VariableInfo.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAFB0B237F13B3009CD413 /* VariableInfo.c */; }; - A5AAFD71237F13B4009CD413 /* SmiHandlerProfileInfo.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AAFB10237F13B3009CD413 /* SmiHandlerProfileInfo.c */; }; A5C219B7243ED7AA00036F7B /* XCinema.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A5C219B5243ED7AA00036F7B /* XCinema.cpp */; }; A5D12C22243A0B6500DFA98A /* LoadOptions_test.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A5D12C20243A0B6400DFA98A /* LoadOptions_test.cpp */; }; A5D12C2D243A0B7900DFA98A /* printlib-test.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A5D12C26243A0B7700DFA98A /* printlib-test.cpp */; }; @@ -1881,91 +446,6 @@ 12C86BDB1DE4271D00BF4974 /* PcatPciRootBridgeIo.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PcatPciRootBridgeIo.c; sourceTree = ""; }; 12C86BDC1DE4271D00BF4974 /* PciRootBridge.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = PciRootBridge.inf; sourceTree = ""; }; 12C86BDE1DE4271D00BF4974 /* PcatIo.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PcatIo.c; sourceTree = ""; }; - 12C86BE01DE4271D00BF4974 /* build.sh */ = {isa = PBXFileReference; lastKnownFileType = text.script.sh; path = build.sh; sourceTree = ""; }; - 12C86BE21DE4271D00BF4974 /* CpuDxe.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = CpuDxe.c; sourceTree = ""; }; - 12C86BE31DE4271D00BF4974 /* CpuDxe.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = CpuDxe.h; sourceTree = ""; }; - 12C86BE41DE4271D00BF4974 /* CpuDxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = CpuDxe.inf; sourceTree = ""; }; - 12C86BE51DE4271D00BF4974 /* CpuGdt.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = CpuGdt.c; sourceTree = ""; }; - 12C86BE71DE4271D00BF4974 /* CpuAsm.asm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm.asm; path = CpuAsm.asm; sourceTree = ""; }; - 12C86BE81DE4271D00BF4974 /* CpuAsm.S */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm; path = CpuAsm.S; sourceTree = ""; }; - 12C86BE91DE4271D00BF4974 /* IvtAsm.asm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm.asm; path = IvtAsm.asm; sourceTree = ""; }; - 12C86BEA1DE4271D00BF4974 /* IvtAsm.S */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm; path = IvtAsm.S; sourceTree = ""; }; - 12C86BEC1DE4271D00BF4974 /* CpuAsm.asm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm.asm; path = CpuAsm.asm; sourceTree = ""; }; - 12C86BED1DE4271D00BF4974 /* CpuAsm.S */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm; path = CpuAsm.S; sourceTree = ""; }; - 12C86BEF1DE4271D00BF4974 /* CpuIo2Dxe.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = CpuIo2Dxe.c; sourceTree = ""; }; - 12C86BF01DE4271D00BF4974 /* CpuIo2Dxe.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = CpuIo2Dxe.h; sourceTree = ""; }; - 12C86BF11DE4271D00BF4974 /* CpuIo2Dxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = CpuIo2Dxe.inf; sourceTree = ""; }; - 12C86BF31DE4271D00BF4974 /* CpuIo2Smm.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = CpuIo2Smm.c; sourceTree = ""; }; - 12C86BF41DE4271D00BF4974 /* CpuIo2Smm.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = CpuIo2Smm.h; sourceTree = ""; }; - 12C86BF51DE4271D00BF4974 /* CpuIo2Smm.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = CpuIo2Smm.inf; sourceTree = ""; }; - 12C86BF71DE4271D00BF4974 /* CpuIoPei.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = CpuIoPei.c; sourceTree = ""; }; - 12C86BF81DE4271D00BF4974 /* CpuIoPei.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = CpuIoPei.h; sourceTree = ""; }; - 12C86BF91DE4271D00BF4974 /* CpuIoPei.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = CpuIoPei.inf; sourceTree = ""; }; - 12C86BFA1DE4271D00BF4974 /* edk2.patch-idtgdt */ = {isa = PBXFileReference; lastKnownFileType = text; path = "edk2.patch-idtgdt"; sourceTree = ""; }; - 12C86BFD1DE4271D00BF4974 /* LocalApicLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = LocalApicLib.h; sourceTree = ""; }; - 12C86BFE1DE4271D00BF4974 /* MtrrLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MtrrLib.h; sourceTree = ""; }; - 12C86BFF1DE4271D00BF4974 /* UefiCpuLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = UefiCpuLib.h; sourceTree = ""; }; - 12C86C041DE4271D00BF4974 /* BaseUefiCpuLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = BaseUefiCpuLib.inf; sourceTree = ""; }; - 12C86C061DE4271D00BF4974 /* InitializeFpu.asm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm.asm; path = InitializeFpu.asm; sourceTree = ""; }; - 12C86C071DE4271D00BF4974 /* InitializeFpu.S */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm; path = InitializeFpu.S; sourceTree = ""; }; - 12C86C091DE4271D00BF4974 /* InitializeFpu.asm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm.asm; path = InitializeFpu.asm; sourceTree = ""; }; - 12C86C0A1DE4271D00BF4974 /* InitializeFpu.S */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm; path = InitializeFpu.S; sourceTree = ""; }; - 12C86C0C1DE4271D00BF4974 /* BaseXApicLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = BaseXApicLib.c; sourceTree = ""; }; - 12C86C0D1DE4271D00BF4974 /* BaseXApicLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = BaseXApicLib.inf; sourceTree = ""; }; - 12C86C0F1DE4271D00BF4974 /* BaseXApicX2ApicLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = BaseXApicX2ApicLib.c; sourceTree = ""; }; - 12C86C101DE4271D00BF4974 /* BaseXApicX2ApicLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = BaseXApicX2ApicLib.inf; sourceTree = ""; }; - 12C86C121DE4271D00BF4974 /* CpuExceptionCommon.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = CpuExceptionCommon.c; sourceTree = ""; }; - 12C86C131DE4271D00BF4974 /* CpuExceptionCommon.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = CpuExceptionCommon.h; sourceTree = ""; }; - 12C86C141DE4271D00BF4974 /* DxeCpuExceptionHandlerLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = DxeCpuExceptionHandlerLib.inf; sourceTree = ""; }; - 12C86C151DE4271D00BF4974 /* DxeCpuExceptionHandlerLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = DxeCpuExceptionHandlerLib.uni; sourceTree = ""; }; - 12C86C161DE4271D00BF4974 /* DxeException.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DxeException.c; sourceTree = ""; }; - 12C86C171DE4271D00BF4974 /* DxeSmmCpuException.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DxeSmmCpuException.c; sourceTree = ""; }; - 12C86C191DE4271D00BF4974 /* ArchExceptionHandler.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ArchExceptionHandler.c; sourceTree = ""; }; - 12C86C1A1DE4271D00BF4974 /* ArchInterruptDefs.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ArchInterruptDefs.h; sourceTree = ""; }; - 12C86C1B1DE4271D00BF4974 /* ExceptionHandlerAsm.asm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm.asm; path = ExceptionHandlerAsm.asm; sourceTree = ""; }; - 12C86C1C1DE4271D00BF4974 /* ExceptionHandlerAsm.S */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm; path = ExceptionHandlerAsm.S; sourceTree = ""; }; - 12C86C1D1DE4271D00BF4974 /* SecPeiCpuException.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SecPeiCpuException.c; sourceTree = ""; }; - 12C86C1E1DE4271D00BF4974 /* SecPeiCpuExceptionHandlerLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = SecPeiCpuExceptionHandlerLib.inf; sourceTree = ""; }; - 12C86C1F1DE4271D00BF4974 /* SecPeiCpuExceptionHandlerLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = SecPeiCpuExceptionHandlerLib.uni; sourceTree = ""; }; - 12C86C201DE4271D00BF4974 /* SmmCpuExceptionHandlerLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = SmmCpuExceptionHandlerLib.inf; sourceTree = ""; }; - 12C86C211DE4271D00BF4974 /* SmmCpuExceptionHandlerLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = SmmCpuExceptionHandlerLib.uni; sourceTree = ""; }; - 12C86C221DE4271D00BF4974 /* SmmException.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SmmException.c; sourceTree = ""; }; - 12C86C241DE4271D00BF4974 /* ArchExceptionHandler.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ArchExceptionHandler.c; sourceTree = ""; }; - 12C86C251DE4271D00BF4974 /* ArchInterruptDefs.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ArchInterruptDefs.h; sourceTree = ""; }; - 12C86C261DE4271D00BF4974 /* ExceptionHandlerAsm.asm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm.asm; path = ExceptionHandlerAsm.asm; sourceTree = ""; }; - 12C86C271DE4271D00BF4974 /* ExceptionHandlerAsm.S */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm; path = ExceptionHandlerAsm.S; sourceTree = ""; }; - 12C86C291DE4271D00BF4974 /* MtrrLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = MtrrLib.c; sourceTree = ""; }; - 12C86C2A1DE4271D00BF4974 /* MtrrLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = MtrrLib.inf; sourceTree = ""; }; - 12C86C2C1DE4271D00BF4974 /* IpfTimerLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = IpfTimerLib.c; sourceTree = ""; }; - 12C86C2D1DE4271D00BF4974 /* SecPeiDxeTimerLibUefiCpu.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = SecPeiDxeTimerLibUefiCpu.inf; sourceTree = ""; }; - 12C86C2E1DE4271D00BF4974 /* X86TimerLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = X86TimerLib.c; sourceTree = ""; }; - 12C86C321DE4271D00BF4974 /* ResetVector.ia32.port80.raw */ = {isa = PBXFileReference; lastKnownFileType = file; path = ResetVector.ia32.port80.raw; sourceTree = ""; }; - 12C86C331DE4271D00BF4974 /* ResetVector.ia32.raw */ = {isa = PBXFileReference; lastKnownFileType = file; path = ResetVector.ia32.raw; sourceTree = ""; }; - 12C86C341DE4271D00BF4974 /* ResetVector.ia32.serial.raw */ = {isa = PBXFileReference; lastKnownFileType = file; path = ResetVector.ia32.serial.raw; sourceTree = ""; }; - 12C86C351DE4271D00BF4974 /* ResetVector.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = ResetVector.inf; sourceTree = ""; }; - 12C86C361DE4271D00BF4974 /* ResetVector.x64.port80.raw */ = {isa = PBXFileReference; lastKnownFileType = file; path = ResetVector.x64.port80.raw; sourceTree = ""; }; - 12C86C371DE4271D00BF4974 /* ResetVector.x64.raw */ = {isa = PBXFileReference; lastKnownFileType = file; path = ResetVector.x64.raw; sourceTree = ""; }; - 12C86C381DE4271D00BF4974 /* ResetVector.x64.serial.raw */ = {isa = PBXFileReference; lastKnownFileType = file; path = ResetVector.x64.serial.raw; sourceTree = ""; }; - 12C86C391DE4271D00BF4974 /* Build.py */ = {isa = PBXFileReference; lastKnownFileType = text.script.python; path = Build.py; sourceTree = ""; }; - 12C86C3A1DE4271D00BF4974 /* CommonMacros.inc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.pascal; path = CommonMacros.inc; sourceTree = ""; }; - 12C86C3B1DE4271D00BF4974 /* DebugDisabled.asm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm.asm; path = DebugDisabled.asm; sourceTree = ""; }; - 12C86C3D1DE4271D00BF4974 /* Init16.asm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm.asm; path = Init16.asm; sourceTree = ""; }; - 12C86C3E1DE4271D00BF4974 /* Real16ToFlat32.asm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm.asm; path = Real16ToFlat32.asm; sourceTree = ""; }; - 12C86C3F1DE4271D00BF4974 /* ResetVectorVtf0.asm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm.asm; path = ResetVectorVtf0.asm; sourceTree = ""; }; - 12C86C411DE4271D00BF4974 /* Flat32ToFlat64.asm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm.asm; path = Flat32ToFlat64.asm; sourceTree = ""; }; - 12C86C421DE4271D00BF4974 /* SearchForBfvBase.asm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm.asm; path = SearchForBfvBase.asm; sourceTree = ""; }; - 12C86C431DE4271D00BF4974 /* SearchForSecEntry.asm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm.asm; path = SearchForSecEntry.asm; sourceTree = ""; }; - 12C86C441DE4271D00BF4974 /* Main.asm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm.asm; path = Main.asm; sourceTree = ""; }; - 12C86C451DE4271D00BF4974 /* Port80Debug.asm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm.asm; path = Port80Debug.asm; sourceTree = ""; }; - 12C86C461DE4271D00BF4974 /* PostCodes.inc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.pascal; path = PostCodes.inc; sourceTree = ""; }; - 12C86C471DE4271D00BF4974 /* ReadMe.txt */ = {isa = PBXFileReference; lastKnownFileType = text; path = ReadMe.txt; sourceTree = ""; }; - 12C86C481DE4271D00BF4974 /* ResetVectorCode.asm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm.asm; path = ResetVectorCode.asm; sourceTree = ""; }; - 12C86C491DE4271D00BF4974 /* SerialDebug.asm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm.asm; path = SerialDebug.asm; sourceTree = ""; }; - 12C86C4B1DE4271D00BF4974 /* FixupForRawSection.py */ = {isa = PBXFileReference; lastKnownFileType = text.script.python; path = FixupForRawSection.py; sourceTree = ""; }; - 12C86C4C1DE4271D00BF4974 /* UefiCpuPkg.dec */ = {isa = PBXFileReference; lastKnownFileType = text; path = UefiCpuPkg.dec; sourceTree = ""; }; - 12C86C4D1DE4271D00BF4974 /* UefiCpuPkg.dsc */ = {isa = PBXFileReference; lastKnownFileType = text; path = UefiCpuPkg.dsc; sourceTree = ""; }; - 12C86C511DE4271D00BF4974 /* S3Resume.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = S3Resume.c; sourceTree = ""; }; - 12C86C521DE4271D00BF4974 /* S3Resume2Pei.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = S3Resume2Pei.inf; sourceTree = ""; }; 12C86C551DE4272F00BF4974 /* AhciMode.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = AhciMode.c; sourceTree = ""; }; 12C86C561DE4272F00BF4974 /* AhciMode.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AhciMode.h; sourceTree = ""; }; 12C86C571DE4272F00BF4974 /* AtaAtapiPassThru.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = AtaAtapiPassThru.c; sourceTree = ""; }; @@ -2487,6 +967,4099 @@ A57CF7D1241BE0FB006DE51E /* strcmp_test.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = strcmp_test.cpp; sourceTree = ""; }; A57CF7D5241BE110006DE51E /* XString_test.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XString_test.h; sourceTree = ""; }; A57CF7D6241BE111006DE51E /* XString_test.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = XString_test.cpp; sourceTree = ""; }; + A5814365253816D700CF4451 /* PlatformBdsLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PlatformBdsLib.h; sourceTree = ""; }; + A5814366253816D700CF4451 /* GenericBdsLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = GenericBdsLib.h; sourceTree = ""; }; + A5814368253816D700CF4451 /* ExitPmAuth.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ExitPmAuth.h; sourceTree = ""; }; + A5814369253816D700CF4451 /* IsaAcpi.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = IsaAcpi.h; sourceTree = ""; }; + A581436A253816D700CF4451 /* OEMBadging.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = OEMBadging.h; sourceTree = ""; }; + A581436B253816D700CF4451 /* VgaMiniPort.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = VgaMiniPort.h; sourceTree = ""; }; + A581436C253816D700CF4451 /* IsaIo.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = IsaIo.h; sourceTree = ""; }; + A581436E253816D700CF4451 /* LegacyBios.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = LegacyBios.h; sourceTree = ""; }; + A581436F253816D700CF4451 /* IntelFrameworkModulePkgTokenSpace.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = IntelFrameworkModulePkgTokenSpace.h; sourceTree = ""; }; + A5814370253816D700CF4451 /* BlockIoVendor.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = BlockIoVendor.h; sourceTree = ""; }; + A5814371253816D700CF4451 /* HdBootVariable.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HdBootVariable.h; sourceTree = ""; }; + A5814372253816D700CF4451 /* BdsLibHii.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = BdsLibHii.h; sourceTree = ""; }; + A5814373253816D700CF4451 /* BdsHii.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = BdsHii.h; sourceTree = ""; }; + A5814374253816D700CF4451 /* TianoDecompress.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = TianoDecompress.h; sourceTree = ""; }; + A5814375253816D700CF4451 /* DataHubStatusCodeRecord.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DataHubStatusCodeRecord.h; sourceTree = ""; }; + A5814376253816D700CF4451 /* AcpiVariableCompatibility.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AcpiVariableCompatibility.h; sourceTree = ""; }; + A5814377253816D700CF4451 /* LegacyDevOrder.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = LegacyDevOrder.h; sourceTree = ""; }; + A5814378253816D700CF4451 /* LastEnumLang.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = LastEnumLang.h; sourceTree = ""; }; + A5814379253816D700CF4451 /* CapsuleDataFile.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = CapsuleDataFile.h; sourceTree = ""; }; + A581437A253816D700CF4451 /* IntelFrameworkModulePkgExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = IntelFrameworkModulePkgExtra.uni; sourceTree = ""; }; + A581437B253816D700CF4451 /* IntelFrameworkModulePkg.dsc */ = {isa = PBXFileReference; lastKnownFileType = text; path = IntelFrameworkModulePkg.dsc; sourceTree = ""; }; + A581437C253816D700CF4451 /* IntelFrameworkModulePkg.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = IntelFrameworkModulePkg.uni; sourceTree = ""; }; + A581437D253816D700CF4451 /* IntelFrameworkModulePkg.dec */ = {isa = PBXFileReference; lastKnownFileType = text; path = IntelFrameworkModulePkg.dec; sourceTree = ""; }; + A581437F253816EC00CF4451 /* IntelFrameworkPkgExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = IntelFrameworkPkgExtra.uni; sourceTree = ""; }; + A5814381253816EC00CF4451 /* FrameworkSmm.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = FrameworkSmm.h; sourceTree = ""; }; + A5814382253816EC00CF4451 /* FrameworkDxe.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = FrameworkDxe.h; sourceTree = ""; }; + A5814384253816EC00CF4451 /* BootScript.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = BootScript.h; sourceTree = ""; }; + A5814385253816EC00CF4451 /* FirmwareVolumeImageFormat.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = FirmwareVolumeImageFormat.h; sourceTree = ""; }; + A5814386253816EC00CF4451 /* SmmCis.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SmmCis.h; sourceTree = ""; }; + A5814387253816EC00CF4451 /* FrameworkInternalFormRepresentation.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = FrameworkInternalFormRepresentation.h; sourceTree = ""; }; + A5814388253816EC00CF4451 /* Hob.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Hob.h; sourceTree = ""; }; + A5814389253816EC00CF4451 /* PeiCis.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PeiCis.h; sourceTree = ""; }; + A581438A253816EC00CF4451 /* FirmwareVolumeHeader.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = FirmwareVolumeHeader.h; sourceTree = ""; }; + A581438B253816EC00CF4451 /* StatusCode.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = StatusCode.h; sourceTree = ""; }; + A581438C253816EC00CF4451 /* DxeCis.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DxeCis.h; sourceTree = ""; }; + A581438E253816EC00CF4451 /* SmmBase.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SmmBase.h; sourceTree = ""; }; + A581438F253816EC00CF4451 /* SmmUsbDispatch.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SmmUsbDispatch.h; sourceTree = ""; }; + A5814390253816EC00CF4451 /* SmmIchnDispatch.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SmmIchnDispatch.h; sourceTree = ""; }; + A5814391253816EC00CF4451 /* LegacyInterrupt.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = LegacyInterrupt.h; sourceTree = ""; }; + A5814392253816EC00CF4451 /* LegacyBios.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = LegacyBios.h; sourceTree = ""; }; + A5814393253816EC00CF4451 /* SmmSxDispatch.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SmmSxDispatch.h; sourceTree = ""; }; + A5814394253816EC00CF4451 /* SmmGpiDispatch.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SmmGpiDispatch.h; sourceTree = ""; }; + A5814395253816EC00CF4451 /* AcpiS3Save.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AcpiS3Save.h; sourceTree = ""; }; + A5814396253816EC00CF4451 /* FrameworkMpService.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = FrameworkMpService.h; sourceTree = ""; }; + A5814397253816EC00CF4451 /* FrameworkFirmwareVolumeBlock.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = FrameworkFirmwareVolumeBlock.h; sourceTree = ""; }; + A5814398253816EC00CF4451 /* SmmPowerButtonDispatch.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SmmPowerButtonDispatch.h; sourceTree = ""; }; + A5814399253816EC00CF4451 /* FrameworkFormCallback.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = FrameworkFormCallback.h; sourceTree = ""; }; + A581439A253816EC00CF4451 /* SmmControl.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SmmControl.h; sourceTree = ""; }; + A581439B253816EC00CF4451 /* SmmCpuSaveState.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SmmCpuSaveState.h; sourceTree = ""; }; + A581439C253816EC00CF4451 /* SmmStandbyButtonDispatch.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SmmStandbyButtonDispatch.h; sourceTree = ""; }; + A581439D253816EC00CF4451 /* SectionExtraction.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SectionExtraction.h; sourceTree = ""; }; + A581439E253816EC00CF4451 /* LegacyBiosPlatform.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = LegacyBiosPlatform.h; sourceTree = ""; }; + A581439F253816EC00CF4451 /* FrameworkFormBrowser.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = FrameworkFormBrowser.h; sourceTree = ""; }; + A58143A0253816EC00CF4451 /* SmmAccess.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SmmAccess.h; sourceTree = ""; }; + A58143A1253816EC00CF4451 /* LegacyRegion.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = LegacyRegion.h; sourceTree = ""; }; + A58143A2253816EC00CF4451 /* BootScriptSave.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = BootScriptSave.h; sourceTree = ""; }; + A58143A3253816EC00CF4451 /* DataHub.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DataHub.h; sourceTree = ""; }; + A58143A4253816EC00CF4451 /* SmmSwDispatch.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SmmSwDispatch.h; sourceTree = ""; }; + A58143A5253816EC00CF4451 /* SmmPeriodicTimerDispatch.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SmmPeriodicTimerDispatch.h; sourceTree = ""; }; + A58143A6253816EC00CF4451 /* Legacy8259.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Legacy8259.h; sourceTree = ""; }; + A58143A7253816EC00CF4451 /* AcpiSupport.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AcpiSupport.h; sourceTree = ""; }; + A58143A8253816EC00CF4451 /* SmmCpuIo.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SmmCpuIo.h; sourceTree = ""; }; + A58143A9253816EC00CF4451 /* CpuIo.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = CpuIo.h; sourceTree = ""; }; + A58143AA253816EC00CF4451 /* FirmwareVolume.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = FirmwareVolume.h; sourceTree = ""; }; + A58143AB253816EC00CF4451 /* FrameworkHii.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = FrameworkHii.h; sourceTree = ""; }; + A58143AC253816EC00CF4451 /* FrameworkPei.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = FrameworkPei.h; sourceTree = ""; }; + A58143AE253816EC00CF4451 /* SmramMemoryReserve.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SmramMemoryReserve.h; sourceTree = ""; }; + A58143AF253816EC00CF4451 /* DataHubRecords.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DataHubRecords.h; sourceTree = ""; }; + A58143B0253816EC00CF4451 /* SmmCommunicate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SmmCommunicate.h; sourceTree = ""; }; + A58143B1253816EC00CF4451 /* BlockIo.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = BlockIo.h; sourceTree = ""; }; + A58143B2253816EC00CF4451 /* Capsule.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Capsule.h; sourceTree = ""; }; + A58143B3253816EC00CF4451 /* FirmwareFileSystem.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = FirmwareFileSystem.h; sourceTree = ""; }; + A58143B5253816EC00CF4451 /* PciCfg.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PciCfg.h; sourceTree = ""; }; + A58143B6253816EC00CF4451 /* Security.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Security.h; sourceTree = ""; }; + A58143B7253816EC00CF4451 /* S3Resume.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = S3Resume.h; sourceTree = ""; }; + A58143B8253816EC00CF4451 /* BootScriptExecuter.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = BootScriptExecuter.h; sourceTree = ""; }; + A58143B9253816EC00CF4451 /* ReadOnlyVariable.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ReadOnlyVariable.h; sourceTree = ""; }; + A58143BA253816EC00CF4451 /* SectionExtraction.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SectionExtraction.h; sourceTree = ""; }; + A58143BB253816EC00CF4451 /* FvLoadFile.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = FvLoadFile.h; sourceTree = ""; }; + A58143BC253816EC00CF4451 /* Smbus.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Smbus.h; sourceTree = ""; }; + A58143BD253816EC00CF4451 /* FindFv.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = FindFv.h; sourceTree = ""; }; + A58143BE253816EC00CF4451 /* IntelFrameworkPkg.dsc */ = {isa = PBXFileReference; lastKnownFileType = text; path = IntelFrameworkPkg.dsc; sourceTree = ""; }; + A58143BF253816EC00CF4451 /* IntelFrameworkPkg.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = IntelFrameworkPkg.uni; sourceTree = ""; }; + A58143C0253816EC00CF4451 /* IntelFrameworkPkg.dec */ = {isa = PBXFileReference; lastKnownFileType = text; path = IntelFrameworkPkg.dec; sourceTree = ""; }; + A58143C42538170700CF4451 /* Runtime.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Runtime.c; sourceTree = ""; }; + A58143C52538170700CF4451 /* RuntimeDxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = RuntimeDxe.inf; sourceTree = ""; }; + A58143C62538170700CF4451 /* RuntimeDxe.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = RuntimeDxe.uni; sourceTree = ""; }; + A58143C72538170700CF4451 /* Crc32.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Crc32.c; sourceTree = ""; }; + A58143C82538170700CF4451 /* Runtime.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Runtime.h; sourceTree = ""; }; + A58143C92538170700CF4451 /* RuntimeDxeExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = RuntimeDxeExtra.uni; sourceTree = ""; }; + A58143CC2538170700CF4451 /* Stall.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Stall.c; sourceTree = ""; }; + A58143CD2538170700CF4451 /* MemoryProtection.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = MemoryProtection.c; sourceTree = ""; }; + A58143CE2538170700CF4451 /* DebugImageInfo.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DebugImageInfo.c; sourceTree = ""; }; + A58143CF2538170700CF4451 /* InstallConfigurationTable.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = InstallConfigurationTable.c; sourceTree = ""; }; + A58143D02538170700CF4451 /* SetWatchdogTimer.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SetWatchdogTimer.c; sourceTree = ""; }; + A58143D12538170700CF4451 /* PropertiesTable.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PropertiesTable.c; sourceTree = ""; }; + A58143D22538170700CF4451 /* MemoryAttributesTable.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = MemoryAttributesTable.c; sourceTree = ""; }; + A58143D42538170700CF4451 /* Handle.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Handle.c; sourceTree = ""; }; + A58143D52538170700CF4451 /* Handle.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Handle.h; sourceTree = ""; }; + A58143D62538170700CF4451 /* Locate.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Locate.c; sourceTree = ""; }; + A58143D72538170700CF4451 /* DriverSupport.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DriverSupport.c; sourceTree = ""; }; + A58143D82538170700CF4451 /* Notify.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Notify.c; sourceTree = ""; }; + A58143D92538170700CF4451 /* DxeMain.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = DxeMain.inf; sourceTree = ""; }; + A58143DB2538170700CF4451 /* FwVolBlock.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = FwVolBlock.c; sourceTree = ""; }; + A58143DC2538170700CF4451 /* FwVolBlock.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = FwVolBlock.h; sourceTree = ""; }; + A58143DE2538170700CF4451 /* Dispatcher.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Dispatcher.c; sourceTree = ""; }; + A58143DF2538170700CF4451 /* Dependency.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Dependency.c; sourceTree = ""; }; + A58143E12538170700CF4451 /* FwVolAttrib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = FwVolAttrib.c; sourceTree = ""; }; + A58143E22538170700CF4451 /* FwVolRead.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = FwVolRead.c; sourceTree = ""; }; + A58143E32538170700CF4451 /* FwVolDriver.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = FwVolDriver.h; sourceTree = ""; }; + A58143E42538170700CF4451 /* Ffs.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Ffs.c; sourceTree = ""; }; + A58143E52538170700CF4451 /* FwVolWrite.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = FwVolWrite.c; sourceTree = ""; }; + A58143E62538170700CF4451 /* FwVol.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = FwVol.c; sourceTree = ""; }; + A58143E82538170700CF4451 /* DxeProtocolNotify.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DxeProtocolNotify.c; sourceTree = ""; }; + A58143E92538170700CF4451 /* DxeMain.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DxeMain.c; sourceTree = ""; }; + A58143EB2538170700CF4451 /* Library.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Library.c; sourceTree = ""; }; + A58143ED2538170700CF4451 /* Gcd.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Gcd.c; sourceTree = ""; }; + A58143EE2538170700CF4451 /* Gcd.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Gcd.h; sourceTree = ""; }; + A58143F02538170700CF4451 /* Image.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Image.c; sourceTree = ""; }; + A58143F12538170700CF4451 /* Image.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Image.h; sourceTree = ""; }; + A58143F22538170700CF4451 /* DxeMain.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DxeMain.h; sourceTree = ""; }; + A58143F32538170700CF4451 /* DxeCore.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = DxeCore.uni; sourceTree = ""; }; + A58143F52538170700CF4451 /* CoreSectionExtraction.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = CoreSectionExtraction.c; sourceTree = ""; }; + A58143F72538170700CF4451 /* Timer.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Timer.c; sourceTree = ""; }; + A58143F82538170700CF4451 /* Event.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Event.h; sourceTree = ""; }; + A58143F92538170700CF4451 /* Event.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Event.c; sourceTree = ""; }; + A58143FA2538170700CF4451 /* Tpl.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Tpl.c; sourceTree = ""; }; + A58143FB2538170700CF4451 /* DxeCoreExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = DxeCoreExtra.uni; sourceTree = ""; }; + A58143FD2538170700CF4451 /* HeapGuard.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = HeapGuard.c; sourceTree = ""; }; + A58143FE2538170700CF4451 /* MemData.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = MemData.c; sourceTree = ""; }; + A58143FF2538170700CF4451 /* MemoryProfileRecord.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = MemoryProfileRecord.c; sourceTree = ""; }; + A58144002538170700CF4451 /* Page.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Page.c; sourceTree = ""; }; + A58144012538170700CF4451 /* HeapGuard.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HeapGuard.h; sourceTree = ""; }; + A58144022538170700CF4451 /* Imem.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Imem.h; sourceTree = ""; }; + A58144032538170700CF4451 /* Pool.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Pool.c; sourceTree = ""; }; + A58144052538170700CF4451 /* Smi.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Smi.c; sourceTree = ""; }; + A58144062538170700CF4451 /* SmiHandlerProfile.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SmiHandlerProfile.c; sourceTree = ""; }; + A58144072538170700CF4451 /* HeapGuard.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = HeapGuard.c; sourceTree = ""; }; + A58144082538170700CF4451 /* PiSmmCore.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PiSmmCore.c; sourceTree = ""; }; + A58144092538170700CF4451 /* Dispatcher.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Dispatcher.c; sourceTree = ""; }; + A581440A2538170700CF4451 /* PiSmmIplExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = PiSmmIplExtra.uni; sourceTree = ""; }; + A581440B2538170700CF4451 /* SmramProfileRecord.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SmramProfileRecord.c; sourceTree = ""; }; + A581440C2538170700CF4451 /* Handle.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Handle.c; sourceTree = ""; }; + A581440D2538170700CF4451 /* PiSmmCoreExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = PiSmmCoreExtra.uni; sourceTree = ""; }; + A581440E2538170700CF4451 /* InstallConfigurationTable.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = InstallConfigurationTable.c; sourceTree = ""; }; + A581440F2538170700CF4451 /* PiSmmCorePrivateData.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PiSmmCorePrivateData.h; sourceTree = ""; }; + A58144102538170700CF4451 /* PiSmmIpl.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PiSmmIpl.c; sourceTree = ""; }; + A58144112538170700CF4451 /* Page.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Page.c; sourceTree = ""; }; + A58144122538170700CF4451 /* PiSmmCore.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PiSmmCore.h; sourceTree = ""; }; + A58144132538170700CF4451 /* HeapGuard.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HeapGuard.h; sourceTree = ""; }; + A58144142538170700CF4451 /* PiSmmCore.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = PiSmmCore.inf; sourceTree = ""; }; + A58144152538170700CF4451 /* Locate.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Locate.c; sourceTree = ""; }; + A58144162538170700CF4451 /* Dependency.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Dependency.c; sourceTree = ""; }; + A58144172538170700CF4451 /* Pool.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Pool.c; sourceTree = ""; }; + A58144182538170700CF4451 /* PiSmmCore.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = PiSmmCore.uni; sourceTree = ""; }; + A58144192538170700CF4451 /* MemoryAttributesTable.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = MemoryAttributesTable.c; sourceTree = ""; }; + A581441A2538170700CF4451 /* PiSmmIpl.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = PiSmmIpl.uni; sourceTree = ""; }; + A581441B2538170700CF4451 /* Notify.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Notify.c; sourceTree = ""; }; + A581441C2538170700CF4451 /* PiSmmIpl.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = PiSmmIpl.inf; sourceTree = ""; }; + A581441E2538170700CF4451 /* PeiMain.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = PeiMain.inf; sourceTree = ""; }; + A58144202538170700CF4451 /* PciCfg2.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PciCfg2.c; sourceTree = ""; }; + A58144222538170700CF4451 /* MemoryServices.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = MemoryServices.c; sourceTree = ""; }; + A58144242538170700CF4451 /* Hob.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Hob.c; sourceTree = ""; }; + A58144262538170700CF4451 /* Security.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Security.c; sourceTree = ""; }; + A58144282538170700CF4451 /* Reset.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Reset.c; sourceTree = ""; }; + A581442A2538170700CF4451 /* Dispatcher.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Dispatcher.c; sourceTree = ""; }; + A581442C2538170700CF4451 /* FwVol.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = FwVol.h; sourceTree = ""; }; + A581442D2538170700CF4451 /* FwVol.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = FwVol.c; sourceTree = ""; }; + A581442F2538170700CF4451 /* Dependency.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Dependency.h; sourceTree = ""; }; + A58144302538170700CF4451 /* Dependency.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Dependency.c; sourceTree = ""; }; + A58144322538170700CF4451 /* Image.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Image.c; sourceTree = ""; }; + A58144342538170700CF4451 /* PeiMain.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PeiMain.c; sourceTree = ""; }; + A58144362538170700CF4451 /* StatusCode.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = StatusCode.c; sourceTree = ""; }; + A58144382538170700CF4451 /* BootMode.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = BootMode.c; sourceTree = ""; }; + A581443A2538170700CF4451 /* CpuIo.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = CpuIo.c; sourceTree = ""; }; + A581443C2538170700CF4451 /* Ppi.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Ppi.c; sourceTree = ""; }; + A581443D2538170700CF4451 /* PeiCoreExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = PeiCoreExtra.uni; sourceTree = ""; }; + A581443E2538170700CF4451 /* PeiMain.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PeiMain.h; sourceTree = ""; }; + A581443F2538170700CF4451 /* PeiCore.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = PeiCore.uni; sourceTree = ""; }; + A58144412538170700CF4451 /* DxeIpl.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = DxeIpl.uni; sourceTree = ""; }; + A58144432538170700CF4451 /* DxeLoadFunc.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DxeLoadFunc.c; sourceTree = ""; }; + A58144442538170700CF4451 /* DxeLoad.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DxeLoad.c; sourceTree = ""; }; + A58144452538170700CF4451 /* DxeIpl.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = DxeIpl.inf; sourceTree = ""; }; + A58144472538170700CF4451 /* VirtualMemory.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = VirtualMemory.c; sourceTree = ""; }; + A58144482538170700CF4451 /* VirtualMemory.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = VirtualMemory.h; sourceTree = ""; }; + A58144492538170700CF4451 /* DxeLoadFunc.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DxeLoadFunc.c; sourceTree = ""; }; + A581444A2538170700CF4451 /* DxeIpl.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DxeIpl.h; sourceTree = ""; }; + A581444C2538170700CF4451 /* IdtVectorAsm.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = IdtVectorAsm.nasm; sourceTree = ""; }; + A581444D2538170700CF4451 /* DxeLoadFunc.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DxeLoadFunc.c; sourceTree = ""; }; + A581444F2538170700CF4451 /* DxeLoadFunc.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DxeLoadFunc.c; sourceTree = ""; }; + A58144502538170700CF4451 /* DxeIplExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = DxeIplExtra.uni; sourceTree = ""; }; + A58144532538170700CF4451 /* DebugPort.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DebugPort.c; sourceTree = ""; }; + A58144542538170700CF4451 /* DebugPortDxeExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = DebugPortDxeExtra.uni; sourceTree = ""; }; + A58144552538170700CF4451 /* DebugPortDxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = DebugPortDxe.inf; sourceTree = ""; }; + A58144562538170700CF4451 /* ComponentName.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ComponentName.c; sourceTree = ""; }; + A58144572538170700CF4451 /* DebugPortDxe.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = DebugPortDxe.uni; sourceTree = ""; }; + A58144582538170700CF4451 /* DebugPort.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DebugPort.h; sourceTree = ""; }; + A581445A2538170700CF4451 /* EsrtFmpDebugPrint.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = EsrtFmpDebugPrint.c; sourceTree = ""; }; + A581445B2538170700CF4451 /* EsrtFmpDxeExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = EsrtFmpDxeExtra.uni; sourceTree = ""; }; + A581445C2538170700CF4451 /* EsrtFmpDxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = EsrtFmpDxe.inf; sourceTree = ""; }; + A581445D2538170700CF4451 /* EsrtFmpDxe.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = EsrtFmpDxe.uni; sourceTree = ""; }; + A581445E2538170700CF4451 /* EsrtFmp.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = EsrtFmp.c; sourceTree = ""; }; + A58144612538170700CF4451 /* PlDebugSupport.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PlDebugSupport.h; sourceTree = ""; }; + A58144622538170700CF4451 /* PlDebugSupportX64.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PlDebugSupportX64.c; sourceTree = ""; }; + A58144632538170700CF4451 /* AsmFuncs.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = AsmFuncs.nasm; sourceTree = ""; }; + A58144642538170700CF4451 /* DebugSupportDxeExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = DebugSupportDxeExtra.uni; sourceTree = ""; }; + A58144652538170700CF4451 /* DebugSupport.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DebugSupport.c; sourceTree = ""; }; + A58144672538170700CF4451 /* PlDebugSupport.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PlDebugSupport.h; sourceTree = ""; }; + A58144682538170700CF4451 /* AsmFuncs.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = AsmFuncs.nasm; sourceTree = ""; }; + A58144692538170700CF4451 /* PlDebugSupport.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PlDebugSupport.c; sourceTree = ""; }; + A581446A2538170700CF4451 /* PlDebugSupportIa32.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PlDebugSupportIa32.c; sourceTree = ""; }; + A581446B2538170700CF4451 /* DebugSupport.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DebugSupport.h; sourceTree = ""; }; + A581446C2538170700CF4451 /* DebugSupportDxe.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = DebugSupportDxe.uni; sourceTree = ""; }; + A581446D2538170700CF4451 /* DebugSupportDxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = DebugSupportDxe.inf; sourceTree = ""; }; + A58144702538170700CF4451 /* AmlNamespace.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = AmlNamespace.c; sourceTree = ""; }; + A58144712538170700CF4451 /* AcpiTableDxeExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = AcpiTableDxeExtra.uni; sourceTree = ""; }; + A58144722538170700CF4451 /* AcpiTableProtocol.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = AcpiTableProtocol.c; sourceTree = ""; }; + A58144732538170700CF4451 /* AmlOption.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = AmlOption.c; sourceTree = ""; }; + A58144742538170700CF4451 /* AmlString.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = AmlString.c; sourceTree = ""; }; + A58144752538170700CF4451 /* AcpiSdt.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = AcpiSdt.c; sourceTree = ""; }; + A58144762538170700CF4451 /* AcpiTable.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = AcpiTable.c; sourceTree = ""; }; + A58144772538170700CF4451 /* AcpiTableDxe.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = AcpiTableDxe.uni; sourceTree = ""; }; + A58144782538170700CF4451 /* AmlChild.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = AmlChild.c; sourceTree = ""; }; + A58144792538170700CF4451 /* AcpiTableDxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = AcpiTableDxe.inf; sourceTree = ""; }; + A581447A2538170700CF4451 /* AcpiSdt.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AcpiSdt.h; sourceTree = ""; }; + A581447B2538170700CF4451 /* Aml.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Aml.c; sourceTree = ""; }; + A581447C2538170700CF4451 /* AcpiTable.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AcpiTable.h; sourceTree = ""; }; + A581447E2538170700CF4451 /* AcpiS3ContextSave.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = AcpiS3ContextSave.c; sourceTree = ""; }; + A581447F2538170700CF4451 /* S3SaveStateDxeExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = S3SaveStateDxeExtra.uni; sourceTree = ""; }; + A58144802538170700CF4451 /* S3SaveState.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = S3SaveState.c; sourceTree = ""; }; + A58144812538170700CF4451 /* S3SaveStateDxe.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = S3SaveStateDxe.uni; sourceTree = ""; }; + A58144822538170700CF4451 /* S3SaveStateDxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = S3SaveStateDxe.inf; sourceTree = ""; }; + A58144832538170700CF4451 /* InternalS3SaveState.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = InternalS3SaveState.h; sourceTree = ""; }; + A58144852538170700CF4451 /* BootGraphicsResourceTableDxeExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = BootGraphicsResourceTableDxeExtra.uni; sourceTree = ""; }; + A58144862538170700CF4451 /* BootGraphicsResourceTableDxe.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = BootGraphicsResourceTableDxe.c; sourceTree = ""; }; + A58144872538170700CF4451 /* BootGraphicsResourceTableDxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = BootGraphicsResourceTableDxe.inf; sourceTree = ""; }; + A58144882538170700CF4451 /* BootGraphicsResourceTableDxe.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = BootGraphicsResourceTableDxe.uni; sourceTree = ""; }; + A581448A2538170700CF4451 /* FirmwarePerformanceSmm.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = FirmwarePerformanceSmm.uni; sourceTree = ""; }; + A581448B2538170700CF4451 /* FirmwarePerformanceSmm.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = FirmwarePerformanceSmm.inf; sourceTree = ""; }; + A581448C2538170700CF4451 /* FirmwarePerformanceSmmExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = FirmwarePerformanceSmmExtra.uni; sourceTree = ""; }; + A581448D2538170700CF4451 /* FirmwarePerformanceSmm.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = FirmwarePerformanceSmm.c; sourceTree = ""; }; + A581448F2538170700CF4451 /* FirmwarePerformancePei.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = FirmwarePerformancePei.c; sourceTree = ""; }; + A58144902538170700CF4451 /* FirmwarePerformancePeiExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = FirmwarePerformancePeiExtra.uni; sourceTree = ""; }; + A58144912538170700CF4451 /* FirmwarePerformancePei.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = FirmwarePerformancePei.inf; sourceTree = ""; }; + A58144922538170700CF4451 /* FirmwarePerformancePei.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = FirmwarePerformancePei.uni; sourceTree = ""; }; + A58144942538170700CF4451 /* AcpiPlatform.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = AcpiPlatform.c; sourceTree = ""; }; + A58144952538170700CF4451 /* AcpiPlatformDxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = AcpiPlatformDxe.inf; sourceTree = ""; }; + A58144962538170700CF4451 /* AcpiPlatformExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = AcpiPlatformExtra.uni; sourceTree = ""; }; + A58144972538170700CF4451 /* AcpiPlatform.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = AcpiPlatform.uni; sourceTree = ""; }; + A58144992538170700CF4451 /* BootScriptExecutorDxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = BootScriptExecutorDxe.inf; sourceTree = ""; }; + A581449A2538170700CF4451 /* BootScriptExecutorDxe.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = BootScriptExecutorDxe.uni; sourceTree = ""; }; + A581449C2538170700CF4451 /* S3Asm.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = S3Asm.nasm; sourceTree = ""; }; + A581449D2538170700CF4451 /* SetIdtEntry.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SetIdtEntry.c; sourceTree = ""; }; + A581449E2538170700CF4451 /* ScriptExecute.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ScriptExecute.h; sourceTree = ""; }; + A581449F2538170700CF4451 /* BootScriptExecutorDxeExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = BootScriptExecutorDxeExtra.uni; sourceTree = ""; }; + A58144A12538170700CF4451 /* S3Asm.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = S3Asm.nasm; sourceTree = ""; }; + A58144A22538170700CF4451 /* SetIdtEntry.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SetIdtEntry.c; sourceTree = ""; }; + A58144A32538170700CF4451 /* ScriptExecute.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ScriptExecute.c; sourceTree = ""; }; + A58144A52538170700CF4451 /* SmmS3SaveStateExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = SmmS3SaveStateExtra.uni; sourceTree = ""; }; + A58144A62538170700CF4451 /* SmmS3SaveState.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = SmmS3SaveState.inf; sourceTree = ""; }; + A58144A72538170700CF4451 /* SmmS3SaveState.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = SmmS3SaveState.uni; sourceTree = ""; }; + A58144A82538170700CF4451 /* InternalSmmSaveState.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = InternalSmmSaveState.h; sourceTree = ""; }; + A58144A92538170700CF4451 /* SmmS3SaveState.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SmmS3SaveState.c; sourceTree = ""; }; + A58144AB2538170700CF4451 /* FirmwarePerformanceDxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = FirmwarePerformanceDxe.inf; sourceTree = ""; }; + A58144AC2538170700CF4451 /* FirmwarePerformanceDxe.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = FirmwarePerformanceDxe.uni; sourceTree = ""; }; + A58144AD2538170700CF4451 /* FirmwarePerformanceDxeExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = FirmwarePerformanceDxeExtra.uni; sourceTree = ""; }; + A58144AE2538170700CF4451 /* FirmwarePerformanceDxe.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = FirmwarePerformanceDxe.c; sourceTree = ""; }; + A58144B02538170700CF4451 /* EbcDxe.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = EbcDxe.uni; sourceTree = ""; }; + A58144B12538170700CF4451 /* EbcInt.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = EbcInt.h; sourceTree = ""; }; + A58144B22538170700CF4451 /* EbcExecute.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = EbcExecute.h; sourceTree = ""; }; + A58144B32538170700CF4451 /* EbcDxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = EbcDxe.inf; sourceTree = ""; }; + A58144B52538170700CF4451 /* EbcSupport.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = EbcSupport.c; sourceTree = ""; }; + A58144B62538170700CF4451 /* EbcLowLevel.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = EbcLowLevel.nasm; sourceTree = ""; }; + A58144B72538170700CF4451 /* EbcDebugger.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = EbcDebugger.inf; sourceTree = ""; }; + A58144B82538170700CF4451 /* EbcDebuggerHook.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = EbcDebuggerHook.c; sourceTree = ""; }; + A58144BA2538170700CF4451 /* EdbCommand.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = EdbCommand.h; sourceTree = ""; }; + A58144BB2538170700CF4451 /* EdbDisasm.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = EdbDisasm.h; sourceTree = ""; }; + A58144BC2538170700CF4451 /* EdbDisasmSupport.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = EdbDisasmSupport.c; sourceTree = ""; }; + A58144BD2538170700CF4451 /* EdbSymbol.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = EdbSymbol.c; sourceTree = ""; }; + A58144BE2538170700CF4451 /* EdbSupport.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = EdbSupport.h; sourceTree = ""; }; + A58144BF2538170700CF4451 /* EdbCommon.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = EdbCommon.h; sourceTree = ""; }; + A58144C02538170700CF4451 /* EdbHook.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = EdbHook.c; sourceTree = ""; }; + A58144C12538170700CF4451 /* EdbSupportUI.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = EdbSupportUI.c; sourceTree = ""; }; + A58144C22538170700CF4451 /* EdbSupportString.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = EdbSupportString.c; sourceTree = ""; }; + A58144C32538170700CF4451 /* EdbCmdExtIo.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = EdbCmdExtIo.c; sourceTree = ""; }; + A58144C42538170700CF4451 /* Edb.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Edb.c; sourceTree = ""; }; + A58144C52538170700CF4451 /* EdbCmdMemory.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = EdbCmdMemory.c; sourceTree = ""; }; + A58144C62538170700CF4451 /* EbcDebuggerConfig.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = EbcDebuggerConfig.c; sourceTree = ""; }; + A58144C72538170700CF4451 /* EdbDisasmSupport.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = EdbDisasmSupport.h; sourceTree = ""; }; + A58144C82538170700CF4451 /* EdbSymbol.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = EdbSymbol.h; sourceTree = ""; }; + A58144C92538170700CF4451 /* EdbSupportFile.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = EdbSupportFile.c; sourceTree = ""; }; + A58144CA2538170700CF4451 /* EdbCommand.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = EdbCommand.c; sourceTree = ""; }; + A58144CB2538170700CF4451 /* EdbCmdStep.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = EdbCmdStep.c; sourceTree = ""; }; + A58144CC2538170700CF4451 /* EdbDisasm.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = EdbDisasm.c; sourceTree = ""; }; + A58144CD2538170700CF4451 /* EdbCmdRegister.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = EdbCmdRegister.c; sourceTree = ""; }; + A58144CE2538170700CF4451 /* EdbHook.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = EdbHook.h; sourceTree = ""; }; + A58144CF2538170700CF4451 /* EdbCmdGo.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = EdbCmdGo.c; sourceTree = ""; }; + A58144D02538170700CF4451 /* EdbCmdScope.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = EdbCmdScope.c; sourceTree = ""; }; + A58144D12538170700CF4451 /* EdbCmdQuit.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = EdbCmdQuit.c; sourceTree = ""; }; + A58144D22538170700CF4451 /* EdbCmdHelp.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = EdbCmdHelp.c; sourceTree = ""; }; + A58144D32538170700CF4451 /* EdbCmdExtPci.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = EdbCmdExtPci.c; sourceTree = ""; }; + A58144D42538170700CF4451 /* EdbCmdBranch.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = EdbCmdBranch.c; sourceTree = ""; }; + A58144D52538170700CF4451 /* Edb.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Edb.h; sourceTree = ""; }; + A58144D62538170700CF4451 /* EdbCmdBreak.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = EdbCmdBreak.c; sourceTree = ""; }; + A58144D72538170700CF4451 /* EdbCmdSymbol.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = EdbCmdSymbol.c; sourceTree = ""; }; + A58144D82538170700CF4451 /* EdbCmdBreakpoint.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = EdbCmdBreakpoint.c; sourceTree = ""; }; + A58144D92538170700CF4451 /* EbcDebugger.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = EbcDebugger.uni; sourceTree = ""; }; + A58144DA2538170700CF4451 /* EbcDebuggerConfig.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = EbcDebuggerConfig.uni; sourceTree = ""; }; + A58144DC2538170700CF4451 /* EbcSupport.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = EbcSupport.c; sourceTree = ""; }; + A58144DD2538170700CF4451 /* EbcLowLevel.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = EbcLowLevel.nasm; sourceTree = ""; }; + A58144DE2538170700CF4451 /* EbcInt.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = EbcInt.c; sourceTree = ""; }; + A58144DF2538170700CF4451 /* EbcDebuggerConfig.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = EbcDebuggerConfig.inf; sourceTree = ""; }; + A58144E02538170700CF4451 /* EbcExecute.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = EbcExecute.c; sourceTree = ""; }; + A58144E12538170700CF4451 /* EbcDebuggerHook.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = EbcDebuggerHook.h; sourceTree = ""; }; + A58144E32538170700CF4451 /* EbcSupport.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = EbcSupport.c; sourceTree = ""; }; + A58144E42538170700CF4451 /* EbcLowLevel.S */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm; path = EbcLowLevel.S; sourceTree = ""; }; + A58144E52538170700CF4451 /* EbcDebuggerConfigExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = EbcDebuggerConfigExtra.uni; sourceTree = ""; }; + A58144E62538170700CF4451 /* EbcDxeExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = EbcDxeExtra.uni; sourceTree = ""; }; + A58144E72538170700CF4451 /* EbcDebuggerExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = EbcDebuggerExtra.uni; sourceTree = ""; }; + A58144E92538170700CF4451 /* EsrtDxe.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = EsrtDxe.c; sourceTree = ""; }; + A58144EA2538170700CF4451 /* EsrtImpl.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = EsrtImpl.c; sourceTree = ""; }; + A58144EB2538170700CF4451 /* EsrtDxe.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = EsrtDxe.uni; sourceTree = ""; }; + A58144EC2538170700CF4451 /* EsrtImpl.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = EsrtImpl.h; sourceTree = ""; }; + A58144ED2538170700CF4451 /* EsrtDxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = EsrtDxe.inf; sourceTree = ""; }; + A58144EE2538170700CF4451 /* EsrtDxeExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = EsrtDxeExtra.uni; sourceTree = ""; }; + A58144F02538170700CF4451 /* SmbiosDxe.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SmbiosDxe.h; sourceTree = ""; }; + A58144F12538170700CF4451 /* SmbiosDxe.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SmbiosDxe.c; sourceTree = ""; }; + A58144F22538170700CF4451 /* SmbiosDxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = SmbiosDxe.inf; sourceTree = ""; }; + A58144F32538170700CF4451 /* SmbiosDxe.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = SmbiosDxe.uni; sourceTree = ""; }; + A58144F42538170700CF4451 /* SmbiosDxeExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = SmbiosDxeExtra.uni; sourceTree = ""; }; + A58144F62538170700CF4451 /* SectionExtractionDxe.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = SectionExtractionDxe.uni; sourceTree = ""; }; + A58144F72538170700CF4451 /* SectionExtractionDxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = SectionExtractionDxe.inf; sourceTree = ""; }; + A58144F82538170700CF4451 /* SectionExtractionDxe.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SectionExtractionDxe.c; sourceTree = ""; }; + A58144F92538170700CF4451 /* SectionExtractionDxeExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = SectionExtractionDxeExtra.uni; sourceTree = ""; }; + A58144FB2538170700CF4451 /* RegularExpressionDxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = RegularExpressionDxe.inf; sourceTree = ""; }; + A58144FC2538170700CF4451 /* RegularExpressionDxe.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = RegularExpressionDxe.h; sourceTree = ""; }; + A58144FE2538170700CF4451 /* unicode_property_data_posix.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = unicode_property_data_posix.c; sourceTree = ""; }; + A58144FF2538170700CF4451 /* unicode.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = unicode.c; sourceTree = ""; }; + A58145002538170700CF4451 /* st.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = st.h; sourceTree = ""; }; + A58145012538170700CF4451 /* ascii.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ascii.c; sourceTree = ""; }; + A58145022538170700CF4451 /* unicode_fold2_key.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = unicode_fold2_key.c; sourceTree = ""; }; + A58145032538170700CF4451 /* regparse.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = regparse.h; sourceTree = ""; }; + A58145042538170700CF4451 /* AUTHORS */ = {isa = PBXFileReference; lastKnownFileType = text; path = AUTHORS; sourceTree = ""; }; + A58145052538170700CF4451 /* unicode_fold3_key.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = unicode_fold3_key.c; sourceTree = ""; }; + A58145062538170700CF4451 /* regposix.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = regposix.c; sourceTree = ""; }; + A58145072538170700CF4451 /* unicode_fold1_key.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = unicode_fold1_key.c; sourceTree = ""; }; + A58145082538170700CF4451 /* unicode_wb_data.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = unicode_wb_data.c; sourceTree = ""; }; + A58145092538170700CF4451 /* regexec.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = regexec.c; sourceTree = ""; }; + A581450A2538170700CF4451 /* regint.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = regint.h; sourceTree = ""; }; + A581450B2538170700CF4451 /* regenc.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = regenc.h; sourceTree = ""; }; + A581450C2538170700CF4451 /* regcomp.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = regcomp.c; sourceTree = ""; }; + A581450D2538170700CF4451 /* unicode_egcb_data.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = unicode_egcb_data.c; sourceTree = ""; }; + A581450E2538170700CF4451 /* regtrav.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = regtrav.c; sourceTree = ""; }; + A581450F2538170700CF4451 /* regsyntax.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = regsyntax.c; sourceTree = ""; }; + A58145102538170700CF4451 /* OnigurumaIntrinsics.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = OnigurumaIntrinsics.c; sourceTree = ""; }; + A58145112538170700CF4451 /* regversion.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = regversion.c; sourceTree = ""; }; + A58145122538170700CF4451 /* OnigurumaUefiPort.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = OnigurumaUefiPort.c; sourceTree = ""; }; + A58145132538170700CF4451 /* unicode_property_data.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = unicode_property_data.c; sourceTree = ""; }; + A58145142538170700CF4451 /* README */ = {isa = PBXFileReference; lastKnownFileType = text; path = README; sourceTree = ""; }; + A58145152538170700CF4451 /* st.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = st.c; sourceTree = ""; }; + A58145162538170700CF4451 /* oniggnu.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = oniggnu.h; sourceTree = ""; }; + A58145172538170700CF4451 /* onigposix.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = onigposix.h; sourceTree = ""; }; + A58145182538170700CF4451 /* COPYING */ = {isa = PBXFileReference; lastKnownFileType = text; path = COPYING; sourceTree = ""; }; + A58145192538170700CF4451 /* utf16_le.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = utf16_le.c; sourceTree = ""; }; + A581451A2538170700CF4451 /* oniguruma.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = oniguruma.h; sourceTree = ""; }; + A581451B2538170700CF4451 /* regposerr.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = regposerr.c; sourceTree = ""; }; + A581451C2538170700CF4451 /* regparse.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = regparse.c; sourceTree = ""; }; + A581451D2538170700CF4451 /* onig_init.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = onig_init.c; sourceTree = ""; }; + A581451E2538170700CF4451 /* regenc.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = regenc.c; sourceTree = ""; }; + A581451F2538170700CF4451 /* regerror.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = regerror.c; sourceTree = ""; }; + A58145202538170700CF4451 /* OnigurumaUefiPort.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = OnigurumaUefiPort.h; sourceTree = ""; }; + A58145212538170700CF4451 /* unicode_unfold_key.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = unicode_unfold_key.c; sourceTree = ""; }; + A58145222538170700CF4451 /* reggnu.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = reggnu.c; sourceTree = ""; }; + A58145232538170700CF4451 /* unicode_fold_data.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = unicode_fold_data.c; sourceTree = ""; }; + A58145242538170700CF4451 /* RegularExpressionDxe.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = RegularExpressionDxe.c; sourceTree = ""; }; + A58145272538170700CF4451 /* Measurement.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Measurement.c; sourceTree = ""; }; + A58145282538170700CF4451 /* SpeculationBarrierDxe.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SpeculationBarrierDxe.c; sourceTree = ""; }; + A58145292538170700CF4451 /* VariableStandaloneMm.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = VariableStandaloneMm.inf; sourceTree = ""; }; + A581452A2538170700CF4451 /* VariableSmm.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = VariableSmm.uni; sourceTree = ""; }; + A581452B2538170700CF4451 /* VariableSmmRuntimeDxeExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = VariableSmmRuntimeDxeExtra.uni; sourceTree = ""; }; + A581452C2538170700CF4451 /* SpeculationBarrierSmm.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SpeculationBarrierSmm.c; sourceTree = ""; }; + A581452D2538170700CF4451 /* VariableSmm.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = VariableSmm.inf; sourceTree = ""; }; + A581452E2538170700CF4451 /* VariableTraditionalMm.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = VariableTraditionalMm.c; sourceTree = ""; }; + A581452F2538170700CF4451 /* PrivilegePolymorphic.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PrivilegePolymorphic.h; sourceTree = ""; }; + A58145302538170700CF4451 /* VariableExLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = VariableExLib.c; sourceTree = ""; }; + A58145312538170700CF4451 /* Variable.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Variable.h; sourceTree = ""; }; + A58145322538170700CF4451 /* VariableSmmRuntimeDxe.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = VariableSmmRuntimeDxe.c; sourceTree = ""; }; + A58145332538170700CF4451 /* VariableSmmRuntimeDxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = VariableSmmRuntimeDxe.inf; sourceTree = ""; }; + A58145342538170700CF4451 /* VariableStandaloneMm.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = VariableStandaloneMm.c; sourceTree = ""; }; + A58145352538170700CF4451 /* VariableSmmExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = VariableSmmExtra.uni; sourceTree = ""; }; + A58145362538170700CF4451 /* VariableSmm.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = VariableSmm.c; sourceTree = ""; }; + A58145372538170700CF4451 /* TcgMorLockSmm.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = TcgMorLockSmm.c; sourceTree = ""; }; + A58145382538170700CF4451 /* Reclaim.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Reclaim.c; sourceTree = ""; }; + A58145392538170700CF4451 /* VariableDxe.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = VariableDxe.c; sourceTree = ""; }; + A581453A2538170700CF4451 /* VariableSmmRuntimeDxe.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = VariableSmmRuntimeDxe.uni; sourceTree = ""; }; + A581453B2538170700CF4451 /* TcgMorLockDxe.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = TcgMorLockDxe.c; sourceTree = ""; }; + A581453C2538170700CF4451 /* VarCheck.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = VarCheck.c; sourceTree = ""; }; + A581453D2538170700CF4451 /* VariableRuntimeDxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = VariableRuntimeDxe.inf; sourceTree = ""; }; + A581453E2538170700CF4451 /* VariableRuntimeDxeExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = VariableRuntimeDxeExtra.uni; sourceTree = ""; }; + A581453F2538170700CF4451 /* VariableRuntimeDxe.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = VariableRuntimeDxe.uni; sourceTree = ""; }; + A58145402538170700CF4451 /* Variable.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Variable.c; sourceTree = ""; }; + A58145422538170700CF4451 /* PeiVariableExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = PeiVariableExtra.uni; sourceTree = ""; }; + A58145432538170700CF4451 /* PeiVariable.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = PeiVariable.uni; sourceTree = ""; }; + A58145442538170700CF4451 /* Variable.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Variable.h; sourceTree = ""; }; + A58145452538170700CF4451 /* VariablePei.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = VariablePei.inf; sourceTree = ""; }; + A58145462538170700CF4451 /* Variable.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Variable.c; sourceTree = ""; }; + A58145482538170700CF4451 /* InputHandler.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = InputHandler.c; sourceTree = ""; }; + A58145492538170700CF4451 /* FormDisplay.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = FormDisplay.c; sourceTree = ""; }; + A581454A2538170700CF4451 /* DisplayEngine.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = DisplayEngine.uni; sourceTree = ""; }; + A581454B2538170700CF4451 /* FormDisplayStr.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = FormDisplayStr.uni; sourceTree = ""; }; + A581454C2538170700CF4451 /* FormDisplay.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = FormDisplay.h; sourceTree = ""; }; + A581454D2538170700CF4451 /* Popup.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Popup.c; sourceTree = ""; }; + A581454E2538170700CF4451 /* ProcessOptions.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ProcessOptions.c; sourceTree = ""; }; + A581454F2538170700CF4451 /* DisplayEngineDxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = DisplayEngineDxe.inf; sourceTree = ""; }; + A58145502538170700CF4451 /* DisplayEngineExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = DisplayEngineExtra.uni; sourceTree = ""; }; + A58145522538170700CF4451 /* CapsuleOnDiskLoadPeiExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = CapsuleOnDiskLoadPeiExtra.uni; sourceTree = ""; }; + A58145532538170700CF4451 /* CapsuleOnDiskLoadPei.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = CapsuleOnDiskLoadPei.c; sourceTree = ""; }; + A58145542538170700CF4451 /* CapsuleOnDiskLoadPei.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = CapsuleOnDiskLoadPei.inf; sourceTree = ""; }; + A58145552538170700CF4451 /* CapsuleOnDiskLoadPei.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = CapsuleOnDiskLoadPei.uni; sourceTree = ""; }; + A58145572538170700CF4451 /* DriverHealthManagerDxeExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = DriverHealthManagerDxeExtra.uni; sourceTree = ""; }; + A58145582538170700CF4451 /* DriverHealthManagerDxe.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DriverHealthManagerDxe.h; sourceTree = ""; }; + A58145592538170700CF4451 /* DriverHealthManagerVfr.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DriverHealthManagerVfr.h; sourceTree = ""; }; + A581455A2538170700CF4451 /* DriverHealthManagerStrings.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = DriverHealthManagerStrings.uni; sourceTree = ""; }; + A581455B2538170700CF4451 /* DriverHealthManagerVfr.Vfr */ = {isa = PBXFileReference; lastKnownFileType = text; path = DriverHealthManagerVfr.Vfr; sourceTree = ""; }; + A581455C2538170700CF4451 /* DriverHealthManagerDxe.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = DriverHealthManagerDxe.uni; sourceTree = ""; }; + A581455D2538170700CF4451 /* DriverHealthConfigureVfr.Vfr */ = {isa = PBXFileReference; lastKnownFileType = text; path = DriverHealthConfigureVfr.Vfr; sourceTree = ""; }; + A581455E2538170700CF4451 /* DriverHealthManagerDxe.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DriverHealthManagerDxe.c; sourceTree = ""; }; + A581455F2538170700CF4451 /* DriverHealthManagerDxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = DriverHealthManagerDxe.inf; sourceTree = ""; }; + A58145612538170700CF4451 /* MonotonicCounterRuntimeDxeExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = MonotonicCounterRuntimeDxeExtra.uni; sourceTree = ""; }; + A58145622538170700CF4451 /* MonotonicCounterRuntimeDxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = MonotonicCounterRuntimeDxe.inf; sourceTree = ""; }; + A58145632538170700CF4451 /* MonotonicCounter.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = MonotonicCounter.c; sourceTree = ""; }; + A58145642538170700CF4451 /* MonotonicCounterRuntimeDxe.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = MonotonicCounterRuntimeDxe.uni; sourceTree = ""; }; + A58145662538170700CF4451 /* LegacyRegion2Dxe.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = LegacyRegion2Dxe.uni; sourceTree = ""; }; + A58145672538170700CF4451 /* LegacyRegion2.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = LegacyRegion2.c; sourceTree = ""; }; + A58145682538170700CF4451 /* LegacyRegion2Dxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = LegacyRegion2Dxe.inf; sourceTree = ""; }; + A58145692538170700CF4451 /* LegacyRegion2.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = LegacyRegion2.h; sourceTree = ""; }; + A581456A2538170700CF4451 /* LegacyRegion2DxeExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = LegacyRegion2DxeExtra.uni; sourceTree = ""; }; + A581456C2538170700CF4451 /* WatchdogTimer.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = WatchdogTimer.inf; sourceTree = ""; }; + A581456D2538170700CF4451 /* WatchdogTimer.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = WatchdogTimer.uni; sourceTree = ""; }; + A581456E2538170700CF4451 /* WatchdogTimer.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = WatchdogTimer.c; sourceTree = ""; }; + A581456F2538170700CF4451 /* WatchdogTimerExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = WatchdogTimerExtra.uni; sourceTree = ""; }; + A58145702538170700CF4451 /* WatchdogTimer.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = WatchdogTimer.h; sourceTree = ""; }; + A58145722538170700CF4451 /* FaultTolerantWriteSmmDxeExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = FaultTolerantWriteSmmDxeExtra.uni; sourceTree = ""; }; + A58145732538170700CF4451 /* FaultTolerantWriteSmmCommon.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = FaultTolerantWriteSmmCommon.h; sourceTree = ""; }; + A58145742538170700CF4451 /* FaultTolerantWriteSmmDxe.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = FaultTolerantWriteSmmDxe.h; sourceTree = ""; }; + A58145752538170700CF4451 /* FaultTolerantWriteStandaloneMm.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = FaultTolerantWriteStandaloneMm.inf; sourceTree = ""; }; + A58145762538170700CF4451 /* SmmFaultTolerantWriteDxeExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = SmmFaultTolerantWriteDxeExtra.uni; sourceTree = ""; }; + A58145772538170700CF4451 /* FaultTolerantWrite.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = FaultTolerantWrite.c; sourceTree = ""; }; + A58145782538170700CF4451 /* FaultTolerantWriteDxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = FaultTolerantWriteDxe.inf; sourceTree = ""; }; + A58145792538170700CF4451 /* FaultTolerantWriteStandaloneMm.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = FaultTolerantWriteStandaloneMm.c; sourceTree = ""; }; + A581457A2538170700CF4451 /* FaultTolerantWriteSmmDxe.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = FaultTolerantWriteSmmDxe.c; sourceTree = ""; }; + A581457B2538170700CF4451 /* FaultTolerantWriteDxeExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = FaultTolerantWriteDxeExtra.uni; sourceTree = ""; }; + A581457C2538170700CF4451 /* FaultTolerantWriteDxe.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = FaultTolerantWriteDxe.uni; sourceTree = ""; }; + A581457D2538170700CF4451 /* FaultTolerantWriteSmm.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = FaultTolerantWriteSmm.inf; sourceTree = ""; }; + A581457E2538170700CF4451 /* FaultTolerantWriteTraditionalMm.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = FaultTolerantWriteTraditionalMm.c; sourceTree = ""; }; + A581457F2538170700CF4451 /* FaultTolerantWriteDxe.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = FaultTolerantWriteDxe.c; sourceTree = ""; }; + A58145802538170700CF4451 /* FaultTolerantWriteSmmDxe.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = FaultTolerantWriteSmmDxe.uni; sourceTree = ""; }; + A58145812538170700CF4451 /* FaultTolerantWriteSmm.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = FaultTolerantWriteSmm.c; sourceTree = ""; }; + A58145822538170700CF4451 /* FtwMisc.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = FtwMisc.c; sourceTree = ""; }; + A58145832538170700CF4451 /* SmmFaultTolerantWriteDxe.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = SmmFaultTolerantWriteDxe.uni; sourceTree = ""; }; + A58145842538170700CF4451 /* UpdateWorkingBlock.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = UpdateWorkingBlock.c; sourceTree = ""; }; + A58145852538170700CF4451 /* FaultTolerantWriteSmmDxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = FaultTolerantWriteSmmDxe.inf; sourceTree = ""; }; + A58145862538170700CF4451 /* FaultTolerantWrite.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = FaultTolerantWrite.h; sourceTree = ""; }; + A58145882538170700CF4451 /* DevicePath.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DevicePath.c; sourceTree = ""; }; + A58145892538170700CF4451 /* DevicePathDxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = DevicePathDxe.inf; sourceTree = ""; }; + A581458A2538170700CF4451 /* DevicePathDxeExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = DevicePathDxeExtra.uni; sourceTree = ""; }; + A581458B2538170700CF4451 /* DevicePathDxe.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = DevicePathDxe.uni; sourceTree = ""; }; + A581458D2538170700CF4451 /* NVDataStruc.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = NVDataStruc.h; sourceTree = ""; }; + A581458E2538170700CF4451 /* DriverSample.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DriverSample.c; sourceTree = ""; }; + A581458F2538170700CF4451 /* DriverSampleDxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = DriverSampleDxe.inf; sourceTree = ""; }; + A58145902538170700CF4451 /* Inventory.vfr */ = {isa = PBXFileReference; lastKnownFileType = text; path = Inventory.vfr; sourceTree = ""; }; + A58145912538170700CF4451 /* Vfr.vfr */ = {isa = PBXFileReference; lastKnownFileType = text; path = Vfr.vfr; sourceTree = ""; }; + A58145922538170700CF4451 /* DriverSample.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = DriverSample.uni; sourceTree = ""; }; + A58145932538170700CF4451 /* InventoryStrings.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = InventoryStrings.uni; sourceTree = ""; }; + A58145942538170700CF4451 /* DriverSampleExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = DriverSampleExtra.uni; sourceTree = ""; }; + A58145952538170700CF4451 /* DriverSample.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DriverSample.h; sourceTree = ""; }; + A58145962538170700CF4451 /* VfrStrings.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = VfrStrings.uni; sourceTree = ""; }; + A58145982538170700CF4451 /* SmbiosMeasurementDxeExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = SmbiosMeasurementDxeExtra.uni; sourceTree = ""; }; + A58145992538170700CF4451 /* SmbiosMeasurementDxe.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SmbiosMeasurementDxe.c; sourceTree = ""; }; + A581459A2538170700CF4451 /* SmbiosMeasurementDxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = SmbiosMeasurementDxe.inf; sourceTree = ""; }; + A581459B2538170700CF4451 /* SmbiosMeasurementDxe.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = SmbiosMeasurementDxe.uni; sourceTree = ""; }; + A581459D2538170700CF4451 /* HiiResourcesSample.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = HiiResourcesSample.c; sourceTree = ""; }; + A581459E2538170700CF4451 /* HiiResourcesSample.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = HiiResourcesSample.uni; sourceTree = ""; }; + A581459F2538170700CF4451 /* HiiResourcesSampleDxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = HiiResourcesSampleDxe.inf; sourceTree = ""; }; + A58145A02538170700CF4451 /* HiiResourcesSampleExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = HiiResourcesSampleExtra.uni; sourceTree = ""; }; + A58145A12538170700CF4451 /* SampleStrings.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = SampleStrings.uni; sourceTree = ""; }; + A58145A22538170700CF4451 /* Sample.vfr */ = {isa = PBXFileReference; lastKnownFileType = text; path = Sample.vfr; sourceTree = ""; }; + A58145A42538170700CF4451 /* InternalPlatDriOverrideDxe.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = InternalPlatDriOverrideDxe.h; sourceTree = ""; }; + A58145A52538170700CF4451 /* Vfr.vfr */ = {isa = PBXFileReference; lastKnownFileType = text; path = Vfr.vfr; sourceTree = ""; }; + A58145A62538170700CF4451 /* PlatOverMngr.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PlatOverMngr.h; sourceTree = ""; }; + A58145A72538170700CF4451 /* PlatformDriOverrideDxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = PlatformDriOverrideDxe.inf; sourceTree = ""; }; + A58145A82538170700CF4451 /* PlatDriOverrideLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PlatDriOverrideLib.c; sourceTree = ""; }; + A58145A92538170700CF4451 /* PlatDriOverrideDxe.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = PlatDriOverrideDxe.uni; sourceTree = ""; }; + A58145AA2538170700CF4451 /* PlatDriOverrideDxeExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = PlatDriOverrideDxeExtra.uni; sourceTree = ""; }; + A58145AB2538170700CF4451 /* PlatDriOverrideDxe.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PlatDriOverrideDxe.c; sourceTree = ""; }; + A58145AC2538170700CF4451 /* VfrStrings.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = VfrStrings.uni; sourceTree = ""; }; + A58145AE2538170700CF4451 /* LoadFileOnFv2.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = LoadFileOnFv2.c; sourceTree = ""; }; + A58145AF2538170700CF4451 /* LoadFileOnFv2.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = LoadFileOnFv2.inf; sourceTree = ""; }; + A58145B02538170700CF4451 /* LoadFileOnFv2.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = LoadFileOnFv2.uni; sourceTree = ""; }; + A58145B12538170700CF4451 /* LoadFileOnFv2Extra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = LoadFileOnFv2Extra.uni; sourceTree = ""; }; + A58145B32538170700CF4451 /* BootManagerPolicyDxe.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = BootManagerPolicyDxe.uni; sourceTree = ""; }; + A58145B42538170700CF4451 /* BootManagerPolicyDxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = BootManagerPolicyDxe.inf; sourceTree = ""; }; + A58145B52538170700CF4451 /* BootManagerPolicyDxeExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = BootManagerPolicyDxeExtra.uni; sourceTree = ""; }; + A58145B62538170700CF4451 /* BootManagerPolicyDxe.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = BootManagerPolicyDxe.c; sourceTree = ""; }; + A58145B92538170700CF4451 /* Pcd.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Pcd.c; sourceTree = ""; }; + A58145BA2538170700CF4451 /* PcdDxeExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = PcdDxeExtra.uni; sourceTree = ""; }; + A58145BB2538170700CF4451 /* Service.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Service.h; sourceTree = ""; }; + A58145BC2538170700CF4451 /* Pcd.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = Pcd.inf; sourceTree = ""; }; + A58145BD2538170700CF4451 /* Service.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Service.c; sourceTree = ""; }; + A58145BE2538170700CF4451 /* PcdDxe.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = PcdDxe.uni; sourceTree = ""; }; + A58145C02538170700CF4451 /* Pcd.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Pcd.c; sourceTree = ""; }; + A58145C12538170700CF4451 /* Service.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Service.h; sourceTree = ""; }; + A58145C22538170700CF4451 /* Pcd.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = Pcd.inf; sourceTree = ""; }; + A58145C32538170700CF4451 /* PcdPeim.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = PcdPeim.uni; sourceTree = ""; }; + A58145C42538170700CF4451 /* PcdPeimExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = PcdPeimExtra.uni; sourceTree = ""; }; + A58145C52538170700CF4451 /* Service.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Service.c; sourceTree = ""; }; + A58145C72538170700CF4451 /* SectionExtractionPei.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SectionExtractionPei.c; sourceTree = ""; }; + A58145C82538170700CF4451 /* SectionExtractionPeiExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = SectionExtractionPeiExtra.uni; sourceTree = ""; }; + A58145C92538170700CF4451 /* SectionExtractionPei.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = SectionExtractionPei.uni; sourceTree = ""; }; + A58145CA2538170700CF4451 /* SectionExtractionPei.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = SectionExtractionPei.inf; sourceTree = ""; }; + A58145CD2538170700CF4451 /* StatusCodeHandlerRuntimeDxe.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = StatusCodeHandlerRuntimeDxe.c; sourceTree = ""; }; + A58145CE2538170700CF4451 /* MemoryStatusCodeWorker.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = MemoryStatusCodeWorker.c; sourceTree = ""; }; + A58145CF2538170700CF4451 /* StatusCodeHandlerRuntimeDxeExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = StatusCodeHandlerRuntimeDxeExtra.uni; sourceTree = ""; }; + A58145D02538170700CF4451 /* StatusCodeHandlerRuntimeDxe.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = StatusCodeHandlerRuntimeDxe.uni; sourceTree = ""; }; + A58145D12538170700CF4451 /* StatusCodeHandlerRuntimeDxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = StatusCodeHandlerRuntimeDxe.inf; sourceTree = ""; }; + A58145D22538170700CF4451 /* StatusCodeHandlerRuntimeDxe.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = StatusCodeHandlerRuntimeDxe.h; sourceTree = ""; }; + A58145D32538170700CF4451 /* SerialStatusCodeWorker.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SerialStatusCodeWorker.c; sourceTree = ""; }; + A58145D52538170700CF4451 /* StatusCodeHandlerPei.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = StatusCodeHandlerPei.uni; sourceTree = ""; }; + A58145D62538170700CF4451 /* StatusCodeHandlerPeiExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = StatusCodeHandlerPeiExtra.uni; sourceTree = ""; }; + A58145D72538170700CF4451 /* StatusCodeHandlerPei.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = StatusCodeHandlerPei.inf; sourceTree = ""; }; + A58145D82538170700CF4451 /* StatusCodeHandlerPei.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = StatusCodeHandlerPei.h; sourceTree = ""; }; + A58145D92538170700CF4451 /* MemoryStausCodeWorker.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = MemoryStausCodeWorker.c; sourceTree = ""; }; + A58145DA2538170700CF4451 /* SerialStatusCodeWorker.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SerialStatusCodeWorker.c; sourceTree = ""; }; + A58145DB2538170700CF4451 /* StatusCodeHandlerPei.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = StatusCodeHandlerPei.c; sourceTree = ""; }; + A58145DD2538170700CF4451 /* MemoryStatusCodeWorker.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = MemoryStatusCodeWorker.c; sourceTree = ""; }; + A58145DE2538170700CF4451 /* StatusCodeHandlerSmm.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = StatusCodeHandlerSmm.c; sourceTree = ""; }; + A58145DF2538170700CF4451 /* StatusCodeHandlerSmmExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = StatusCodeHandlerSmmExtra.uni; sourceTree = ""; }; + A58145E02538170700CF4451 /* StatusCodeHandlerSmm.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = StatusCodeHandlerSmm.inf; sourceTree = ""; }; + A58145E12538170700CF4451 /* SerialStatusCodeWorker.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SerialStatusCodeWorker.c; sourceTree = ""; }; + A58145E22538170700CF4451 /* StatusCodeHandlerSmm.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = StatusCodeHandlerSmm.h; sourceTree = ""; }; + A58145E32538170700CF4451 /* StatusCodeHandlerSmm.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = StatusCodeHandlerSmm.uni; sourceTree = ""; }; + A58145E52538170700CF4451 /* DebugServicePei.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DebugServicePei.c; sourceTree = ""; }; + A58145E62538170700CF4451 /* DebugService.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DebugService.h; sourceTree = ""; }; + A58145E72538170700CF4451 /* DebugServicePei.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = DebugServicePei.inf; sourceTree = ""; }; + A58145E82538170700CF4451 /* DebugServicePei.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = DebugServicePei.uni; sourceTree = ""; }; + A58145EA2538170700CF4451 /* TimestampDxe.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = TimestampDxe.c; sourceTree = ""; }; + A58145EB2538170700CF4451 /* TimestampDxe.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = TimestampDxe.uni; sourceTree = ""; }; + A58145EC2538170700CF4451 /* TimestampDxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = TimestampDxe.inf; sourceTree = ""; }; + A58145ED2538170700CF4451 /* TimestampDxeExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = TimestampDxeExtra.uni; sourceTree = ""; }; + A58145EF2538170700CF4451 /* ResetSystemPeiExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = ResetSystemPeiExtra.uni; sourceTree = ""; }; + A58145F02538170700CF4451 /* ResetSystem.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ResetSystem.h; sourceTree = ""; }; + A58145F12538170700CF4451 /* ResetSystemPei.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = ResetSystemPei.inf; sourceTree = ""; }; + A58145F22538170700CF4451 /* ResetSystem.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ResetSystem.c; sourceTree = ""; }; + A58145F32538170700CF4451 /* ResetSystemPei.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = ResetSystemPei.uni; sourceTree = ""; }; + A58145F52538170700CF4451 /* FvSimpleFileSystemEntryPoint.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = FvSimpleFileSystemEntryPoint.c; sourceTree = ""; }; + A58145F62538170700CF4451 /* FvSimpleFileSystem.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = FvSimpleFileSystem.c; sourceTree = ""; }; + A58145F72538170700CF4451 /* FvSimpleFileSystemDxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = FvSimpleFileSystemDxe.inf; sourceTree = ""; }; + A58145F82538170700CF4451 /* ComponentName.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ComponentName.c; sourceTree = ""; }; + A58145F92538170700CF4451 /* FvSimpleFileSystemInternal.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = FvSimpleFileSystemInternal.h; sourceTree = ""; }; + A58145FA2538170700CF4451 /* FvSimpleFileSystem.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = FvSimpleFileSystem.uni; sourceTree = ""; }; + A58145FB2538170700CF4451 /* FvSimpleFileSystemExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = FvSimpleFileSystemExtra.uni; sourceTree = ""; }; + A58145FD2538170700CF4451 /* Defer3rdPartyImageLoad.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Defer3rdPartyImageLoad.c; sourceTree = ""; }; + A58145FE2538170700CF4451 /* SecurityStubDxe.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = SecurityStubDxe.uni; sourceTree = ""; }; + A58145FF2538170700CF4451 /* SecurityStub.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SecurityStub.c; sourceTree = ""; }; + A58146002538170700CF4451 /* SecurityStubDxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = SecurityStubDxe.inf; sourceTree = ""; }; + A58146012538170700CF4451 /* SecurityStubDxeExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = SecurityStubDxeExtra.uni; sourceTree = ""; }; + A58146022538170700CF4451 /* Defer3rdPartyImageLoad.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Defer3rdPartyImageLoad.h; sourceTree = ""; }; + A58146052538170700CF4451 /* DiskIoDxe.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = DiskIoDxe.uni; sourceTree = ""; }; + A58146062538170700CF4451 /* DiskIo.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DiskIo.h; sourceTree = ""; }; + A58146072538170700CF4451 /* DiskIoDxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = DiskIoDxe.inf; sourceTree = ""; }; + A58146082538170700CF4451 /* ComponentName.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ComponentName.c; sourceTree = ""; }; + A58146092538170700CF4451 /* DiskIoDxeExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = DiskIoDxeExtra.uni; sourceTree = ""; }; + A581460A2538170700CF4451 /* DiskIo.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DiskIo.c; sourceTree = ""; }; + A581460C2538170700CF4451 /* CdExpressPei.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = CdExpressPei.inf; sourceTree = ""; }; + A581460D2538170700CF4451 /* PeiCdExpress.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PeiCdExpress.c; sourceTree = ""; }; + A581460E2538170700CF4451 /* CdExpressPei.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = CdExpressPei.uni; sourceTree = ""; }; + A581460F2538170700CF4451 /* PeiCdExpress.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PeiCdExpress.h; sourceTree = ""; }; + A58146102538170700CF4451 /* CdExpressPeiExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = CdExpressPeiExtra.uni; sourceTree = ""; }; + A58146122538170800CF4451 /* Partition.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Partition.c; sourceTree = ""; }; + A58146132538170800CF4451 /* Udf.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Udf.c; sourceTree = ""; }; + A58146142538170800CF4451 /* PartitionDxeExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = PartitionDxeExtra.uni; sourceTree = ""; }; + A58146152538170800CF4451 /* ComponentName.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ComponentName.c; sourceTree = ""; }; + A58146162538170800CF4451 /* ElTorito.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ElTorito.c; sourceTree = ""; }; + A58146172538170800CF4451 /* PartitionDxe.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = PartitionDxe.uni; sourceTree = ""; }; + A58146182538170800CF4451 /* Partition.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Partition.h; sourceTree = ""; }; + A58146192538170800CF4451 /* PartitionDxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = PartitionDxe.inf; sourceTree = ""; }; + A581461A2538170800CF4451 /* Mbr.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Mbr.c; sourceTree = ""; }; + A581461B2538170800CF4451 /* Gpt.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Gpt.c; sourceTree = ""; }; + A581461D2538170800CF4451 /* RamDiskImpl.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = RamDiskImpl.h; sourceTree = ""; }; + A581461E2538170800CF4451 /* RamDiskFileExplorer.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = RamDiskFileExplorer.c; sourceTree = ""; }; + A581461F2538170800CF4451 /* RamDiskNVData.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = RamDiskNVData.h; sourceTree = ""; }; + A58146202538170800CF4451 /* RamDiskHiiStrings.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = RamDiskHiiStrings.uni; sourceTree = ""; }; + A58146212538170800CF4451 /* RamDiskImpl.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = RamDiskImpl.c; sourceTree = ""; }; + A58146222538170800CF4451 /* RamDiskBlockIo.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = RamDiskBlockIo.c; sourceTree = ""; }; + A58146232538170800CF4451 /* RamDiskProtocol.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = RamDiskProtocol.c; sourceTree = ""; }; + A58146242538170800CF4451 /* RamDiskHii.vfr */ = {isa = PBXFileReference; lastKnownFileType = text; path = RamDiskHii.vfr; sourceTree = ""; }; + A58146252538170800CF4451 /* RamDisk.asl */ = {isa = PBXFileReference; lastKnownFileType = text; path = RamDisk.asl; sourceTree = ""; }; + A58146262538170800CF4451 /* RamDiskDxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = RamDiskDxe.inf; sourceTree = ""; }; + A58146272538170800CF4451 /* RamDiskDriver.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = RamDiskDriver.c; sourceTree = ""; }; + A58146282538170800CF4451 /* RamDiskDxe.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = RamDiskDxe.uni; sourceTree = ""; }; + A581462B2538170800CF4451 /* EnglishDxe.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = EnglishDxe.uni; sourceTree = ""; }; + A581462C2538170800CF4451 /* EnglishDxeExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = EnglishDxeExtra.uni; sourceTree = ""; }; + A581462D2538170800CF4451 /* UnicodeCollationEng.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = UnicodeCollationEng.c; sourceTree = ""; }; + A581462E2538170800CF4451 /* EnglishDxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = EnglishDxe.inf; sourceTree = ""; }; + A581462F2538170800CF4451 /* UnicodeCollationEng.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = UnicodeCollationEng.h; sourceTree = ""; }; + A58146312538170800CF4451 /* FileName.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = FileName.c; sourceTree = ""; }; + A58146322538170800CF4451 /* Udf.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Udf.c; sourceTree = ""; }; + A58146332538170800CF4451 /* FileSystemOperations.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = FileSystemOperations.c; sourceTree = ""; }; + A58146342538170800CF4451 /* ComponentName.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ComponentName.c; sourceTree = ""; }; + A58146352538170800CF4451 /* UdfDxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = UdfDxe.inf; sourceTree = ""; }; + A58146362538170800CF4451 /* Udf.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Udf.h; sourceTree = ""; }; + A58146372538170800CF4451 /* File.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = File.c; sourceTree = ""; }; + A581463A2538170800CF4451 /* LightMemoryTest.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = LightMemoryTest.c; sourceTree = ""; }; + A581463B2538170800CF4451 /* GenericMemoryTestDxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = GenericMemoryTestDxe.inf; sourceTree = ""; }; + A581463C2538170800CF4451 /* GenericMemoryTestDxeExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = GenericMemoryTestDxeExtra.uni; sourceTree = ""; }; + A581463D2538170800CF4451 /* GenericMemoryTestDxe.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = GenericMemoryTestDxe.uni; sourceTree = ""; }; + A581463E2538170800CF4451 /* LightMemoryTest.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = LightMemoryTest.h; sourceTree = ""; }; + A58146402538170800CF4451 /* NullMemoryTest.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = NullMemoryTest.h; sourceTree = ""; }; + A58146412538170800CF4451 /* NullMemoryTestDxeExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = NullMemoryTestDxeExtra.uni; sourceTree = ""; }; + A58146422538170800CF4451 /* NullMemoryTestDxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = NullMemoryTestDxe.inf; sourceTree = ""; }; + A58146432538170800CF4451 /* NullMemoryTest.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = NullMemoryTest.c; sourceTree = ""; }; + A58146442538170800CF4451 /* NullMemoryTestDxe.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = NullMemoryTestDxe.uni; sourceTree = ""; }; + A58146462538170800CF4451 /* HiiDatabaseDxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = HiiDatabaseDxe.inf; sourceTree = ""; }; + A58146472538170800CF4451 /* HiiDatabase.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = HiiDatabase.uni; sourceTree = ""; }; + A58146482538170800CF4451 /* Database.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Database.c; sourceTree = ""; }; + A58146492538170800CF4451 /* ConfigRouting.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ConfigRouting.c; sourceTree = ""; }; + A581464A2538170800CF4451 /* Font.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Font.c; sourceTree = ""; }; + A581464B2538170800CF4451 /* String.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = String.c; sourceTree = ""; }; + A581464C2538170800CF4451 /* Image.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Image.c; sourceTree = ""; }; + A581464D2538170800CF4451 /* HiiDatabaseExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = HiiDatabaseExtra.uni; sourceTree = ""; }; + A581464E2538170800CF4451 /* HiiDatabase.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HiiDatabase.h; sourceTree = ""; }; + A581464F2538170800CF4451 /* ConfigKeywordHandler.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ConfigKeywordHandler.c; sourceTree = ""; }; + A58146502538170800CF4451 /* HiiDatabaseEntry.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = HiiDatabaseEntry.c; sourceTree = ""; }; + A58146512538170800CF4451 /* ImageEx.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ImageEx.c; sourceTree = ""; }; + A58146532538170800CF4451 /* PciCfg2.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PciCfg2.c; sourceTree = ""; }; + A58146542538170800CF4451 /* PcatSingleSegmentPciCfg2Pei.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = PcatSingleSegmentPciCfg2Pei.inf; sourceTree = ""; }; + A58146552538170800CF4451 /* PcatSingleSegmentPciCfg2Pei.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = PcatSingleSegmentPciCfg2Pei.uni; sourceTree = ""; }; + A58146562538170800CF4451 /* PcatSingleSegmentPciCfg2PeiExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = PcatSingleSegmentPciCfg2PeiExtra.uni; sourceTree = ""; }; + A58146582538170800CF4451 /* FaultTolerantWritePei.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = FaultTolerantWritePei.inf; sourceTree = ""; }; + A58146592538170800CF4451 /* FaultTolerantWritePei.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = FaultTolerantWritePei.uni; sourceTree = ""; }; + A581465A2538170800CF4451 /* FaultTolerantWritePei.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = FaultTolerantWritePei.c; sourceTree = ""; }; + A581465B2538170800CF4451 /* FaultTolerantWritePeiExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = FaultTolerantWritePeiExtra.uni; sourceTree = ""; }; + A581465D2538170800CF4451 /* Language.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Language.h; sourceTree = ""; }; + A581465E2538170800CF4451 /* BdsEntry.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = BdsEntry.c; sourceTree = ""; }; + A581465F2538170800CF4451 /* HwErrRecSupport.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = HwErrRecSupport.c; sourceTree = ""; }; + A58146602538170800CF4451 /* BdsDxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = BdsDxe.inf; sourceTree = ""; }; + A58146612538170800CF4451 /* BdsDxeExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = BdsDxeExtra.uni; sourceTree = ""; }; + A58146622538170800CF4451 /* BdsDxe.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = BdsDxe.uni; sourceTree = ""; }; + A58146632538170800CF4451 /* Bds.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Bds.h; sourceTree = ""; }; + A58146642538170800CF4451 /* Language.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Language.c; sourceTree = ""; }; + A58146652538170800CF4451 /* HwErrRecSupport.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HwErrRecSupport.h; sourceTree = ""; }; + A58146672538170800CF4451 /* SmmCommunicationBufferExtraDxe.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = SmmCommunicationBufferExtraDxe.uni; sourceTree = ""; }; + A58146682538170800CF4451 /* SmmCommunicationBufferDxe.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SmmCommunicationBufferDxe.c; sourceTree = ""; }; + A58146692538170800CF4451 /* SmmCommunicationBufferDxe.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = SmmCommunicationBufferDxe.uni; sourceTree = ""; }; + A581466A2538170800CF4451 /* SmmCommunicationBufferDxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = SmmCommunicationBufferDxe.inf; sourceTree = ""; }; + A581466C2538170800CF4451 /* CapsulePei.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = CapsulePei.uni; sourceTree = ""; }; + A581466D2538170800CF4451 /* CapsulePei.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = CapsulePei.inf; sourceTree = ""; }; + A581466E2538170800CF4451 /* CapsuleX64Extra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = CapsuleX64Extra.uni; sourceTree = ""; }; + A581466F2538170800CF4451 /* CapsulePeiExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = CapsulePeiExtra.uni; sourceTree = ""; }; + A58146712538170800CF4451 /* X64Entry.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = X64Entry.c; sourceTree = ""; }; + A58146722538170800CF4451 /* PageFaultHandler.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = PageFaultHandler.nasm; sourceTree = ""; }; + A58146742538170800CF4451 /* CapsuleCoalesce.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = CapsuleCoalesce.c; sourceTree = ""; }; + A58146752538170800CF4451 /* CommonHeader.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = CommonHeader.h; sourceTree = ""; }; + A58146762538170800CF4451 /* CapsuleX64.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = CapsuleX64.uni; sourceTree = ""; }; + A58146772538170800CF4451 /* Capsule.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Capsule.h; sourceTree = ""; }; + A58146782538170800CF4451 /* CapsuleX64.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = CapsuleX64.inf; sourceTree = ""; }; + A58146792538170800CF4451 /* UefiCapsule.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = UefiCapsule.c; sourceTree = ""; }; + A581467B2538170800CF4451 /* ResetSystem.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ResetSystem.h; sourceTree = ""; }; + A581467C2538170800CF4451 /* ResetSystemRuntimeDxeExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = ResetSystemRuntimeDxeExtra.uni; sourceTree = ""; }; + A581467D2538170800CF4451 /* ResetSystemRuntimeDxe.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = ResetSystemRuntimeDxe.uni; sourceTree = ""; }; + A581467E2538170800CF4451 /* ResetSystemRuntimeDxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = ResetSystemRuntimeDxe.inf; sourceTree = ""; }; + A581467F2538170800CF4451 /* ResetSystem.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ResetSystem.c; sourceTree = ""; }; + A58146812538170800CF4451 /* Print.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Print.c; sourceTree = ""; }; + A58146822538170800CF4451 /* PrintDxeExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = PrintDxeExtra.uni; sourceTree = ""; }; + A58146832538170800CF4451 /* PrintDxe.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = PrintDxe.uni; sourceTree = ""; }; + A58146842538170800CF4451 /* PrintDxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = PrintDxe.inf; sourceTree = ""; }; + A58146862538170800CF4451 /* SerialIo.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SerialIo.c; sourceTree = ""; }; + A58146872538170800CF4451 /* SerialDxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = SerialDxe.inf; sourceTree = ""; }; + A58146882538170800CF4451 /* SerialDxe.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = SerialDxe.uni; sourceTree = ""; }; + A58146892538170800CF4451 /* SerialDxeExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = SerialDxeExtra.uni; sourceTree = ""; }; + A581468C2538170800CF4451 /* SmmLockBoxExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = SmmLockBoxExtra.uni; sourceTree = ""; }; + A581468D2538170800CF4451 /* SmmLockBox.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = SmmLockBox.inf; sourceTree = ""; }; + A581468E2538170800CF4451 /* SmmLockBox.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = SmmLockBox.uni; sourceTree = ""; }; + A581468F2538170800CF4451 /* SmmLockBox.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SmmLockBox.c; sourceTree = ""; }; + A58146912538170800CF4451 /* FileExplorerDxe.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = FileExplorerDxe.c; sourceTree = ""; }; + A58146922538170800CF4451 /* FileExplorerDxe.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = FileExplorerDxe.uni; sourceTree = ""; }; + A58146932538170800CF4451 /* FileExplorerDxeExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = FileExplorerDxeExtra.uni; sourceTree = ""; }; + A58146942538170800CF4451 /* FileExplorerDxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = FileExplorerDxe.inf; sourceTree = ""; }; + A58146972538170800CF4451 /* ReportStatusCodeRouterRuntimeDxe.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ReportStatusCodeRouterRuntimeDxe.c; sourceTree = ""; }; + A58146982538170800CF4451 /* ReportStatusCodeRouterRuntimeDxeExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = ReportStatusCodeRouterRuntimeDxeExtra.uni; sourceTree = ""; }; + A58146992538170800CF4451 /* ReportStatusCodeRouterRuntimeDxe.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = ReportStatusCodeRouterRuntimeDxe.uni; sourceTree = ""; }; + A581469A2538170800CF4451 /* ReportStatusCodeRouterRuntimeDxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = ReportStatusCodeRouterRuntimeDxe.inf; sourceTree = ""; }; + A581469B2538170800CF4451 /* ReportStatusCodeRouterRuntimeDxe.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ReportStatusCodeRouterRuntimeDxe.h; sourceTree = ""; }; + A581469D2538170800CF4451 /* ReportStatusCodeRouterPei.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = ReportStatusCodeRouterPei.inf; sourceTree = ""; }; + A581469E2538170800CF4451 /* ReportStatusCodeRouterPei.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = ReportStatusCodeRouterPei.uni; sourceTree = ""; }; + A581469F2538170800CF4451 /* ReportStatusCodeRouterPeiExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = ReportStatusCodeRouterPeiExtra.uni; sourceTree = ""; }; + A58146A02538170800CF4451 /* ReportStatusCodeRouterPei.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ReportStatusCodeRouterPei.h; sourceTree = ""; }; + A58146A12538170800CF4451 /* ReportStatusCodeRouterPei.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ReportStatusCodeRouterPei.c; sourceTree = ""; }; + A58146A32538170800CF4451 /* ReportStatusCodeRouterSmm.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ReportStatusCodeRouterSmm.c; sourceTree = ""; }; + A58146A42538170800CF4451 /* ReportStatusCodeRouterSmmExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = ReportStatusCodeRouterSmmExtra.uni; sourceTree = ""; }; + A58146A52538170800CF4451 /* ReportStatusCodeRouterSmm.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = ReportStatusCodeRouterSmm.uni; sourceTree = ""; }; + A58146A62538170800CF4451 /* ReportStatusCodeRouterSmm.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ReportStatusCodeRouterSmm.h; sourceTree = ""; }; + A58146A72538170800CF4451 /* ReportStatusCodeRouterSmm.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = ReportStatusCodeRouterSmm.inf; sourceTree = ""; }; + A58146A92538170800CF4451 /* CapsuleCache.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = CapsuleCache.c; sourceTree = ""; }; + A58146AA2538170800CF4451 /* CapsuleCacheNull.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = CapsuleCacheNull.c; sourceTree = ""; }; + A58146AC2538170800CF4451 /* SaveLongModeContext.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SaveLongModeContext.c; sourceTree = ""; }; + A58146AD2538170800CF4451 /* CapsuleService.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = CapsuleService.h; sourceTree = ""; }; + A58146AE2538170800CF4451 /* CapsuleRuntimeDxe.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = CapsuleRuntimeDxe.uni; sourceTree = ""; }; + A58146AF2538170800CF4451 /* CapsuleRuntimeDxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = CapsuleRuntimeDxe.inf; sourceTree = ""; }; + A58146B02538170800CF4451 /* CapsuleRuntimeDxeExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = CapsuleRuntimeDxeExtra.uni; sourceTree = ""; }; + A58146B12538170800CF4451 /* CapsuleReset.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = CapsuleReset.c; sourceTree = ""; }; + A58146B22538170800CF4451 /* SaveLongModeContext.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SaveLongModeContext.c; sourceTree = ""; }; + A58146B42538170800CF4451 /* CapsuleReset.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = CapsuleReset.c; sourceTree = ""; }; + A58146B52538170800CF4451 /* CapsuleService.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = CapsuleService.c; sourceTree = ""; }; + A58146B72538170800CF4451 /* Expression.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Expression.c; sourceTree = ""; }; + A58146B82538170800CF4451 /* SetupBrowserExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = SetupBrowserExtra.uni; sourceTree = ""; }; + A58146B92538170800CF4451 /* Setup.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Setup.h; sourceTree = ""; }; + A58146BA2538170800CF4451 /* Presentation.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Presentation.c; sourceTree = ""; }; + A58146BB2538170800CF4451 /* SetupBrowserDxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = SetupBrowserDxe.inf; sourceTree = ""; }; + A58146BC2538170800CF4451 /* Setup.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Setup.c; sourceTree = ""; }; + A58146BD2538170800CF4451 /* Expression.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Expression.h; sourceTree = ""; }; + A58146BE2538170800CF4451 /* IfrParse.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = IfrParse.c; sourceTree = ""; }; + A58146BF2538170800CF4451 /* SetupBrowser.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = SetupBrowser.uni; sourceTree = ""; }; + A58146C22538170800CF4451 /* GraphicsConsoleDxeExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = GraphicsConsoleDxeExtra.uni; sourceTree = ""; }; + A58146C32538170800CF4451 /* GraphicsConsole.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = GraphicsConsole.h; sourceTree = ""; }; + A58146C42538170800CF4451 /* ComponentName.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ComponentName.c; sourceTree = ""; }; + A58146C52538170800CF4451 /* GraphicsConsoleDxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = GraphicsConsoleDxe.inf; sourceTree = ""; }; + A58146C62538170800CF4451 /* GraphicsConsoleDxe.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = GraphicsConsoleDxe.uni; sourceTree = ""; }; + A58146C72538170800CF4451 /* LaffStd.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = LaffStd.c; sourceTree = ""; }; + A58146C82538170800CF4451 /* GraphicsConsole.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = GraphicsConsole.c; sourceTree = ""; }; + A58146CA2538170800CF4451 /* TerminalDxeExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = TerminalDxeExtra.uni; sourceTree = ""; }; + A58146CB2538170800CF4451 /* TerminalDxe.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = TerminalDxe.uni; sourceTree = ""; }; + A58146CC2538170800CF4451 /* TerminalConOut.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = TerminalConOut.c; sourceTree = ""; }; + A58146CD2538170800CF4451 /* TerminalConIn.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = TerminalConIn.c; sourceTree = ""; }; + A58146CE2538170800CF4451 /* TerminalDxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = TerminalDxe.inf; sourceTree = ""; }; + A58146CF2538170800CF4451 /* Terminal.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Terminal.c; sourceTree = ""; }; + A58146D02538170800CF4451 /* Vtutf8.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Vtutf8.c; sourceTree = ""; }; + A58146D12538170800CF4451 /* ComponentName.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ComponentName.c; sourceTree = ""; }; + A58146D22538170800CF4451 /* Terminal.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Terminal.h; sourceTree = ""; }; + A58146D32538170800CF4451 /* Ansi.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Ansi.c; sourceTree = ""; }; + A58146D52538170800CF4451 /* ConPlatformDxeExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = ConPlatformDxeExtra.uni; sourceTree = ""; }; + A58146D62538170800CF4451 /* ConPlatform.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ConPlatform.c; sourceTree = ""; }; + A58146D72538170800CF4451 /* ConPlatformDxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = ConPlatformDxe.inf; sourceTree = ""; }; + A58146D82538170800CF4451 /* ComponentName.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ComponentName.c; sourceTree = ""; }; + A58146D92538170800CF4451 /* ConPlatformDxe.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = ConPlatformDxe.uni; sourceTree = ""; }; + A58146DA2538170800CF4451 /* ConPlatform.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ConPlatform.h; sourceTree = ""; }; + A58146DC2538170800CF4451 /* ConSplitter.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ConSplitter.h; sourceTree = ""; }; + A58146DD2538170800CF4451 /* ConSplitterGraphics.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ConSplitterGraphics.c; sourceTree = ""; }; + A58146DE2538170800CF4451 /* ComponentName.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ComponentName.c; sourceTree = ""; }; + A58146DF2538170800CF4451 /* ConSplitter.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ConSplitter.c; sourceTree = ""; }; + A58146E02538170800CF4451 /* ConSplitterDxe.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = ConSplitterDxe.uni; sourceTree = ""; }; + A58146E12538170800CF4451 /* ConSplitterDxeExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = ConSplitterDxeExtra.uni; sourceTree = ""; }; + A58146E22538170800CF4451 /* ConSplitterDxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = ConSplitterDxe.inf; sourceTree = ""; }; + A58146E42538170800CF4451 /* GraphicsOutput.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = GraphicsOutput.h; sourceTree = ""; }; + A58146E52538170800CF4451 /* ComponentName.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ComponentName.c; sourceTree = ""; }; + A58146E62538170800CF4451 /* GraphicsOutputDxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = GraphicsOutputDxe.inf; sourceTree = ""; }; + A58146E72538170800CF4451 /* GraphicsOutput.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = GraphicsOutput.c; sourceTree = ""; }; + A58146E92538170800CF4451 /* Metronome.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = Metronome.inf; sourceTree = ""; }; + A58146EA2538170800CF4451 /* Metronome.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Metronome.c; sourceTree = ""; }; + A58146EB2538170800CF4451 /* Metronome.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = Metronome.uni; sourceTree = ""; }; + A58146EC2538170800CF4451 /* MetronomeExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = MetronomeExtra.uni; sourceTree = ""; }; + A58146ED2538170800CF4451 /* Metronome.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Metronome.h; sourceTree = ""; }; + A58146F02538170800CF4451 /* FmpAuthenticationLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = FmpAuthenticationLib.h; sourceTree = ""; }; + A58146F12538170800CF4451 /* PlatformHookLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PlatformHookLib.h; sourceTree = ""; }; + A58146F22538170800CF4451 /* UefiBootManagerLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = UefiBootManagerLib.h; sourceTree = ""; }; + A58146F32538170800CF4451 /* HttpLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HttpLib.h; sourceTree = ""; }; + A58146F42538170800CF4451 /* TpmMeasurementLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = TpmMeasurementLib.h; sourceTree = ""; }; + A58146F52538170800CF4451 /* PciHostBridgeLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PciHostBridgeLib.h; sourceTree = ""; }; + A58146F62538170800CF4451 /* SecurityManagementLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SecurityManagementLib.h; sourceTree = ""; }; + A58146F72538170800CF4451 /* DisplayUpdateProgressLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DisplayUpdateProgressLib.h; sourceTree = ""; }; + A58146F82538170800CF4451 /* IpmiLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = IpmiLib.h; sourceTree = ""; }; + A58146F92538170800CF4451 /* DebugAgentLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DebugAgentLib.h; sourceTree = ""; }; + A58146FA2538170800CF4451 /* UefiHiiServicesLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = UefiHiiServicesLib.h; sourceTree = ""; }; + A58146FB2538170800CF4451 /* PlatformBootManagerLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PlatformBootManagerLib.h; sourceTree = ""; }; + A58146FC2538170800CF4451 /* UdpIoLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = UdpIoLib.h; sourceTree = ""; }; + A58146FD2538170800CF4451 /* MemoryProfileLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MemoryProfileLib.h; sourceTree = ""; }; + A58146FE2538170800CF4451 /* SmmCorePlatformHookLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SmmCorePlatformHookLib.h; sourceTree = ""; }; + A58146FF2538170800CF4451 /* CustomizedDisplayLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = CustomizedDisplayLib.h; sourceTree = ""; }; + A58147002538170800CF4451 /* ResetUtilityLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ResetUtilityLib.h; sourceTree = ""; }; + A58147012538170800CF4451 /* SortLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SortLib.h; sourceTree = ""; }; + A58147022538170800CF4451 /* FrameBufferBltLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = FrameBufferBltLib.h; sourceTree = ""; }; + A58147032538170800CF4451 /* NetLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = NetLib.h; sourceTree = ""; }; + A58147042538170800CF4451 /* OemHookStatusCodeLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = OemHookStatusCodeLib.h; sourceTree = ""; }; + A58147052538170800CF4451 /* BmpSupportLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = BmpSupportLib.h; sourceTree = ""; }; + A58147062538170800CF4451 /* LockBoxLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = LockBoxLib.h; sourceTree = ""; }; + A58147072538170800CF4451 /* ResetSystemLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ResetSystemLib.h; sourceTree = ""; }; + A58147082538170800CF4451 /* VarCheckLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = VarCheckLib.h; sourceTree = ""; }; + A58147092538170800CF4451 /* RecoveryLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = RecoveryLib.h; sourceTree = ""; }; + A581470A2538170800CF4451 /* AuthVariableLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AuthVariableLib.h; sourceTree = ""; }; + A581470B2538170800CF4451 /* HiiLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HiiLib.h; sourceTree = ""; }; + A581470C2538170800CF4451 /* NonDiscoverableDeviceRegistrationLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = NonDiscoverableDeviceRegistrationLib.h; sourceTree = ""; }; + A581470D2538170800CF4451 /* TcpIoLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = TcpIoLib.h; sourceTree = ""; }; + A581470E2538170800CF4451 /* BootLogoLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = BootLogoLib.h; sourceTree = ""; }; + A581470F2538170800CF4451 /* PlatformVarCleanupLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PlatformVarCleanupLib.h; sourceTree = ""; }; + A58147102538170800CF4451 /* CpuExceptionHandlerLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = CpuExceptionHandlerLib.h; sourceTree = ""; }; + A58147112538170800CF4451 /* CapsuleLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = CapsuleLib.h; sourceTree = ""; }; + A58147122538170800CF4451 /* S3Lib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = S3Lib.h; sourceTree = ""; }; + A58147132538170800CF4451 /* FileExplorerLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = FileExplorerLib.h; sourceTree = ""; }; + A58147152538170800CF4451 /* Ps2Policy.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Ps2Policy.h; sourceTree = ""; }; + A58147162538170800CF4451 /* FileExplorer.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = FileExplorer.h; sourceTree = ""; }; + A58147172538170800CF4451 /* UfsHostControllerPlatform.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = UfsHostControllerPlatform.h; sourceTree = ""; }; + A58147182538170800CF4451 /* EsrtManagement.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = EsrtManagement.h; sourceTree = ""; }; + A58147192538170800CF4451 /* NonDiscoverableDevice.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = NonDiscoverableDevice.h; sourceTree = ""; }; + A581471A2538170800CF4451 /* PlatformSpecificResetFilter.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PlatformSpecificResetFilter.h; sourceTree = ""; }; + A581471B2538170800CF4451 /* IpmiProtocol.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = IpmiProtocol.h; sourceTree = ""; }; + A581471C2538170800CF4451 /* SwapAddressRange.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SwapAddressRange.h; sourceTree = ""; }; + A581471D2538170800CF4451 /* DebuggerConfiguration.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DebuggerConfiguration.h; sourceTree = ""; }; + A581471E2538170800CF4451 /* IoMmu.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = IoMmu.h; sourceTree = ""; }; + A581471F2538170800CF4451 /* PlatformSpecificResetHandler.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PlatformSpecificResetHandler.h; sourceTree = ""; }; + A58147202538170800CF4451 /* LoadPe32Image.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = LoadPe32Image.h; sourceTree = ""; }; + A58147212538170800CF4451 /* VarCheck.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = VarCheck.h; sourceTree = ""; }; + A58147222538170800CF4451 /* FirmwareManagementProgress.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = FirmwareManagementProgress.h; sourceTree = ""; }; + A58147232538170800CF4451 /* AtaAtapiPolicy.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AtaAtapiPolicy.h; sourceTree = ""; }; + A58147242538170800CF4451 /* SmmMemoryAttribute.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SmmMemoryAttribute.h; sourceTree = ""; }; + A58147252538170800CF4451 /* SdMmcOverride.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SdMmcOverride.h; sourceTree = ""; }; + A58147262538170800CF4451 /* FormBrowserEx2.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = FormBrowserEx2.h; sourceTree = ""; }; + A58147272538170800CF4451 /* SmmSwapAddressRange.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SmmSwapAddressRange.h; sourceTree = ""; }; + A58147282538170800CF4451 /* UfsHostController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = UfsHostController.h; sourceTree = ""; }; + A58147292538170800CF4451 /* SmmFirmwareVolumeBlock.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SmmFirmwareVolumeBlock.h; sourceTree = ""; }; + A581472A2538170800CF4451 /* EbcVmTest.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = EbcVmTest.h; sourceTree = ""; }; + A581472B2538170800CF4451 /* PlatformLogo.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PlatformLogo.h; sourceTree = ""; }; + A581472C2538170800CF4451 /* PeCoffImageEmulator.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PeCoffImageEmulator.h; sourceTree = ""; }; + A581472D2538170800CF4451 /* Print2.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Print2.h; sourceTree = ""; }; + A581472E2538170800CF4451 /* BootLogo.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = BootLogo.h; sourceTree = ""; }; + A581472F2538170800CF4451 /* SmmReadyToBoot.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SmmReadyToBoot.h; sourceTree = ""; }; + A58147302538170800CF4451 /* SmmLegacyBoot.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SmmLegacyBoot.h; sourceTree = ""; }; + A58147312538170800CF4451 /* SmmVariable.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SmmVariable.h; sourceTree = ""; }; + A58147322538170800CF4451 /* SmmFaultTolerantWrite.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SmmFaultTolerantWrite.h; sourceTree = ""; }; + A58147332538170800CF4451 /* LockBox.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = LockBox.h; sourceTree = ""; }; + A58147342538170800CF4451 /* GenericMemoryTest.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = GenericMemoryTest.h; sourceTree = ""; }; + A58147352538170800CF4451 /* DisplayProtocol.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DisplayProtocol.h; sourceTree = ""; }; + A58147362538170800CF4451 /* BootLogo2.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = BootLogo2.h; sourceTree = ""; }; + A58147372538170800CF4451 /* FormBrowserEx.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = FormBrowserEx.h; sourceTree = ""; }; + A58147382538170800CF4451 /* VariableLock.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = VariableLock.h; sourceTree = ""; }; + A58147392538170800CF4451 /* EbcSimpleDebugger.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = EbcSimpleDebugger.h; sourceTree = ""; }; + A581473A2538170800CF4451 /* SmmVarCheck.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SmmVarCheck.h; sourceTree = ""; }; + A581473B2538170800CF4451 /* SmmExitBootServices.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SmmExitBootServices.h; sourceTree = ""; }; + A581473C2538170800CF4451 /* FaultTolerantWrite.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = FaultTolerantWrite.h; sourceTree = ""; }; + A581473E2538170800CF4451 /* EndOfS3Resume.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = EndOfS3Resume.h; sourceTree = ""; }; + A581473F2538170800CF4451 /* MdeModulePkgTokenSpace.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MdeModulePkgTokenSpace.h; sourceTree = ""; }; + A58147402538170800CF4451 /* LoadModuleAtFixedAddress.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = LoadModuleAtFixedAddress.h; sourceTree = ""; }; + A58147412538170800CF4451 /* SystemNvDataGuid.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SystemNvDataGuid.h; sourceTree = ""; }; + A58147422538170800CF4451 /* ExtendedFirmwarePerformance.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ExtendedFirmwarePerformance.h; sourceTree = ""; }; + A58147432538170800CF4451 /* MdeModuleHii.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MdeModuleHii.h; sourceTree = ""; }; + A58147442538170800CF4451 /* NonDiscoverableDevice.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = NonDiscoverableDevice.h; sourceTree = ""; }; + A58147452538170800CF4451 /* PlatformHasAcpi.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PlatformHasAcpi.h; sourceTree = ""; }; + A58147462538170800CF4451 /* SmmVariableCommon.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SmmVariableCommon.h; sourceTree = ""; }; + A58147472538170800CF4451 /* MemoryProfile.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MemoryProfile.h; sourceTree = ""; }; + A58147482538170800CF4451 /* RamDiskHii.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = RamDiskHii.h; sourceTree = ""; }; + A58147492538170800CF4451 /* PcdDataBaseSignatureGuid.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PcdDataBaseSignatureGuid.h; sourceTree = ""; }; + A581474A2538170800CF4451 /* VariableIndexTable.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = VariableIndexTable.h; sourceTree = ""; }; + A581474B2538170800CF4451 /* ConsoleInDevice.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ConsoleInDevice.h; sourceTree = ""; }; + A581474C2538170800CF4451 /* SerialPortLibVendor.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SerialPortLibVendor.h; sourceTree = ""; }; + A581474D2538170800CF4451 /* RecoveryDevice.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = RecoveryDevice.h; sourceTree = ""; }; + A581474E2538170800CF4451 /* IdleLoopEvent.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = IdleLoopEvent.h; sourceTree = ""; }; + A581474F2538170800CF4451 /* Performance.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Performance.h; sourceTree = ""; }; + A58147502538170800CF4451 /* UsbKeyBoardLayout.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = UsbKeyBoardLayout.h; sourceTree = ""; }; + A58147512538170800CF4451 /* ZeroGuid.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ZeroGuid.h; sourceTree = ""; }; + A58147522538170800CF4451 /* PcdDataBaseHobGuid.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PcdDataBaseHobGuid.h; sourceTree = ""; }; + A58147532538170800CF4451 /* LzmaDecompress.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = LzmaDecompress.h; sourceTree = ""; }; + A58147542538170800CF4451 /* Ip4Config2Hii.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Ip4Config2Hii.h; sourceTree = ""; }; + A58147552538170800CF4451 /* PiSmmMemoryAttributesTable.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PiSmmMemoryAttributesTable.h; sourceTree = ""; }; + A58147562538170800CF4451 /* VarErrorFlag.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = VarErrorFlag.h; sourceTree = ""; }; + A58147572538170800CF4451 /* ConsoleOutDevice.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ConsoleOutDevice.h; sourceTree = ""; }; + A58147582538170800CF4451 /* SmmLockBox.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SmmLockBox.h; sourceTree = ""; }; + A58147592538170800CF4451 /* BootScriptExecutorVariable.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = BootScriptExecutorVariable.h; sourceTree = ""; }; + A581475A2538170800CF4451 /* MtcVendor.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MtcVendor.h; sourceTree = ""; }; + A581475B2538170800CF4451 /* DriverSampleHii.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DriverSampleHii.h; sourceTree = ""; }; + A581475C2538170800CF4451 /* StandardErrorDevice.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = StandardErrorDevice.h; sourceTree = ""; }; + A581475D2538170800CF4451 /* MemoryStatusCodeRecord.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MemoryStatusCodeRecord.h; sourceTree = ""; }; + A581475E2538170800CF4451 /* S3SmmInitDone.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = S3SmmInitDone.h; sourceTree = ""; }; + A581475F2538170800CF4451 /* StatusCodeDataTypeDebug.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = StatusCodeDataTypeDebug.h; sourceTree = ""; }; + A58147602538170800CF4451 /* EventExitBootServiceFailed.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = EventExitBootServiceFailed.h; sourceTree = ""; }; + A58147612538170800CF4451 /* S3StorageDeviceInitList.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = S3StorageDeviceInitList.h; sourceTree = ""; }; + A58147622538170800CF4451 /* CapsuleVendor.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = CapsuleVendor.h; sourceTree = ""; }; + A58147632538170800CF4451 /* ConnectConInEvent.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ConnectConInEvent.h; sourceTree = ""; }; + A58147642538170800CF4451 /* VlanConfigHii.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = VlanConfigHii.h; sourceTree = ""; }; + A58147652538170800CF4451 /* SmiHandlerProfile.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SmiHandlerProfile.h; sourceTree = ""; }; + A58147662538170800CF4451 /* PerformanceMeasurement.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PerformanceMeasurement.h; sourceTree = ""; }; + A58147672538170800CF4451 /* HiiBootMaintenanceFormset.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HiiBootMaintenanceFormset.h; sourceTree = ""; }; + A58147682538170800CF4451 /* PlatDriOverrideHii.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PlatDriOverrideHii.h; sourceTree = ""; }; + A58147692538170800CF4451 /* DebugMask.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DebugMask.h; sourceTree = ""; }; + A581476A2538170800CF4451 /* VariableFormat.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = VariableFormat.h; sourceTree = ""; }; + A581476B2538170800CF4451 /* AcpiS3Context.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AcpiS3Context.h; sourceTree = ""; }; + A581476C2538170800CF4451 /* StatusCodeDataTypeVariable.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = StatusCodeDataTypeVariable.h; sourceTree = ""; }; + A581476D2538170800CF4451 /* Ip4IScsiConfigHii.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Ip4IScsiConfigHii.h; sourceTree = ""; }; + A581476E2538170800CF4451 /* Crc32GuidedSectionExtraction.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Crc32GuidedSectionExtraction.h; sourceTree = ""; }; + A581476F2538170800CF4451 /* TtyTerm.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = TtyTerm.h; sourceTree = ""; }; + A58147702538170800CF4451 /* PiSmmCommunicationRegionTable.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PiSmmCommunicationRegionTable.h; sourceTree = ""; }; + A58147712538170800CF4451 /* StatusCodeCallbackGuid.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = StatusCodeCallbackGuid.h; sourceTree = ""; }; + A58147722538170800CF4451 /* HiiResourceSampleHii.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HiiResourceSampleHii.h; sourceTree = ""; }; + A58147732538170800CF4451 /* MemoryTypeInformation.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MemoryTypeInformation.h; sourceTree = ""; }; + A58147742538170800CF4451 /* FirmwarePerformance.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = FirmwarePerformance.h; sourceTree = ""; }; + A58147752538170800CF4451 /* FaultTolerantWrite.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = FaultTolerantWrite.h; sourceTree = ""; }; + A58147772538170800CF4451 /* SerialPortPei.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SerialPortPei.h; sourceTree = ""; }; + A58147782538170800CF4451 /* PlatformSpecificResetFilter.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PlatformSpecificResetFilter.h; sourceTree = ""; }; + A58147792538170800CF4451 /* Debug.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Debug.h; sourceTree = ""; }; + A581477A2538170800CF4451 /* SdMmcHostController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SdMmcHostController.h; sourceTree = ""; }; + A581477B2538170800CF4451 /* IoMmu.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = IoMmu.h; sourceTree = ""; }; + A581477C2538170800CF4451 /* Usb2HostController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Usb2HostController.h; sourceTree = ""; }; + A581477D2538170800CF4451 /* AtaController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AtaController.h; sourceTree = ""; }; + A581477E2538170800CF4451 /* AtaAhciController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AtaAhciController.h; sourceTree = ""; }; + A581477F2538170800CF4451 /* PlatformSpecificResetHandler.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PlatformSpecificResetHandler.h; sourceTree = ""; }; + A58147802538170800CF4451 /* AtaPassThru.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AtaPassThru.h; sourceTree = ""; }; + A58147812538170800CF4451 /* IpmiPpi.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = IpmiPpi.h; sourceTree = ""; }; + A58147822538170800CF4451 /* UfsHostController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = UfsHostController.h; sourceTree = ""; }; + A58147832538170800CF4451 /* PlatformSpecificResetNotification.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PlatformSpecificResetNotification.h; sourceTree = ""; }; + A58147842538170800CF4451 /* StorageSecurityCommand.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = StorageSecurityCommand.h; sourceTree = ""; }; + A58147852538170800CF4451 /* SmmControl.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SmmControl.h; sourceTree = ""; }; + A58147862538170800CF4451 /* SmmCommunication.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SmmCommunication.h; sourceTree = ""; }; + A58147872538170800CF4451 /* NvmExpressPassThru.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = NvmExpressPassThru.h; sourceTree = ""; }; + A58147882538170800CF4451 /* UsbHostController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = UsbHostController.h; sourceTree = ""; }; + A58147892538170800CF4451 /* UsbIo.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = UsbIo.h; sourceTree = ""; }; + A581478A2538170800CF4451 /* NvmExpressHostController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = NvmExpressHostController.h; sourceTree = ""; }; + A581478B2538170800CF4451 /* UsbController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = UsbController.h; sourceTree = ""; }; + A581478C2538170800CF4451 /* SmmAccess.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SmmAccess.h; sourceTree = ""; }; + A581478D2538170800CF4451 /* CapsuleOnDisk.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = CapsuleOnDisk.h; sourceTree = ""; }; + A581478E2538170800CF4451 /* PostBootScriptTable.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PostBootScriptTable.h; sourceTree = ""; }; + A581478F2538170800CF4451 /* SecPerformance.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SecPerformance.h; sourceTree = ""; }; + A58147902538170800CF4451 /* MdeModulePkgExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = MdeModulePkgExtra.uni; sourceTree = ""; }; + A58147942538170800CF4451 /* SdBlockIoPei.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SdBlockIoPei.c; sourceTree = ""; }; + A58147952538170800CF4451 /* SdHcMem.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SdHcMem.c; sourceTree = ""; }; + A58147962538170800CF4451 /* SdBlockIoPeiExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = SdBlockIoPeiExtra.uni; sourceTree = ""; }; + A58147972538170800CF4451 /* SdHci.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SdHci.h; sourceTree = ""; }; + A58147982538170800CF4451 /* SdBlockIoPei.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = SdBlockIoPei.uni; sourceTree = ""; }; + A58147992538170800CF4451 /* SdBlockIoPei.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = SdBlockIoPei.inf; sourceTree = ""; }; + A581479A2538170800CF4451 /* SdHcMem.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SdHcMem.h; sourceTree = ""; }; + A581479B2538170800CF4451 /* SdBlockIoPei.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SdBlockIoPei.h; sourceTree = ""; }; + A581479C2538170800CF4451 /* DmaMem.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DmaMem.c; sourceTree = ""; }; + A581479D2538170800CF4451 /* SdHci.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SdHci.c; sourceTree = ""; }; + A581479F2538170800CF4451 /* EmmcHcMem.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = EmmcHcMem.c; sourceTree = ""; }; + A58147A02538170800CF4451 /* EmmcHci.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = EmmcHci.c; sourceTree = ""; }; + A58147A12538170800CF4451 /* EmmcBlockIoPei.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = EmmcBlockIoPei.c; sourceTree = ""; }; + A58147A22538170800CF4451 /* EmmcBlockIoPeiExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = EmmcBlockIoPeiExtra.uni; sourceTree = ""; }; + A58147A32538170800CF4451 /* EmmcHcMem.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = EmmcHcMem.h; sourceTree = ""; }; + A58147A42538170800CF4451 /* EmmcHci.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = EmmcHci.h; sourceTree = ""; }; + A58147A52538170800CF4451 /* EmmcBlockIoPei.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = EmmcBlockIoPei.h; sourceTree = ""; }; + A58147A62538170800CF4451 /* DmaMem.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DmaMem.c; sourceTree = ""; }; + A58147A72538170800CF4451 /* EmmcBlockIoPei.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = EmmcBlockIoPei.uni; sourceTree = ""; }; + A58147A82538170800CF4451 /* EmmcBlockIoPei.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = EmmcBlockIoPei.inf; sourceTree = ""; }; + A58147AA2538170800CF4451 /* SdBlockIo.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SdBlockIo.c; sourceTree = ""; }; + A58147AB2538170800CF4451 /* SdDxe.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = SdDxe.uni; sourceTree = ""; }; + A58147AC2538170800CF4451 /* SdDxe.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SdDxe.c; sourceTree = ""; }; + A58147AD2538170800CF4451 /* SdDxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = SdDxe.inf; sourceTree = ""; }; + A58147AE2538170800CF4451 /* ComponentName.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ComponentName.c; sourceTree = ""; }; + A58147AF2538170800CF4451 /* SdDiskInfo.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SdDiskInfo.h; sourceTree = ""; }; + A58147B02538170800CF4451 /* SdBlockIo.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SdBlockIo.h; sourceTree = ""; }; + A58147B12538170800CF4451 /* SdDxe.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SdDxe.h; sourceTree = ""; }; + A58147B22538170800CF4451 /* SdDxeExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = SdDxeExtra.uni; sourceTree = ""; }; + A58147B32538170800CF4451 /* SdDiskInfo.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SdDiskInfo.c; sourceTree = ""; }; + A58147B52538170800CF4451 /* EmmcDxe.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = EmmcDxe.h; sourceTree = ""; }; + A58147B62538170800CF4451 /* EmmcDiskInfo.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = EmmcDiskInfo.h; sourceTree = ""; }; + A58147B72538170800CF4451 /* EmmcDxe.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = EmmcDxe.uni; sourceTree = ""; }; + A58147B82538170800CF4451 /* EmmcBlockIo.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = EmmcBlockIo.c; sourceTree = ""; }; + A58147B92538170800CF4451 /* ComponentName.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ComponentName.c; sourceTree = ""; }; + A58147BA2538170800CF4451 /* EmmcDxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = EmmcDxe.inf; sourceTree = ""; }; + A58147BB2538170800CF4451 /* EmmcDxe.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = EmmcDxe.c; sourceTree = ""; }; + A58147BC2538170800CF4451 /* EmmcDiskInfo.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = EmmcDiskInfo.c; sourceTree = ""; }; + A58147BD2538170800CF4451 /* EmmcBlockIo.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = EmmcBlockIo.h; sourceTree = ""; }; + A58147BE2538170800CF4451 /* EmmcDxeExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = EmmcDxeExtra.uni; sourceTree = ""; }; + A58147C12538170800CF4451 /* AtapiPeim.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AtapiPeim.h; sourceTree = ""; }; + A58147C22538170800CF4451 /* IdeBusPei.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = IdeBusPei.uni; sourceTree = ""; }; + A58147C32538170800CF4451 /* IdeBusPeiExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = IdeBusPeiExtra.uni; sourceTree = ""; }; + A58147C42538170800CF4451 /* IdeBusPei.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = IdeBusPei.inf; sourceTree = ""; }; + A58147C52538170800CF4451 /* AtapiPeim.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = AtapiPeim.c; sourceTree = ""; }; + A58147C72538170800CF4451 /* SdMmcPciHci.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SdMmcPciHci.c; sourceTree = ""; }; + A58147C82538170800CF4451 /* SdMmcPciHcDxeExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = SdMmcPciHcDxeExtra.uni; sourceTree = ""; }; + A58147C92538170800CF4451 /* SdDevice.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SdDevice.c; sourceTree = ""; }; + A58147CA2538170800CF4451 /* ComponentName.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ComponentName.c; sourceTree = ""; }; + A58147CB2538170800CF4451 /* SdMmcPciHcDxe.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SdMmcPciHcDxe.h; sourceTree = ""; }; + A58147CC2538170800CF4451 /* SdMmcPciHci.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SdMmcPciHci.h; sourceTree = ""; }; + A58147CD2538170800CF4451 /* EmmcDevice.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = EmmcDevice.c; sourceTree = ""; }; + A58147CE2538170800CF4451 /* SdMmcPciHcDxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = SdMmcPciHcDxe.inf; sourceTree = ""; }; + A58147CF2538170800CF4451 /* SdMmcPciHcDxe.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = SdMmcPciHcDxe.uni; sourceTree = ""; }; + A58147D02538170800CF4451 /* SdMmcPciHcDxe.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SdMmcPciHcDxe.c; sourceTree = ""; }; + A58147D22538170800CF4451 /* IncompatiblePciDeviceSupportDxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = IncompatiblePciDeviceSupportDxe.inf; sourceTree = ""; }; + A58147D32538170800CF4451 /* IncompatiblePciDeviceSupportExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = IncompatiblePciDeviceSupportExtra.uni; sourceTree = ""; }; + A58147D42538170800CF4451 /* IncompatiblePciDeviceSupport.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = IncompatiblePciDeviceSupport.uni; sourceTree = ""; }; + A58147D52538170800CF4451 /* IncompatiblePciDeviceSupport.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = IncompatiblePciDeviceSupport.c; sourceTree = ""; }; + A58147D72538170800CF4451 /* PciEnumerator.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PciEnumerator.c; sourceTree = ""; }; + A58147D82538170800CF4451 /* PciDriverOverride.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PciDriverOverride.c; sourceTree = ""; }; + A58147D92538170800CF4451 /* PciResourceSupport.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PciResourceSupport.c; sourceTree = ""; }; + A58147DA2538170800CF4451 /* PciDeviceSupport.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PciDeviceSupport.c; sourceTree = ""; }; + A58147DB2538170800CF4451 /* PciIo.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PciIo.c; sourceTree = ""; }; + A58147DC2538170800CF4451 /* PciCommand.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PciCommand.c; sourceTree = ""; }; + A58147DD2538170800CF4451 /* PciHotPlugSupport.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PciHotPlugSupport.c; sourceTree = ""; }; + A58147DE2538170800CF4451 /* PciOptionRomSupport.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PciOptionRomSupport.h; sourceTree = ""; }; + A58147DF2538170800CF4451 /* PciRomTable.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PciRomTable.h; sourceTree = ""; }; + A58147E02538170800CF4451 /* PciEnumeratorSupport.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PciEnumeratorSupport.c; sourceTree = ""; }; + A58147E12538170800CF4451 /* PciLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PciLib.h; sourceTree = ""; }; + A58147E22538170800CF4451 /* PciBusDxeExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = PciBusDxeExtra.uni; sourceTree = ""; }; + A58147E32538170800CF4451 /* ComponentName.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ComponentName.c; sourceTree = ""; }; + A58147E42538170800CF4451 /* PciBus.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PciBus.c; sourceTree = ""; }; + A58147E52538170800CF4451 /* PciPowerManagement.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PciPowerManagement.c; sourceTree = ""; }; + A58147E62538170800CF4451 /* PciResourceSupport.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PciResourceSupport.h; sourceTree = ""; }; + A58147E72538170800CF4451 /* PciDriverOverride.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PciDriverOverride.h; sourceTree = ""; }; + A58147E82538170800CF4451 /* PciEnumerator.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PciEnumerator.h; sourceTree = ""; }; + A58147E92538170800CF4451 /* PciCommand.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PciCommand.h; sourceTree = ""; }; + A58147EA2538170800CF4451 /* PciIo.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PciIo.h; sourceTree = ""; }; + A58147EB2538170800CF4451 /* PciDeviceSupport.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PciDeviceSupport.h; sourceTree = ""; }; + A58147EC2538170800CF4451 /* PciRomTable.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PciRomTable.c; sourceTree = ""; }; + A58147ED2538170800CF4451 /* PciBusDxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = PciBusDxe.inf; sourceTree = ""; }; + A58147EE2538170800CF4451 /* PciOptionRomSupport.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PciOptionRomSupport.c; sourceTree = ""; }; + A58147EF2538170800CF4451 /* PciHotPlugSupport.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PciHotPlugSupport.h; sourceTree = ""; }; + A58147F02538170800CF4451 /* PciPowerManagement.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PciPowerManagement.h; sourceTree = ""; }; + A58147F12538170800CF4451 /* PciBus.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PciBus.h; sourceTree = ""; }; + A58147F22538170800CF4451 /* ComponentName.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ComponentName.h; sourceTree = ""; }; + A58147F32538170800CF4451 /* PciBusDxe.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = PciBusDxe.uni; sourceTree = ""; }; + A58147F42538170800CF4451 /* PciEnumeratorSupport.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PciEnumeratorSupport.h; sourceTree = ""; }; + A58147F52538170800CF4451 /* PciLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PciLib.c; sourceTree = ""; }; + A58147F72538170800CF4451 /* XhciSched.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = XhciSched.h; sourceTree = ""; }; + A58147F82538170800CF4451 /* XhciPei.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = XhciPei.inf; sourceTree = ""; }; + A58147F92538170800CF4451 /* XhcPeim.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = XhcPeim.h; sourceTree = ""; }; + A58147FA2538170800CF4451 /* XhciPei.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = XhciPei.uni; sourceTree = ""; }; + A58147FB2538170800CF4451 /* UsbHcMem.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = UsbHcMem.h; sourceTree = ""; }; + A58147FC2538170800CF4451 /* XhciSched.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = XhciSched.c; sourceTree = ""; }; + A58147FD2538170800CF4451 /* DmaMem.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DmaMem.c; sourceTree = ""; }; + A58147FE2538170800CF4451 /* XhciPeiExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = XhciPeiExtra.uni; sourceTree = ""; }; + A58147FF2538170800CF4451 /* UsbHcMem.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = UsbHcMem.c; sourceTree = ""; }; + A58148002538170800CF4451 /* XhciReg.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = XhciReg.h; sourceTree = ""; }; + A58148012538170800CF4451 /* XhcPeim.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = XhcPeim.c; sourceTree = ""; }; + A58148032538170800CF4451 /* EhciPeiExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = EhciPeiExtra.uni; sourceTree = ""; }; + A58148042538170800CF4451 /* EhciUrb.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = EhciUrb.h; sourceTree = ""; }; + A58148052538170800CF4451 /* EhcPeim.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = EhcPeim.h; sourceTree = ""; }; + A58148062538170800CF4451 /* UsbHcMem.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = UsbHcMem.h; sourceTree = ""; }; + A58148072538170800CF4451 /* EhciSched.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = EhciSched.c; sourceTree = ""; }; + A58148082538170800CF4451 /* EhciPei.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = EhciPei.uni; sourceTree = ""; }; + A58148092538170800CF4451 /* EhciPei.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = EhciPei.inf; sourceTree = ""; }; + A581480A2538170800CF4451 /* DmaMem.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DmaMem.c; sourceTree = ""; }; + A581480B2538170800CF4451 /* EhciReg.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = EhciReg.h; sourceTree = ""; }; + A581480C2538170800CF4451 /* EhcPeim.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = EhcPeim.c; sourceTree = ""; }; + A581480D2538170800CF4451 /* EhciUrb.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = EhciUrb.c; sourceTree = ""; }; + A581480E2538170800CF4451 /* EhciSched.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = EhciSched.h; sourceTree = ""; }; + A581480F2538170800CF4451 /* UsbHcMem.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = UsbHcMem.c; sourceTree = ""; }; + A58148112538170800CF4451 /* UfsPciHcDxeExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = UfsPciHcDxeExtra.uni; sourceTree = ""; }; + A58148122538170800CF4451 /* ComponentName.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ComponentName.c; sourceTree = ""; }; + A58148132538170800CF4451 /* UfsPciHcDxe.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = UfsPciHcDxe.c; sourceTree = ""; }; + A58148142538170800CF4451 /* UfsPciHcDxe.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = UfsPciHcDxe.uni; sourceTree = ""; }; + A58148152538170800CF4451 /* UfsPciHcDxe.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = UfsPciHcDxe.h; sourceTree = ""; }; + A58148162538170800CF4451 /* UfsPciHcDxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = UfsPciHcDxe.inf; sourceTree = ""; }; + A58148182538170800CF4451 /* UhciSched.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = UhciSched.h; sourceTree = ""; }; + A58148192538170800CF4451 /* UhciReg.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = UhciReg.h; sourceTree = ""; }; + A581481A2538170800CF4451 /* UhciDebug.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = UhciDebug.c; sourceTree = ""; }; + A581481B2538170800CF4451 /* UhciQueue.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = UhciQueue.h; sourceTree = ""; }; + A581481C2538170800CF4451 /* Uhci.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Uhci.c; sourceTree = ""; }; + A581481D2538170800CF4451 /* UhciDxeExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = UhciDxeExtra.uni; sourceTree = ""; }; + A581481E2538170800CF4451 /* ComponentName.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ComponentName.c; sourceTree = ""; }; + A581481F2538170800CF4451 /* UsbHcMem.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = UsbHcMem.h; sourceTree = ""; }; + A58148202538170800CF4451 /* UhciSched.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = UhciSched.c; sourceTree = ""; }; + A58148212538170800CF4451 /* UhciDxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = UhciDxe.inf; sourceTree = ""; }; + A58148222538170800CF4451 /* UhciDebug.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = UhciDebug.h; sourceTree = ""; }; + A58148232538170800CF4451 /* UhciReg.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = UhciReg.c; sourceTree = ""; }; + A58148242538170800CF4451 /* UhciDxe.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = UhciDxe.uni; sourceTree = ""; }; + A58148252538170800CF4451 /* UhciQueue.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = UhciQueue.c; sourceTree = ""; }; + A58148262538170800CF4451 /* UsbHcMem.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = UsbHcMem.c; sourceTree = ""; }; + A58148272538170800CF4451 /* Uhci.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Uhci.h; sourceTree = ""; }; + A58148282538170800CF4451 /* ComponentName.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ComponentName.h; sourceTree = ""; }; + A581482A2538170800CF4451 /* DevicePath.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DevicePath.c; sourceTree = ""; }; + A581482B2538170800CF4451 /* NvmExpressPeiHci.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = NvmExpressPeiHci.h; sourceTree = ""; }; + A581482C2538170800CF4451 /* NvmExpressPeiStorageSecurity.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = NvmExpressPeiStorageSecurity.h; sourceTree = ""; }; + A581482D2538170800CF4451 /* NvmExpressPei.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = NvmExpressPei.c; sourceTree = ""; }; + A581482E2538170800CF4451 /* NvmExpressPeiBlockIo.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = NvmExpressPeiBlockIo.c; sourceTree = ""; }; + A581482F2538170800CF4451 /* NvmExpressPeiExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = NvmExpressPeiExtra.uni; sourceTree = ""; }; + A58148302538170800CF4451 /* NvmExpressPeiPassThru.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = NvmExpressPeiPassThru.h; sourceTree = ""; }; + A58148312538170800CF4451 /* NvmExpressPeiS3.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = NvmExpressPeiS3.c; sourceTree = ""; }; + A58148322538170800CF4451 /* NvmExpressPeiStorageSecurity.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = NvmExpressPeiStorageSecurity.c; sourceTree = ""; }; + A58148332538170800CF4451 /* NvmExpressPei.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = NvmExpressPei.h; sourceTree = ""; }; + A58148342538170800CF4451 /* NvmExpressPei.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = NvmExpressPei.inf; sourceTree = ""; }; + A58148352538170800CF4451 /* NvmExpressPeiHci.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = NvmExpressPeiHci.c; sourceTree = ""; }; + A58148362538170800CF4451 /* NvmExpressPei.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = NvmExpressPei.uni; sourceTree = ""; }; + A58148372538170800CF4451 /* NvmExpressPeiBlockIo.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = NvmExpressPeiBlockIo.h; sourceTree = ""; }; + A58148382538170800CF4451 /* DmaMem.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DmaMem.c; sourceTree = ""; }; + A58148392538170800CF4451 /* NvmExpressPeiPassThru.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = NvmExpressPeiPassThru.c; sourceTree = ""; }; + A581483B2538170800CF4451 /* SdMmcPciHcPei.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = SdMmcPciHcPei.inf; sourceTree = ""; }; + A581483C2538170800CF4451 /* SdMmcPciHcPei.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SdMmcPciHcPei.c; sourceTree = ""; }; + A581483D2538170800CF4451 /* SdMmcPciHcPei.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = SdMmcPciHcPei.uni; sourceTree = ""; }; + A581483E2538170800CF4451 /* SdMmcPciHcPeiExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = SdMmcPciHcPeiExtra.uni; sourceTree = ""; }; + A581483F2538170800CF4451 /* SdMmcPciHcPei.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SdMmcPciHcPei.h; sourceTree = ""; }; + A58148412538170800CF4451 /* SataController.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SataController.c; sourceTree = ""; }; + A58148422538170800CF4451 /* SataControllerDxe.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = SataControllerDxe.uni; sourceTree = ""; }; + A58148432538170800CF4451 /* SataControllerDxeExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = SataControllerDxeExtra.uni; sourceTree = ""; }; + A58148442538170800CF4451 /* ComponentName.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ComponentName.c; sourceTree = ""; }; + A58148452538170800CF4451 /* SataControllerDxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = SataControllerDxe.inf; sourceTree = ""; }; + A58148462538170800CF4451 /* SataController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SataController.h; sourceTree = ""; }; + A58148482538170800CF4451 /* PciSioSerialDxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = PciSioSerialDxe.inf; sourceTree = ""; }; + A58148492538170800CF4451 /* Serial.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Serial.c; sourceTree = ""; }; + A581484A2538170800CF4451 /* SerialIo.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SerialIo.c; sourceTree = ""; }; + A581484B2538170800CF4451 /* PciSioSerialDxe.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = PciSioSerialDxe.uni; sourceTree = ""; }; + A581484C2538170800CF4451 /* PciSioSerialDxeExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = PciSioSerialDxeExtra.uni; sourceTree = ""; }; + A581484D2538170800CF4451 /* ComponentName.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ComponentName.c; sourceTree = ""; }; + A581484E2538170800CF4451 /* Serial.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Serial.h; sourceTree = ""; }; + A58148502538170800CF4451 /* PciRootBridgeIo.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PciRootBridgeIo.c; sourceTree = ""; }; + A58148512538170800CF4451 /* PciHostResource.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PciHostResource.h; sourceTree = ""; }; + A58148522538170800CF4451 /* PciHostBridge.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PciHostBridge.h; sourceTree = ""; }; + A58148532538170800CF4451 /* PciRootBridge.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PciRootBridge.h; sourceTree = ""; }; + A58148542538170800CF4451 /* PciHostBridgeDxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = PciHostBridgeDxe.inf; sourceTree = ""; }; + A58148552538170800CF4451 /* PciHostBridge.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PciHostBridge.c; sourceTree = ""; }; + A58148572538170800CF4451 /* XhciDxeExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = XhciDxeExtra.uni; sourceTree = ""; }; + A58148582538170800CF4451 /* XhciSched.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = XhciSched.h; sourceTree = ""; }; + A58148592538170800CF4451 /* Xhci.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Xhci.c; sourceTree = ""; }; + A581485A2538170800CF4451 /* XhciReg.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = XhciReg.c; sourceTree = ""; }; + A581485B2538170800CF4451 /* ComponentName.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ComponentName.c; sourceTree = ""; }; + A581485C2538170800CF4451 /* UsbHcMem.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = UsbHcMem.h; sourceTree = ""; }; + A581485D2538170800CF4451 /* XhciSched.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = XhciSched.c; sourceTree = ""; }; + A581485E2538170800CF4451 /* XhciDxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = XhciDxe.inf; sourceTree = ""; }; + A581485F2538170800CF4451 /* XhciDxe.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = XhciDxe.uni; sourceTree = ""; }; + A58148602538170800CF4451 /* Xhci.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Xhci.h; sourceTree = ""; }; + A58148612538170800CF4451 /* UsbHcMem.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = UsbHcMem.c; sourceTree = ""; }; + A58148622538170800CF4451 /* ComponentName.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ComponentName.h; sourceTree = ""; }; + A58148632538170800CF4451 /* XhciReg.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = XhciReg.h; sourceTree = ""; }; + A58148652538170800CF4451 /* UhcPeim.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = UhcPeim.c; sourceTree = ""; }; + A58148662538170800CF4451 /* UhciPei.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = UhciPei.inf; sourceTree = ""; }; + A58148672538170800CF4451 /* UhciPei.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = UhciPei.uni; sourceTree = ""; }; + A58148682538170800CF4451 /* UhciPeiExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = UhciPeiExtra.uni; sourceTree = ""; }; + A58148692538170800CF4451 /* UhcPeim.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = UhcPeim.h; sourceTree = ""; }; + A581486A2538170800CF4451 /* DmaMem.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DmaMem.c; sourceTree = ""; }; + A581486C2538170800CF4451 /* NvmExpressHci.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = NvmExpressHci.c; sourceTree = ""; }; + A581486D2538170800CF4451 /* NvmExpressPassthru.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = NvmExpressPassthru.c; sourceTree = ""; }; + A581486E2538170800CF4451 /* NvmExpressBlockIo.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = NvmExpressBlockIo.c; sourceTree = ""; }; + A581486F2538170800CF4451 /* NvmExpressDxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = NvmExpressDxe.inf; sourceTree = ""; }; + A58148702538170800CF4451 /* NvmExpressDxe.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = NvmExpressDxe.uni; sourceTree = ""; }; + A58148712538170800CF4451 /* NvmExpress.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = NvmExpress.c; sourceTree = ""; }; + A58148722538170800CF4451 /* NvmExpressDiskInfo.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = NvmExpressDiskInfo.h; sourceTree = ""; }; + A58148732538170800CF4451 /* ComponentName.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ComponentName.c; sourceTree = ""; }; + A58148742538170800CF4451 /* NvmExpressBlockIo.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = NvmExpressBlockIo.h; sourceTree = ""; }; + A58148752538170800CF4451 /* NvmExpressHci.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = NvmExpressHci.h; sourceTree = ""; }; + A58148762538170800CF4451 /* NvmExpressDxeExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = NvmExpressDxeExtra.uni; sourceTree = ""; }; + A58148772538170800CF4451 /* NvmExpressDiskInfo.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = NvmExpressDiskInfo.c; sourceTree = ""; }; + A58148782538170800CF4451 /* NvmExpress.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = NvmExpress.h; sourceTree = ""; }; + A581487A2538170800CF4451 /* NonDiscoverablePciDeviceDxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = NonDiscoverablePciDeviceDxe.inf; sourceTree = ""; }; + A581487B2538170800CF4451 /* NonDiscoverablePciDeviceIo.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = NonDiscoverablePciDeviceIo.c; sourceTree = ""; }; + A581487C2538170800CF4451 /* ComponentName.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ComponentName.c; sourceTree = ""; }; + A581487D2538170800CF4451 /* NonDiscoverablePciDeviceDxe.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = NonDiscoverablePciDeviceDxe.c; sourceTree = ""; }; + A581487E2538170800CF4451 /* NonDiscoverablePciDeviceIo.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = NonDiscoverablePciDeviceIo.h; sourceTree = ""; }; + A58148802538170800CF4451 /* EhciReg.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = EhciReg.c; sourceTree = ""; }; + A58148812538170800CF4451 /* EhciUrb.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = EhciUrb.h; sourceTree = ""; }; + A58148822538170800CF4451 /* EhciDebug.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = EhciDebug.h; sourceTree = ""; }; + A58148832538170800CF4451 /* EhciDxe.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = EhciDxe.uni; sourceTree = ""; }; + A58148842538170800CF4451 /* Ehci.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Ehci.h; sourceTree = ""; }; + A58148852538170800CF4451 /* ComponentName.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ComponentName.c; sourceTree = ""; }; + A58148862538170800CF4451 /* EhciDxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = EhciDxe.inf; sourceTree = ""; }; + A58148872538170800CF4451 /* UsbHcMem.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = UsbHcMem.h; sourceTree = ""; }; + A58148882538170800CF4451 /* EhciSched.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = EhciSched.c; sourceTree = ""; }; + A58148892538170800CF4451 /* EhciDxeExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = EhciDxeExtra.uni; sourceTree = ""; }; + A581488A2538170800CF4451 /* Ehci.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Ehci.c; sourceTree = ""; }; + A581488B2538170800CF4451 /* EhciDebug.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = EhciDebug.c; sourceTree = ""; }; + A581488C2538170800CF4451 /* EhciReg.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = EhciReg.h; sourceTree = ""; }; + A581488D2538170800CF4451 /* EhciUrb.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = EhciUrb.c; sourceTree = ""; }; + A581488E2538170800CF4451 /* EhciSched.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = EhciSched.h; sourceTree = ""; }; + A581488F2538170800CF4451 /* UsbHcMem.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = UsbHcMem.c; sourceTree = ""; }; + A58148902538170800CF4451 /* ComponentName.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ComponentName.h; sourceTree = ""; }; + A58148922538170800CF4451 /* UfsPciHcPei.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = UfsPciHcPei.uni; sourceTree = ""; }; + A58148932538170800CF4451 /* UfsPciHcPei.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = UfsPciHcPei.inf; sourceTree = ""; }; + A58148942538170800CF4451 /* UfsPciHcPei.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = UfsPciHcPei.h; sourceTree = ""; }; + A58148952538170800CF4451 /* UfsPciHcPeiExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = UfsPciHcPeiExtra.uni; sourceTree = ""; }; + A58148962538170800CF4451 /* UfsPciHcPei.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = UfsPciHcPei.c; sourceTree = ""; }; + A58148992538170800CF4451 /* IsaBusDxeExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = IsaBusDxeExtra.uni; sourceTree = ""; }; + A581489A2538170800CF4451 /* ComponentName.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ComponentName.c; sourceTree = ""; }; + A581489B2538170800CF4451 /* IsaBusDxe.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = IsaBusDxe.h; sourceTree = ""; }; + A581489C2538170800CF4451 /* IsaBusDxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = IsaBusDxe.inf; sourceTree = ""; }; + A581489D2538170800CF4451 /* IsaBusDxe.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = IsaBusDxe.uni; sourceTree = ""; }; + A581489E2538170800CF4451 /* IsaBusDxe.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = IsaBusDxe.c; sourceTree = ""; }; + A581489F2538170800CF4451 /* ComponentName.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ComponentName.h; sourceTree = ""; }; + A58148A12538170800CF4451 /* Ps2KbdTextIn.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Ps2KbdTextIn.c; sourceTree = ""; }; + A58148A22538170800CF4451 /* Ps2KeyboardDxeExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = Ps2KeyboardDxeExtra.uni; sourceTree = ""; }; + A58148A32538170800CF4451 /* Ps2Keyboard.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Ps2Keyboard.c; sourceTree = ""; }; + A58148A42538170800CF4451 /* Ps2KbdCtrller.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Ps2KbdCtrller.c; sourceTree = ""; }; + A58148A52538170800CF4451 /* ComponentName.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ComponentName.c; sourceTree = ""; }; + A58148A62538170800CF4451 /* Ps2KeyboardDxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = Ps2KeyboardDxe.inf; sourceTree = ""; }; + A58148A72538170800CF4451 /* Ps2KeyboardDxe.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = Ps2KeyboardDxe.uni; sourceTree = ""; }; + A58148A82538170800CF4451 /* Ps2Keyboard.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Ps2Keyboard.h; sourceTree = ""; }; + A58148AA2538170800CF4451 /* Ps2Mouse.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Ps2Mouse.c; sourceTree = ""; }; + A58148AB2538170800CF4451 /* ComponentName.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ComponentName.c; sourceTree = ""; }; + A58148AC2538170800CF4451 /* CommPs2.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = CommPs2.h; sourceTree = ""; }; + A58148AD2538170800CF4451 /* Ps2Mouse.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Ps2Mouse.h; sourceTree = ""; }; + A58148AE2538170800CF4451 /* Ps2MouseDxeExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = Ps2MouseDxeExtra.uni; sourceTree = ""; }; + A58148AF2538170800CF4451 /* Ps2MouseDxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = Ps2MouseDxe.inf; sourceTree = ""; }; + A58148B02538170800CF4451 /* CommPs2.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = CommPs2.c; sourceTree = ""; }; + A58148B12538170800CF4451 /* Ps2MouseDxe.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = Ps2MouseDxe.uni; sourceTree = ""; }; + A58148B42538170800CF4451 /* ScsiDiskDxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = ScsiDiskDxe.inf; sourceTree = ""; }; + A58148B52538170800CF4451 /* ScsiDisk.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ScsiDisk.c; sourceTree = ""; }; + A58148B62538170800CF4451 /* ComponentName.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ComponentName.c; sourceTree = ""; }; + A58148B72538170800CF4451 /* ScsiDisk.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = ScsiDisk.uni; sourceTree = ""; }; + A58148B82538170800CF4451 /* ScsiDiskExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = ScsiDiskExtra.uni; sourceTree = ""; }; + A58148B92538170800CF4451 /* ScsiDisk.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ScsiDisk.h; sourceTree = ""; }; + A58148BB2538170800CF4451 /* ScsiBusExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = ScsiBusExtra.uni; sourceTree = ""; }; + A58148BC2538170800CF4451 /* ScsiBus.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ScsiBus.c; sourceTree = ""; }; + A58148BD2538170800CF4451 /* ComponentName.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ComponentName.c; sourceTree = ""; }; + A58148BE2538170800CF4451 /* ScsiBus.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = ScsiBus.uni; sourceTree = ""; }; + A58148BF2538170800CF4451 /* ScsiBusDxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = ScsiBusDxe.inf; sourceTree = ""; }; + A58148C02538170800CF4451 /* ScsiBus.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ScsiBus.h; sourceTree = ""; }; + A58148C32538170800CF4451 /* UfsBlockIoPei.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = UfsBlockIoPei.inf; sourceTree = ""; }; + A58148C42538170800CF4451 /* UfsHcMem.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = UfsHcMem.c; sourceTree = ""; }; + A58148C52538170800CF4451 /* UfsBlockIoPeiExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = UfsBlockIoPeiExtra.uni; sourceTree = ""; }; + A58148C62538170800CF4451 /* UfsHci.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = UfsHci.c; sourceTree = ""; }; + A58148C72538170800CF4451 /* UfsBlockIoPei.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = UfsBlockIoPei.uni; sourceTree = ""; }; + A58148C82538170800CF4451 /* UfsBlockIoPei.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = UfsBlockIoPei.c; sourceTree = ""; }; + A58148C92538170800CF4451 /* UfsHcMem.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = UfsHcMem.h; sourceTree = ""; }; + A58148CA2538170800CF4451 /* UfsHci.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = UfsHci.h; sourceTree = ""; }; + A58148CB2538170800CF4451 /* UfsBlockIoPei.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = UfsBlockIoPei.h; sourceTree = ""; }; + A58148CC2538170800CF4451 /* DmaMem.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DmaMem.c; sourceTree = ""; }; + A58148CE2538170800CF4451 /* UfsPassThru.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = UfsPassThru.uni; sourceTree = ""; }; + A58148CF2538170800CF4451 /* UfsPassThruHci.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = UfsPassThruHci.c; sourceTree = ""; }; + A58148D02538170800CF4451 /* UfsPassThru.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = UfsPassThru.h; sourceTree = ""; }; + A58148D12538170800CF4451 /* ComponentName.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ComponentName.c; sourceTree = ""; }; + A58148D22538170800CF4451 /* UfsDevConfigProtocol.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = UfsDevConfigProtocol.c; sourceTree = ""; }; + A58148D32538170800CF4451 /* UfsPassThruHci.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = UfsPassThruHci.h; sourceTree = ""; }; + A58148D42538170800CF4451 /* UfsPassThruDxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = UfsPassThruDxe.inf; sourceTree = ""; }; + A58148D52538170800CF4451 /* UfsPassThruExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = UfsPassThruExtra.uni; sourceTree = ""; }; + A58148D62538170800CF4451 /* UfsPassThru.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = UfsPassThru.c; sourceTree = ""; }; + A58148D92538170800CF4451 /* I2cBusDxeExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = I2cBusDxeExtra.uni; sourceTree = ""; }; + A58148DA2538170800CF4451 /* I2cDxeExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = I2cDxeExtra.uni; sourceTree = ""; }; + A58148DB2538170800CF4451 /* I2cDxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = I2cDxe.inf; sourceTree = ""; }; + A58148DC2538170800CF4451 /* I2cBus.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = I2cBus.c; sourceTree = ""; }; + A58148DD2538170800CF4451 /* I2cDxe.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = I2cDxe.h; sourceTree = ""; }; + A58148DE2538170800CF4451 /* I2cDxe.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = I2cDxe.uni; sourceTree = ""; }; + A58148DF2538170800CF4451 /* I2cHost.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = I2cHost.c; sourceTree = ""; }; + A58148E02538170800CF4451 /* I2cBusDxe.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = I2cBusDxe.uni; sourceTree = ""; }; + A58148E12538170800CF4451 /* I2cBusDxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = I2cBusDxe.inf; sourceTree = ""; }; + A58148E22538170800CF4451 /* I2cHostDxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = I2cHostDxe.inf; sourceTree = ""; }; + A58148E32538170800CF4451 /* I2cHostDxeExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = I2cHostDxeExtra.uni; sourceTree = ""; }; + A58148E42538170800CF4451 /* I2cDxe.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = I2cDxe.c; sourceTree = ""; }; + A58148E52538170800CF4451 /* I2cHostDxe.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = I2cHostDxe.uni; sourceTree = ""; }; + A58148E82538170800CF4451 /* UsbMouseDxeExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = UsbMouseDxeExtra.uni; sourceTree = ""; }; + A58148E92538170800CF4451 /* UsbMouse.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = UsbMouse.h; sourceTree = ""; }; + A58148EA2538170800CF4451 /* ComponentName.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ComponentName.c; sourceTree = ""; }; + A58148EB2538170800CF4451 /* UsbMouseDxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = UsbMouseDxe.inf; sourceTree = ""; }; + A58148EC2538170800CF4451 /* UsbMouse.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = UsbMouse.c; sourceTree = ""; }; + A58148ED2538170800CF4451 /* MouseHid.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = MouseHid.c; sourceTree = ""; }; + A58148EE2538170800CF4451 /* UsbMouseDxe.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = UsbMouseDxe.uni; sourceTree = ""; }; + A58148F02538170800CF4451 /* UsbMouseAbsolutePointerDxeExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = UsbMouseAbsolutePointerDxeExtra.uni; sourceTree = ""; }; + A58148F12538170800CF4451 /* UsbMouseAbsolutePointer.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = UsbMouseAbsolutePointer.c; sourceTree = ""; }; + A58148F22538170800CF4451 /* UsbMouseAbsolutePointerDxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = UsbMouseAbsolutePointerDxe.inf; sourceTree = ""; }; + A58148F32538170800CF4451 /* ComponentName.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ComponentName.c; sourceTree = ""; }; + A58148F42538170800CF4451 /* UsbMouseAbsolutePointerDxe.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = UsbMouseAbsolutePointerDxe.uni; sourceTree = ""; }; + A58148F52538170800CF4451 /* UsbMouseAbsolutePointer.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = UsbMouseAbsolutePointer.h; sourceTree = ""; }; + A58148F62538170800CF4451 /* MouseHid.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = MouseHid.c; sourceTree = ""; }; + A58148F82538170800CF4451 /* UsbEnumer.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = UsbEnumer.h; sourceTree = ""; }; + A58148F92538170800CF4451 /* UsbBusDxe.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = UsbBusDxe.uni; sourceTree = ""; }; + A58148FA2538170800CF4451 /* UsbDesc.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = UsbDesc.c; sourceTree = ""; }; + A58148FB2538170800CF4451 /* UsbBusDxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = UsbBusDxe.inf; sourceTree = ""; }; + A58148FC2538170800CF4451 /* UsbHub.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = UsbHub.h; sourceTree = ""; }; + A58148FD2538170800CF4451 /* UsbBus.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = UsbBus.c; sourceTree = ""; }; + A58148FE2538170800CF4451 /* ComponentName.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ComponentName.c; sourceTree = ""; }; + A58148FF2538170800CF4451 /* UsbUtility.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = UsbUtility.h; sourceTree = ""; }; + A58149002538170800CF4451 /* UsbEnumer.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = UsbEnumer.c; sourceTree = ""; }; + A58149012538170800CF4451 /* UsbBusDxeExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = UsbBusDxeExtra.uni; sourceTree = ""; }; + A58149022538170800CF4451 /* UsbDesc.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = UsbDesc.h; sourceTree = ""; }; + A58149032538170800CF4451 /* UsbHub.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = UsbHub.c; sourceTree = ""; }; + A58149042538170800CF4451 /* UsbUtility.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = UsbUtility.c; sourceTree = ""; }; + A58149052538170800CF4451 /* UsbBus.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = UsbBus.h; sourceTree = ""; }; + A58149072538170800CF4451 /* UsbKbDxeExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = UsbKbDxeExtra.uni; sourceTree = ""; }; + A58149082538170800CF4451 /* KeyBoard.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = KeyBoard.c; sourceTree = ""; }; + A58149092538170800CF4451 /* UsbKbDxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = UsbKbDxe.inf; sourceTree = ""; }; + A581490A2538170800CF4451 /* EfiKey.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = EfiKey.h; sourceTree = ""; }; + A581490B2538170800CF4451 /* UsbKbDxe.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = UsbKbDxe.uni; sourceTree = ""; }; + A581490C2538170900CF4451 /* ComponentName.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ComponentName.c; sourceTree = ""; }; + A581490D2538170900CF4451 /* KeyBoard.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = KeyBoard.h; sourceTree = ""; }; + A581490E2538170900CF4451 /* EfiKey.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = EfiKey.c; sourceTree = ""; }; + A58149102538170900CF4451 /* PeiUsbLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PeiUsbLib.c; sourceTree = ""; }; + A58149112538170900CF4451 /* HubPeim.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HubPeim.h; sourceTree = ""; }; + A58149122538170900CF4451 /* UsbBusPeiExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = UsbBusPeiExtra.uni; sourceTree = ""; }; + A58149132538170900CF4451 /* UsbPeim.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = UsbPeim.h; sourceTree = ""; }; + A58149142538170900CF4451 /* UsbIoPeim.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = UsbIoPeim.c; sourceTree = ""; }; + A58149152538170900CF4451 /* PeiUsbLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PeiUsbLib.h; sourceTree = ""; }; + A58149162538170900CF4451 /* HubPeim.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = HubPeim.c; sourceTree = ""; }; + A58149172538170900CF4451 /* UsbBusPei.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = UsbBusPei.uni; sourceTree = ""; }; + A58149182538170900CF4451 /* UsbPeim.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = UsbPeim.c; sourceTree = ""; }; + A58149192538170900CF4451 /* UsbBusPei.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = UsbBusPei.inf; sourceTree = ""; }; + A581491B2538170900CF4451 /* PeiUsbLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PeiUsbLib.c; sourceTree = ""; }; + A581491C2538170900CF4451 /* UsbBotPeiExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = UsbBotPeiExtra.uni; sourceTree = ""; }; + A581491D2538170900CF4451 /* UsbBotPeim.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = UsbBotPeim.h; sourceTree = ""; }; + A581491E2538170900CF4451 /* UsbPeim.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = UsbPeim.h; sourceTree = ""; }; + A581491F2538170900CF4451 /* BotPeim.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = BotPeim.c; sourceTree = ""; }; + A58149202538170900CF4451 /* UsbBotPei.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = UsbBotPei.inf; sourceTree = ""; }; + A58149212538170900CF4451 /* PeiUsbLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PeiUsbLib.h; sourceTree = ""; }; + A58149222538170900CF4451 /* PeiAtapi.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PeiAtapi.c; sourceTree = ""; }; + A58149232538170900CF4451 /* UsbBotPei.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = UsbBotPei.uni; sourceTree = ""; }; + A58149242538170900CF4451 /* UsbBotPeim.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = UsbBotPeim.c; sourceTree = ""; }; + A58149252538170900CF4451 /* BotPeim.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = BotPeim.h; sourceTree = ""; }; + A58149272538170900CF4451 /* UsbMassDiskInfo.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = UsbMassDiskInfo.c; sourceTree = ""; }; + A58149282538170900CF4451 /* UsbMassCbi.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = UsbMassCbi.h; sourceTree = ""; }; + A58149292538170900CF4451 /* UsbMassImpl.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = UsbMassImpl.h; sourceTree = ""; }; + A581492A2538170900CF4451 /* UsbMassBoot.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = UsbMassBoot.c; sourceTree = ""; }; + A581492B2538170900CF4451 /* UsbMassBot.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = UsbMassBot.h; sourceTree = ""; }; + A581492C2538170900CF4451 /* UsbMassStorageDxe.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = UsbMassStorageDxe.uni; sourceTree = ""; }; + A581492D2538170900CF4451 /* UsbMassStorageDxeExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = UsbMassStorageDxeExtra.uni; sourceTree = ""; }; + A581492E2538170900CF4451 /* UsbMassStorageDxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = UsbMassStorageDxe.inf; sourceTree = ""; }; + A581492F2538170900CF4451 /* ComponentName.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ComponentName.c; sourceTree = ""; }; + A58149302538170900CF4451 /* UsbMassCbi.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = UsbMassCbi.c; sourceTree = ""; }; + A58149312538170900CF4451 /* UsbMass.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = UsbMass.h; sourceTree = ""; }; + A58149322538170900CF4451 /* UsbMassImpl.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = UsbMassImpl.c; sourceTree = ""; }; + A58149332538170900CF4451 /* UsbMassDiskInfo.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = UsbMassDiskInfo.h; sourceTree = ""; }; + A58149342538170900CF4451 /* UsbMassBoot.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = UsbMassBoot.h; sourceTree = ""; }; + A58149352538170900CF4451 /* UsbMassBot.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = UsbMassBot.c; sourceTree = ""; }; + A58149382538170900CF4451 /* DevicePath.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DevicePath.c; sourceTree = ""; }; + A58149392538170900CF4451 /* AhciPei.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = AhciPei.inf; sourceTree = ""; }; + A581493A2538170900CF4451 /* AhciPei.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AhciPei.h; sourceTree = ""; }; + A581493B2538170900CF4451 /* AhciPeiBlockIo.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = AhciPeiBlockIo.c; sourceTree = ""; }; + A581493C2538170900CF4451 /* AhciPei.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = AhciPei.uni; sourceTree = ""; }; + A581493D2538170900CF4451 /* AhciPeiPassThru.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = AhciPeiPassThru.c; sourceTree = ""; }; + A581493E2538170900CF4451 /* AhciPeiExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = AhciPeiExtra.uni; sourceTree = ""; }; + A581493F2538170900CF4451 /* AhciPeiStorageSecurity.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = AhciPeiStorageSecurity.c; sourceTree = ""; }; + A58149402538170900CF4451 /* AhciPeiBlockIo.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AhciPeiBlockIo.h; sourceTree = ""; }; + A58149412538170900CF4451 /* AhciPei.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = AhciPei.c; sourceTree = ""; }; + A58149422538170900CF4451 /* AhciPeiPassThru.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AhciPeiPassThru.h; sourceTree = ""; }; + A58149432538170900CF4451 /* DmaMem.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DmaMem.c; sourceTree = ""; }; + A58149442538170900CF4451 /* AhciPeiStorageSecurity.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AhciPeiStorageSecurity.h; sourceTree = ""; }; + A58149452538170900CF4451 /* AhciMode.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = AhciMode.c; sourceTree = ""; }; + A58149462538170900CF4451 /* AhciPeiS3.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = AhciPeiS3.c; sourceTree = ""; }; + A58149482538170900CF4451 /* AtaAtapiPassThru.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AtaAtapiPassThru.h; sourceTree = ""; }; + A58149492538170900CF4451 /* AhciMode.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AhciMode.h; sourceTree = ""; }; + A581494A2538170900CF4451 /* ComponentName.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ComponentName.c; sourceTree = ""; }; + A581494B2538170900CF4451 /* AtaAtapiPassThru.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = AtaAtapiPassThru.inf; sourceTree = ""; }; + A581494C2538170900CF4451 /* IdeMode.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = IdeMode.c; sourceTree = ""; }; + A581494D2538170900CF4451 /* AtaAtapiPassThruDxeExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = AtaAtapiPassThruDxeExtra.uni; sourceTree = ""; }; + A581494E2538170900CF4451 /* AtaAtapiPassThru.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = AtaAtapiPassThru.c; sourceTree = ""; }; + A581494F2538170900CF4451 /* AtaAtapiPassThruDxe.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = AtaAtapiPassThruDxe.uni; sourceTree = ""; }; + A58149502538170900CF4451 /* IdeMode.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = IdeMode.h; sourceTree = ""; }; + A58149512538170900CF4451 /* AhciMode.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = AhciMode.c; sourceTree = ""; }; + A58149532538170900CF4451 /* AtaBusDxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = AtaBusDxe.inf; sourceTree = ""; }; + A58149542538170900CF4451 /* AtaPassThruExecute.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = AtaPassThruExecute.c; sourceTree = ""; }; + A58149552538170900CF4451 /* AtaBusDxe.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = AtaBusDxe.uni; sourceTree = ""; }; + A58149562538170900CF4451 /* ComponentName.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ComponentName.c; sourceTree = ""; }; + A58149572538170900CF4451 /* AtaBus.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AtaBus.h; sourceTree = ""; }; + A58149582538170900CF4451 /* AtaBusDxeExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = AtaBusDxeExtra.uni; sourceTree = ""; }; + A58149592538170900CF4451 /* AtaBus.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = AtaBus.c; sourceTree = ""; }; + A581495C2538170900CF4451 /* DxeCapsuleRuntime.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DxeCapsuleRuntime.c; sourceTree = ""; }; + A581495D2538170900CF4451 /* CapsuleOnDisk.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = CapsuleOnDisk.c; sourceTree = ""; }; + A581495E2538170900CF4451 /* DxeCapsuleProcessLibNull.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DxeCapsuleProcessLibNull.c; sourceTree = ""; }; + A581495F2538170900CF4451 /* DxeCapsuleReportLibNull.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DxeCapsuleReportLibNull.c; sourceTree = ""; }; + A58149602538170900CF4451 /* DxeCapsuleProcessLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DxeCapsuleProcessLib.c; sourceTree = ""; }; + A58149612538170900CF4451 /* DxeCapsuleReportLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DxeCapsuleReportLib.c; sourceTree = ""; }; + A58149622538170900CF4451 /* CapsuleOnDisk.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = CapsuleOnDisk.h; sourceTree = ""; }; + A58149632538170900CF4451 /* DxeRuntimeCapsuleLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = DxeRuntimeCapsuleLib.inf; sourceTree = ""; }; + A58149642538170900CF4451 /* DxeCapsuleLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = DxeCapsuleLib.uni; sourceTree = ""; }; + A58149652538170900CF4451 /* DxeCapsuleLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DxeCapsuleLib.c; sourceTree = ""; }; + A58149662538170900CF4451 /* DxeRuntimeCapsuleLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = DxeRuntimeCapsuleLib.uni; sourceTree = ""; }; + A58149672538170900CF4451 /* DxeCapsuleLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = DxeCapsuleLib.inf; sourceTree = ""; }; + A58149692538170900CF4451 /* SmmIpmiLibSmmIpmiProtocol.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SmmIpmiLibSmmIpmiProtocol.c; sourceTree = ""; }; + A581496A2538170900CF4451 /* SmmIpmiLibSmmIpmiProtocol.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = SmmIpmiLibSmmIpmiProtocol.inf; sourceTree = ""; }; + A581496B2538170900CF4451 /* SmmIpmiLibSmmIpmiProtocol.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = SmmIpmiLibSmmIpmiProtocol.uni; sourceTree = ""; }; + A581496D2538170900CF4451 /* OemHookStatusCodeLibNull.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = OemHookStatusCodeLibNull.inf; sourceTree = ""; }; + A581496E2538170900CF4451 /* OemHookStatusCodeLibNull.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = OemHookStatusCodeLibNull.c; sourceTree = ""; }; + A581496F2538170900CF4451 /* OemHookStatusCodeLibNull.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = OemHookStatusCodeLibNull.uni; sourceTree = ""; }; + A58149712538170900CF4451 /* DxeCrc32GuidedSectionExtractLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DxeCrc32GuidedSectionExtractLib.c; sourceTree = ""; }; + A58149722538170900CF4451 /* DxeCrc32GuidedSectionExtractLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = DxeCrc32GuidedSectionExtractLib.inf; sourceTree = ""; }; + A58149732538170900CF4451 /* DxeCrc32GuidedSectionExtractLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = DxeCrc32GuidedSectionExtractLib.uni; sourceTree = ""; }; + A58149752538170900CF4451 /* BootLogoLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = BootLogoLib.c; sourceTree = ""; }; + A58149762538170900CF4451 /* BootLogoLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = BootLogoLib.inf; sourceTree = ""; }; + A58149772538170900CF4451 /* BootLogoLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = BootLogoLib.uni; sourceTree = ""; }; + A58149792538170900CF4451 /* LockBoxNullLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = LockBoxNullLib.inf; sourceTree = ""; }; + A581497A2538170900CF4451 /* LockBoxNullLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = LockBoxNullLib.c; sourceTree = ""; }; + A581497B2538170900CF4451 /* LockBoxNullLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = LockBoxNullLib.uni; sourceTree = ""; }; + A581497D2538170900CF4451 /* FmpAuthenticationLibNull.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = FmpAuthenticationLibNull.c; sourceTree = ""; }; + A581497E2538170900CF4451 /* FmpAuthenticationLibNull.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = FmpAuthenticationLibNull.inf; sourceTree = ""; }; + A581497F2538170900CF4451 /* FmpAuthenticationLibNull.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = FmpAuthenticationLibNull.uni; sourceTree = ""; }; + A58149812538170900CF4451 /* PlatVarCleanup.vfr */ = {isa = PBXFileReference; lastKnownFileType = text; path = PlatVarCleanup.vfr; sourceTree = ""; }; + A58149822538170900CF4451 /* PlatVarCleanupLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PlatVarCleanupLib.c; sourceTree = ""; }; + A58149832538170900CF4451 /* PlatVarCleanup.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PlatVarCleanup.h; sourceTree = ""; }; + A58149842538170900CF4451 /* PlatformVarCleanupLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = PlatformVarCleanupLib.inf; sourceTree = ""; }; + A58149852538170900CF4451 /* PlatVarCleanupHii.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PlatVarCleanupHii.h; sourceTree = ""; }; + A58149862538170900CF4451 /* VfrStrings.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = VfrStrings.uni; sourceTree = ""; }; + A58149872538170900CF4451 /* PlatformVarCleanupLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = PlatformVarCleanupLib.uni; sourceTree = ""; }; + A58149892538170900CF4451 /* PeiIpmiLibIpmiPpi.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PeiIpmiLibIpmiPpi.c; sourceTree = ""; }; + A581498A2538170900CF4451 /* PeiIpmiLibIpmiPpi.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = PeiIpmiLibIpmiPpi.inf; sourceTree = ""; }; + A581498B2538170900CF4451 /* PeiIpmiLibIpmiPpi.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = PeiIpmiLibIpmiPpi.uni; sourceTree = ""; }; + A581498D2538170900CF4451 /* LzmaArchCustomDecompressLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = LzmaArchCustomDecompressLib.inf; sourceTree = ""; }; + A581498E2538170900CF4451 /* F86GuidedSectionExtraction.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = F86GuidedSectionExtraction.c; sourceTree = ""; }; + A581498F2538170900CF4451 /* LzmaCustomDecompressLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = LzmaCustomDecompressLib.inf; sourceTree = ""; }; + A58149922538170900CF4451 /* lzma-sdk.txt */ = {isa = PBXFileReference; lastKnownFileType = text; path = "lzma-sdk.txt"; sourceTree = ""; }; + A58149932538170900CF4451 /* lzma-history.txt */ = {isa = PBXFileReference; lastKnownFileType = text; path = "lzma-history.txt"; sourceTree = ""; }; + A58149952538170900CF4451 /* LzHash.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = LzHash.h; sourceTree = ""; }; + A58149962538170900CF4451 /* 7zTypes.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = 7zTypes.h; sourceTree = ""; }; + A58149972538170900CF4451 /* Compiler.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Compiler.h; sourceTree = ""; }; + A58149982538170900CF4451 /* LzFind.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = LzFind.c; sourceTree = ""; }; + A58149992538170900CF4451 /* Precomp.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Precomp.h; sourceTree = ""; }; + A581499A2538170900CF4451 /* CpuArch.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = CpuArch.h; sourceTree = ""; }; + A581499B2538170900CF4451 /* Bra86.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Bra86.c; sourceTree = ""; }; + A581499C2538170900CF4451 /* LzmaDec.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = LzmaDec.c; sourceTree = ""; }; + A581499D2538170900CF4451 /* LzFind.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = LzFind.h; sourceTree = ""; }; + A581499E2538170900CF4451 /* 7zVersion.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = 7zVersion.h; sourceTree = ""; }; + A581499F2538170900CF4451 /* Bra.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Bra.h; sourceTree = ""; }; + A58149A02538170900CF4451 /* LzmaDec.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = LzmaDec.h; sourceTree = ""; }; + A58149A12538170900CF4451 /* LzmaDecompressLibInternal.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = LzmaDecompressLibInternal.h; sourceTree = ""; }; + A58149A22538170900CF4451 /* LZMA-SDK-README.txt */ = {isa = PBXFileReference; lastKnownFileType = text; path = "LZMA-SDK-README.txt"; sourceTree = ""; }; + A58149A32538170900CF4451 /* LzmaArchDecompressLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = LzmaArchDecompressLib.uni; sourceTree = ""; }; + A58149A42538170900CF4451 /* LzmaDecompress.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = LzmaDecompress.c; sourceTree = ""; }; + A58149A52538170900CF4451 /* LzmaDecompressLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = LzmaDecompressLib.uni; sourceTree = ""; }; + A58149A62538170900CF4451 /* GuidedSectionExtraction.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = GuidedSectionExtraction.c; sourceTree = ""; }; + A58149A72538170900CF4451 /* UefiLzma.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = UefiLzma.h; sourceTree = ""; }; + A58149A92538170900CF4451 /* DeviceManagerUiLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = DeviceManagerUiLib.uni; sourceTree = ""; }; + A58149AA2538170900CF4451 /* DeviceManagerStrings.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = DeviceManagerStrings.uni; sourceTree = ""; }; + A58149AB2538170900CF4451 /* DeviceManagerUiLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = DeviceManagerUiLib.inf; sourceTree = ""; }; + A58149AC2538170900CF4451 /* DeviceManager.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DeviceManager.h; sourceTree = ""; }; + A58149AD2538170900CF4451 /* DeviceManagerVfr.Vfr */ = {isa = PBXFileReference; lastKnownFileType = text; path = DeviceManagerVfr.Vfr; sourceTree = ""; }; + A58149AE2538170900CF4451 /* DeviceManager.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DeviceManager.c; sourceTree = ""; }; + A58149B02538170900CF4451 /* BaseIpmiLibNull.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = BaseIpmiLibNull.c; sourceTree = ""; }; + A58149B12538170900CF4451 /* BaseIpmiLibNull.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = BaseIpmiLibNull.inf; sourceTree = ""; }; + A58149B22538170900CF4451 /* BaseIpmiLibNull.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = BaseIpmiLibNull.uni; sourceTree = ""; }; + A58149B42538170900CF4451 /* PeiCrc32GuidedSectionExtractLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = PeiCrc32GuidedSectionExtractLib.uni; sourceTree = ""; }; + A58149B52538170900CF4451 /* PeiCrc32GuidedSectionExtractLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = PeiCrc32GuidedSectionExtractLib.inf; sourceTree = ""; }; + A58149B62538170900CF4451 /* PeiCrc32GuidedSectionExtractLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PeiCrc32GuidedSectionExtractLib.c; sourceTree = ""; }; + A58149B82538170900CF4451 /* BmConnect.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = BmConnect.c; sourceTree = ""; }; + A58149B92538170900CF4451 /* BmConsole.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = BmConsole.c; sourceTree = ""; }; + A58149BA2538170900CF4451 /* BmHotkey.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = BmHotkey.c; sourceTree = ""; }; + A58149BB2538170900CF4451 /* InternalBm.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = InternalBm.h; sourceTree = ""; }; + A58149BC2538170900CF4451 /* UefiBootManagerLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = UefiBootManagerLib.inf; sourceTree = ""; }; + A58149BD2538170900CF4451 /* BmLoadOption.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = BmLoadOption.c; sourceTree = ""; }; + A58149BE2538170900CF4451 /* BmBootDescription.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = BmBootDescription.c; sourceTree = ""; }; + A58149BF2538170900CF4451 /* UefiBootManagerLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = UefiBootManagerLib.uni; sourceTree = ""; }; + A58149C02538170900CF4451 /* BmDriverHealth.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = BmDriverHealth.c; sourceTree = ""; }; + A58149C12538170900CF4451 /* BmBoot.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = BmBoot.c; sourceTree = ""; }; + A58149C22538170900CF4451 /* BmMisc.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = BmMisc.c; sourceTree = ""; }; + A58149C42538170900CF4451 /* DxeNetLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = DxeNetLib.inf; sourceTree = ""; }; + A58149C52538170900CF4451 /* DxeNetLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = DxeNetLib.uni; sourceTree = ""; }; + A58149C62538170900CF4451 /* NetBuffer.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = NetBuffer.c; sourceTree = ""; }; + A58149C72538170900CF4451 /* DxeNetLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DxeNetLib.c; sourceTree = ""; }; + A58149C92538170900CF4451 /* FileExplorer.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = FileExplorer.h; sourceTree = ""; }; + A58149CA2538170900CF4451 /* FileExplorerString.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = FileExplorerString.uni; sourceTree = ""; }; + A58149CB2538170900CF4451 /* FormGuid.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = FormGuid.h; sourceTree = ""; }; + A58149CC2538170900CF4451 /* FileExplorer.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = FileExplorer.c; sourceTree = ""; }; + A58149CD2538170900CF4451 /* FileExplorerVfr.vfr */ = {isa = PBXFileReference; lastKnownFileType = text; path = FileExplorerVfr.vfr; sourceTree = ""; }; + A58149CE2538170900CF4451 /* FileExplorerLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = FileExplorerLib.inf; sourceTree = ""; }; + A58149CF2538170900CF4451 /* FileExplorerLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = FileExplorerLib.uni; sourceTree = ""; }; + A58149D12538170900CF4451 /* DxeIpmiLibIpmiProtocol.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = DxeIpmiLibIpmiProtocol.uni; sourceTree = ""; }; + A58149D22538170900CF4451 /* DxeIpmiLibIpmiProtocol.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = DxeIpmiLibIpmiProtocol.inf; sourceTree = ""; }; + A58149D32538170900CF4451 /* DxeIpmiLibIpmiProtocol.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DxeIpmiLibIpmiProtocol.c; sourceTree = ""; }; + A58149D52538170900CF4451 /* VarCheckLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = VarCheckLib.c; sourceTree = ""; }; + A58149D62538170900CF4451 /* VarCheckLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = VarCheckLib.inf; sourceTree = ""; }; + A58149D72538170900CF4451 /* VarCheckLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = VarCheckLib.uni; sourceTree = ""; }; + A58149D92538170900CF4451 /* DisplayUpdateProgressLibGraphics.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = DisplayUpdateProgressLibGraphics.uni; sourceTree = ""; }; + A58149DA2538170900CF4451 /* DisplayUpdateProgressLibGraphics.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = DisplayUpdateProgressLibGraphics.inf; sourceTree = ""; }; + A58149DB2538170900CF4451 /* DisplayUpdateProgressLibGraphics.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DisplayUpdateProgressLibGraphics.c; sourceTree = ""; }; + A58149DD2538170900CF4451 /* AuthVariableLibNull.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = AuthVariableLibNull.uni; sourceTree = ""; }; + A58149DE2538170900CF4451 /* AuthVariableLibNull.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = AuthVariableLibNull.inf; sourceTree = ""; }; + A58149DF2538170900CF4451 /* AuthVariableLibNull.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = AuthVariableLibNull.c; sourceTree = ""; }; + A58149E12538170900CF4451 /* SmmReportStatusCodeLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = SmmReportStatusCodeLib.uni; sourceTree = ""; }; + A58149E22538170900CF4451 /* ReportStatusCodeLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ReportStatusCodeLib.c; sourceTree = ""; }; + A58149E32538170900CF4451 /* SmmReportStatusCodeLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = SmmReportStatusCodeLib.inf; sourceTree = ""; }; + A58149E52538170900CF4451 /* PeiReportStatusCodeLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = PeiReportStatusCodeLib.uni; sourceTree = ""; }; + A58149E62538170900CF4451 /* PeiReportStatusCodeLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = PeiReportStatusCodeLib.inf; sourceTree = ""; }; + A58149E72538170900CF4451 /* ReportStatusCodeLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ReportStatusCodeLib.c; sourceTree = ""; }; + A58149E92538170900CF4451 /* PeiPerformanceLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = PeiPerformanceLib.uni; sourceTree = ""; }; + A58149EA2538170900CF4451 /* PeiPerformanceLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PeiPerformanceLib.c; sourceTree = ""; }; + A58149EB2538170900CF4451 /* PeiPerformanceLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = PeiPerformanceLib.inf; sourceTree = ""; }; + A58149ED2538170900CF4451 /* SmmLockBoxSmmLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SmmLockBoxSmmLib.c; sourceTree = ""; }; + A58149EE2538170900CF4451 /* SmmLockBoxPeiLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = SmmLockBoxPeiLib.uni; sourceTree = ""; }; + A58149EF2538170900CF4451 /* SmmLockBoxDxeLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = SmmLockBoxDxeLib.uni; sourceTree = ""; }; + A58149F02538170900CF4451 /* SmmLockBoxPeiLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = SmmLockBoxPeiLib.inf; sourceTree = ""; }; + A58149F12538170900CF4451 /* SmmLockBoxDxeLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = SmmLockBoxDxeLib.inf; sourceTree = ""; }; + A58149F22538170900CF4451 /* SmmLockBoxSmmLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = SmmLockBoxSmmLib.inf; sourceTree = ""; }; + A58149F32538170900CF4451 /* SmmLockBoxSmmLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = SmmLockBoxSmmLib.uni; sourceTree = ""; }; + A58149F42538170900CF4451 /* SmmLockBoxPeiLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SmmLockBoxPeiLib.c; sourceTree = ""; }; + A58149F52538170900CF4451 /* SmmLockBoxLibPrivate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SmmLockBoxLibPrivate.h; sourceTree = ""; }; + A58149F62538170900CF4451 /* SmmLockBoxDxeLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SmmLockBoxDxeLib.c; sourceTree = ""; }; + A58149F82538170900CF4451 /* DxePerformanceLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DxePerformanceLib.c; sourceTree = ""; }; + A58149F92538170900CF4451 /* DxePerformanceLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = DxePerformanceLib.uni; sourceTree = ""; }; + A58149FA2538170900CF4451 /* DxePerformanceLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = DxePerformanceLib.inf; sourceTree = ""; }; + A58149FC2538170900CF4451 /* SmmMemoryAllocationProfileLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = SmmMemoryAllocationProfileLib.uni; sourceTree = ""; }; + A58149FD2538170900CF4451 /* MemoryAllocationLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = MemoryAllocationLib.c; sourceTree = ""; }; + A58149FE2538170900CF4451 /* SmmMemoryAllocationProfileLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = SmmMemoryAllocationProfileLib.inf; sourceTree = ""; }; + A58149FF2538170900CF4451 /* SmmMemoryProfileLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SmmMemoryProfileLib.c; sourceTree = ""; }; + A5814A012538170900CF4451 /* PlatformBootManager.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PlatformBootManager.c; sourceTree = ""; }; + A5814A022538170900CF4451 /* PlatformBootManagerLibNull.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = PlatformBootManagerLibNull.inf; sourceTree = ""; }; + A5814A032538170900CF4451 /* PlatformBootManagerLibNull.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = PlatformBootManagerLibNull.uni; sourceTree = ""; }; + A5814A052538170900CF4451 /* DxeFileExplorerProtocol.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = DxeFileExplorerProtocol.inf; sourceTree = ""; }; + A5814A062538170900CF4451 /* DxeFileExplorerProtocol.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = DxeFileExplorerProtocol.uni; sourceTree = ""; }; + A5814A072538170900CF4451 /* DxeFileExplorerProtocol.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DxeFileExplorerProtocol.c; sourceTree = ""; }; + A5814A092538170900CF4451 /* InternalBootScriptLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = InternalBootScriptLib.h; sourceTree = ""; }; + A5814A0A2538170900CF4451 /* BootScriptInternalFormat.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = BootScriptInternalFormat.h; sourceTree = ""; }; + A5814A0B2538170900CF4451 /* BootScriptSave.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = BootScriptSave.c; sourceTree = ""; }; + A5814A0C2538170900CF4451 /* BootScriptExecute.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = BootScriptExecute.c; sourceTree = ""; }; + A5814A0D2538170900CF4451 /* DxeS3BootScriptLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = DxeS3BootScriptLib.inf; sourceTree = ""; }; + A5814A0E2538170900CF4451 /* DxeS3BootScriptLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = DxeS3BootScriptLib.uni; sourceTree = ""; }; + A5814A102538170900CF4451 /* DxeHttpLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DxeHttpLib.c; sourceTree = ""; }; + A5814A112538170900CF4451 /* DxeHttpLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = DxeHttpLib.inf; sourceTree = ""; }; + A5814A122538170900CF4451 /* DxeHttpLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = DxeHttpLib.uni; sourceTree = ""; }; + A5814A132538170900CF4451 /* DxeHttpLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DxeHttpLib.h; sourceTree = ""; }; + A5814A152538170900CF4451 /* BasePlatformHookLibNull.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = BasePlatformHookLibNull.inf; sourceTree = ""; }; + A5814A162538170900CF4451 /* BasePlatformHookLibNull.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = BasePlatformHookLibNull.uni; sourceTree = ""; }; + A5814A172538170900CF4451 /* BasePlatformHookLibNull.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = BasePlatformHookLibNull.c; sourceTree = ""; }; + A5814A192538170900CF4451 /* BaseResetSystemLibNull.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = BaseResetSystemLibNull.uni; sourceTree = ""; }; + A5814A1A2538170900CF4451 /* BaseResetSystemLibNull.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = BaseResetSystemLibNull.inf; sourceTree = ""; }; + A5814A1B2538170900CF4451 /* BaseResetSystemLibNull.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = BaseResetSystemLibNull.c; sourceTree = ""; }; + A5814A1D2538170900CF4451 /* NonDiscoverableDeviceRegistrationLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = NonDiscoverableDeviceRegistrationLib.c; sourceTree = ""; }; + A5814A1E2538170900CF4451 /* NonDiscoverableDeviceRegistrationLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = NonDiscoverableDeviceRegistrationLib.inf; sourceTree = ""; }; + A5814A202538170900CF4451 /* FrameBufferBltLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = FrameBufferBltLib.c; sourceTree = ""; }; + A5814A212538170900CF4451 /* FrameBufferBltLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = FrameBufferBltLib.inf; sourceTree = ""; }; + A5814A232538170900CF4451 /* PciHostBridgeLibNull.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = PciHostBridgeLibNull.uni; sourceTree = ""; }; + A5814A242538170900CF4451 /* PciHostBridgeLibNull.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = PciHostBridgeLibNull.inf; sourceTree = ""; }; + A5814A252538170900CF4451 /* PciHostBridgeLibNull.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PciHostBridgeLibNull.c; sourceTree = ""; }; + A5814A272538170900CF4451 /* PeiDxeDebugLibReportStatusCode.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = PeiDxeDebugLibReportStatusCode.uni; sourceTree = ""; }; + A5814A282538170900CF4451 /* DebugLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DebugLib.c; sourceTree = ""; }; + A5814A292538170900CF4451 /* PeiDxeDebugLibReportStatusCode.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = PeiDxeDebugLibReportStatusCode.inf; sourceTree = ""; }; + A5814A2B2538170900CF4451 /* TpmMeasurementLibNull.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = TpmMeasurementLibNull.uni; sourceTree = ""; }; + A5814A2C2538170900CF4451 /* TpmMeasurementLibNull.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = TpmMeasurementLibNull.c; sourceTree = ""; }; + A5814A2D2538170900CF4451 /* TpmMeasurementLibNull.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = TpmMeasurementLibNull.inf; sourceTree = ""; }; + A5814A2F2538170900CF4451 /* PeiDebugPrintHobLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = PeiDebugPrintHobLib.uni; sourceTree = ""; }; + A5814A302538170900CF4451 /* PeiDebugPrintHobLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PeiDebugPrintHobLib.c; sourceTree = ""; }; + A5814A312538170900CF4451 /* PeiDebugPrintHobLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = PeiDebugPrintHobLib.inf; sourceTree = ""; }; + A5814A332538170900CF4451 /* RuntimeDxeReportStatusCodeLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = RuntimeDxeReportStatusCodeLib.inf; sourceTree = ""; }; + A5814A342538170900CF4451 /* RuntimeDxeReportStatusCodeLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = RuntimeDxeReportStatusCodeLib.uni; sourceTree = ""; }; + A5814A352538170900CF4451 /* ReportStatusCodeLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ReportStatusCodeLib.c; sourceTree = ""; }; + A5814A372538170900CF4451 /* UefiSortLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = UefiSortLib.inf; sourceTree = ""; }; + A5814A382538170900CF4451 /* UefiSortLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = UefiSortLib.c; sourceTree = ""; }; + A5814A392538170900CF4451 /* UefiSortLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = UefiSortLib.uni; sourceTree = ""; }; + A5814A3B2538170900CF4451 /* VarCheckHiiGen.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = VarCheckHiiGen.c; sourceTree = ""; }; + A5814A3C2538170900CF4451 /* VarCheckHii.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = VarCheckHii.h; sourceTree = ""; }; + A5814A3D2538170900CF4451 /* VarCheckHiiLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = VarCheckHiiLib.uni; sourceTree = ""; }; + A5814A3E2538170900CF4451 /* VarCheckHiiGenFromFv.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = VarCheckHiiGenFromFv.c; sourceTree = ""; }; + A5814A3F2538170900CF4451 /* VarCheckHiiLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = VarCheckHiiLib.inf; sourceTree = ""; }; + A5814A402538170900CF4451 /* InternalVarCheckStructure.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = InternalVarCheckStructure.h; sourceTree = ""; }; + A5814A412538170900CF4451 /* VarCheckHiiGenFromHii.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = VarCheckHiiGenFromHii.c; sourceTree = ""; }; + A5814A422538170900CF4451 /* VarCheckHiiLibNullClass.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = VarCheckHiiLibNullClass.c; sourceTree = ""; }; + A5814A432538170900CF4451 /* VarCheckHiiGen.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = VarCheckHiiGen.h; sourceTree = ""; }; + A5814A452538170900CF4451 /* BaseMemoryAllocationLibNull.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = BaseMemoryAllocationLibNull.c; sourceTree = ""; }; + A5814A462538170900CF4451 /* BaseMemoryAllocationLibNull.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = BaseMemoryAllocationLibNull.inf; sourceTree = ""; }; + A5814A472538170900CF4451 /* BaseMemoryAllocationLibNull.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = BaseMemoryAllocationLibNull.uni; sourceTree = ""; }; + A5814A492538170900CF4451 /* DisplayUpdateProgressLibText.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DisplayUpdateProgressLibText.c; sourceTree = ""; }; + A5814A4A2538170900CF4451 /* DisplayUpdateProgressLibText.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = DisplayUpdateProgressLibText.inf; sourceTree = ""; }; + A5814A4B2538170900CF4451 /* DisplayUpdateProgressLibText.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = DisplayUpdateProgressLibText.uni; sourceTree = ""; }; + A5814A4D2538170900CF4451 /* CustomizedDisplayLibModStrs.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = CustomizedDisplayLibModStrs.uni; sourceTree = ""; }; + A5814A4E2538170900CF4451 /* Colors.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Colors.h; sourceTree = ""; }; + A5814A4F2538170900CF4451 /* CustomizedDisplayLibInternal.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = CustomizedDisplayLibInternal.h; sourceTree = ""; }; + A5814A502538170900CF4451 /* CustomizedDisplayLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = CustomizedDisplayLib.inf; sourceTree = ""; }; + A5814A512538170900CF4451 /* CustomizedDisplayLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = CustomizedDisplayLib.uni; sourceTree = ""; }; + A5814A522538170900CF4451 /* CustomizedDisplayLibInternal.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = CustomizedDisplayLibInternal.c; sourceTree = ""; }; + A5814A532538170900CF4451 /* CustomizedDisplayLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = CustomizedDisplayLib.c; sourceTree = ""; }; + A5814A552538170900CF4451 /* SmmCorePlatformHookLibNull.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = SmmCorePlatformHookLibNull.inf; sourceTree = ""; }; + A5814A562538170900CF4451 /* SmmCorePlatformHookLibNull.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = SmmCorePlatformHookLibNull.uni; sourceTree = ""; }; + A5814A572538170900CF4451 /* SmmCorePlatformHookLibNull.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SmmCorePlatformHookLibNull.c; sourceTree = ""; }; + A5814A592538170900CF4451 /* DebugAgentLibNull.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = DebugAgentLibNull.uni; sourceTree = ""; }; + A5814A5A2538170900CF4451 /* DebugAgentLibNull.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = DebugAgentLibNull.inf; sourceTree = ""; }; + A5814A5B2538170900CF4451 /* DebugAgentLibNull.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DebugAgentLibNull.c; sourceTree = ""; }; + A5814A5D2538170900CF4451 /* UefiHiiServicesLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = UefiHiiServicesLib.inf; sourceTree = ""; }; + A5814A5E2538170900CF4451 /* UefiHiiServicesLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = UefiHiiServicesLib.uni; sourceTree = ""; }; + A5814A5F2538170900CF4451 /* UefiHiiServicesLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = UefiHiiServicesLib.c; sourceTree = ""; }; + A5814A612538170900CF4451 /* BmLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = BmLib.c; sourceTree = ""; }; + A5814A622538170900CF4451 /* BootMaintenanceManagerUiLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = BootMaintenanceManagerUiLib.inf; sourceTree = ""; }; + A5814A632538170900CF4451 /* BootOption.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = BootOption.c; sourceTree = ""; }; + A5814A642538170900CF4451 /* BootMaintenanceManagerUiLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = BootMaintenanceManagerUiLib.uni; sourceTree = ""; }; + A5814A652538170900CF4451 /* BootMaintenanceManagerCustomizedUiSupport.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = BootMaintenanceManagerCustomizedUiSupport.c; sourceTree = ""; }; + A5814A662538170900CF4451 /* BootMaintenanceManagerCustomizedUi.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = BootMaintenanceManagerCustomizedUi.c; sourceTree = ""; }; + A5814A672538170900CF4451 /* BootMaintenanceManager.vfr */ = {isa = PBXFileReference; lastKnownFileType = text; path = BootMaintenanceManager.vfr; sourceTree = ""; }; + A5814A682538170900CF4451 /* BootMaintenanceManagerStrings.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = BootMaintenanceManagerStrings.uni; sourceTree = ""; }; + A5814A692538170900CF4451 /* BootMaintenanceManager.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = BootMaintenanceManager.h; sourceTree = ""; }; + A5814A6A2538170900CF4451 /* BootMaintenance.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = BootMaintenance.c; sourceTree = ""; }; + A5814A6B2538170900CF4451 /* FormGuid.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = FormGuid.h; sourceTree = ""; }; + A5814A6C2538170900CF4451 /* BootMaintenanceManagerCustomizedUiSupport.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = BootMaintenanceManagerCustomizedUiSupport.h; sourceTree = ""; }; + A5814A6D2538170900CF4451 /* UpdatePage.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = UpdatePage.c; sourceTree = ""; }; + A5814A6E2538170900CF4451 /* Data.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Data.c; sourceTree = ""; }; + A5814A6F2538170900CF4451 /* BootMaintenanceManagerCustomizedUi.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = BootMaintenanceManagerCustomizedUi.h; sourceTree = ""; }; + A5814A702538170900CF4451 /* ConsoleOption.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ConsoleOption.c; sourceTree = ""; }; + A5814A712538170900CF4451 /* Variable.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Variable.c; sourceTree = ""; }; + A5814A732538170900CF4451 /* PlatformHookLibSerialPortPpi.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = PlatformHookLibSerialPortPpi.inf; sourceTree = ""; }; + A5814A742538170900CF4451 /* PlatformHookLibSerialPortPpi.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = PlatformHookLibSerialPortPpi.uni; sourceTree = ""; }; + A5814A752538170900CF4451 /* PlatformHookLibSerialPortPpi.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PlatformHookLibSerialPortPpi.c; sourceTree = ""; }; + A5814A772538170900CF4451 /* BaseSerialPortLib16550.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = BaseSerialPortLib16550.c; sourceTree = ""; }; + A5814A782538170900CF4451 /* BaseSerialPortLib16550.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = BaseSerialPortLib16550.inf; sourceTree = ""; }; + A5814A792538170900CF4451 /* BaseSerialPortLib16550.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = BaseSerialPortLib16550.uni; sourceTree = ""; }; + A5814A7B2538170900CF4451 /* BaseHobLibNull.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = BaseHobLibNull.c; sourceTree = ""; }; + A5814A7C2538170900CF4451 /* BaseHobLibNull.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = BaseHobLibNull.inf; sourceTree = ""; }; + A5814A7D2538170900CF4451 /* BaseHobLibNull.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = BaseHobLibNull.uni; sourceTree = ""; }; + A5814A7F2538170900CF4451 /* SmmPerformanceLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SmmPerformanceLib.c; sourceTree = ""; }; + A5814A802538170900CF4451 /* SmmPerformanceLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = SmmPerformanceLib.inf; sourceTree = ""; }; + A5814A812538170900CF4451 /* SmmPerformanceLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = SmmPerformanceLib.uni; sourceTree = ""; }; + A5814A832538170900CF4451 /* DxeCapsuleLibNull.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = DxeCapsuleLibNull.inf; sourceTree = ""; }; + A5814A842538170900CF4451 /* DxeCapsuleLibNull.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = DxeCapsuleLibNull.uni; sourceTree = ""; }; + A5814A852538170900CF4451 /* DxeCapsuleLibNull.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DxeCapsuleLibNull.c; sourceTree = ""; }; + A5814A872538170900CF4451 /* DxeDebugPrintErrorLevelLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = DxeDebugPrintErrorLevelLib.inf; sourceTree = ""; }; + A5814A882538170900CF4451 /* DxeDebugPrintErrorLevelLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = DxeDebugPrintErrorLevelLib.uni; sourceTree = ""; }; + A5814A892538170900CF4451 /* DxeDebugPrintErrorLevelLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DxeDebugPrintErrorLevelLib.c; sourceTree = ""; }; + A5814A8B2538170900CF4451 /* PiSmmCoreSmmServicesTableLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = PiSmmCoreSmmServicesTableLib.uni; sourceTree = ""; }; + A5814A8C2538170900CF4451 /* PiSmmCoreSmmServicesTableLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = PiSmmCoreSmmServicesTableLib.inf; sourceTree = ""; }; + A5814A8D2538170900CF4451 /* PiSmmCoreSmmServicesTableLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PiSmmCoreSmmServicesTableLib.c; sourceTree = ""; }; + A5814A8F2538170900CF4451 /* LICENSE */ = {isa = PBXFileReference; lastKnownFileType = text; path = LICENSE; sourceTree = ""; }; + A5814A902538170900CF4451 /* BrotliDecompressLibInternal.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = BrotliDecompressLibInternal.h; sourceTree = ""; }; + A5814A922538170900CF4451 /* port.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = port.h; sourceTree = ""; }; + A5814A932538170900CF4451 /* types.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = types.h; sourceTree = ""; }; + A5814A942538170900CF4451 /* decode.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = decode.h; sourceTree = ""; }; + A5814A952538170900CF4451 /* BrotliDecompress.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = BrotliDecompress.c; sourceTree = ""; }; + A5814A972538170900CF4451 /* brotli-comparison-study-2015-09-22.pdf */ = {isa = PBXFileReference; lastKnownFileType = image.pdf; path = "brotli-comparison-study-2015-09-22.pdf"; sourceTree = ""; }; + A5814A982538170900CF4451 /* README.md */ = {isa = PBXFileReference; lastKnownFileType = net.daringfireball.markdown; path = README.md; sourceTree = ""; }; + A5814A9A2538170900CF4451 /* dictionary.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = dictionary.c; sourceTree = ""; }; + A5814A9B2538170900CF4451 /* version.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = version.h; sourceTree = ""; }; + A5814A9C2538170900CF4451 /* transform.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = transform.c; sourceTree = ""; }; + A5814A9D2538170900CF4451 /* context.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = context.h; sourceTree = ""; }; + A5814A9E2538170900CF4451 /* constants.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = constants.h; sourceTree = ""; }; + A5814A9F2538170900CF4451 /* dictionary.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = dictionary.h; sourceTree = ""; }; + A5814AA02538170900CF4451 /* transform.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = transform.h; sourceTree = ""; }; + A5814AA12538170900CF4451 /* platform.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = platform.h; sourceTree = ""; }; + A5814AA32538170900CF4451 /* state.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = state.c; sourceTree = ""; }; + A5814AA42538170900CF4451 /* bit_reader.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = bit_reader.h; sourceTree = ""; }; + A5814AA52538170900CF4451 /* decode.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = decode.c; sourceTree = ""; }; + A5814AA62538170900CF4451 /* huffman.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = huffman.c; sourceTree = ""; }; + A5814AA72538170900CF4451 /* bit_reader.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = bit_reader.c; sourceTree = ""; }; + A5814AA82538170900CF4451 /* prefix.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = prefix.h; sourceTree = ""; }; + A5814AA92538170900CF4451 /* state.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = state.h; sourceTree = ""; }; + A5814AAA2538170900CF4451 /* huffman.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = huffman.h; sourceTree = ""; }; + A5814AAB2538170900CF4451 /* ReadMe.txt */ = {isa = PBXFileReference; lastKnownFileType = text; path = ReadMe.txt; sourceTree = ""; }; + A5814AAC2538170900CF4451 /* BrotliDecompressLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = BrotliDecompressLib.uni; sourceTree = ""; }; + A5814AAD2538170900CF4451 /* BrotliCustomDecompressLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = BrotliCustomDecompressLib.inf; sourceTree = ""; }; + A5814AAE2538170900CF4451 /* GuidedSectionExtraction.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = GuidedSectionExtraction.c; sourceTree = ""; }; + A5814AB02538170900CF4451 /* ResetUtility.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ResetUtility.c; sourceTree = ""; }; + A5814AB12538170900CF4451 /* ResetUtilityLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = ResetUtilityLib.inf; sourceTree = ""; }; + A5814AB32538170900CF4451 /* SmmCorePerformanceLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SmmCorePerformanceLib.c; sourceTree = ""; }; + A5814AB42538170900CF4451 /* SmmCorePerformanceLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = SmmCorePerformanceLib.uni; sourceTree = ""; }; + A5814AB52538170900CF4451 /* SmmCorePerformanceLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = SmmCorePerformanceLib.inf; sourceTree = ""; }; + A5814AB62538170900CF4451 /* SmmCorePerformanceLibInternal.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SmmCorePerformanceLibInternal.h; sourceTree = ""; }; + A5814AB82538170900CF4451 /* MemoryAllocationLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = MemoryAllocationLib.c; sourceTree = ""; }; + A5814AB92538170900CF4451 /* UefiMemoryAllocationProfileLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = UefiMemoryAllocationProfileLib.uni; sourceTree = ""; }; + A5814ABA2538170900CF4451 /* UefiMemoryAllocationProfileLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = UefiMemoryAllocationProfileLib.inf; sourceTree = ""; }; + A5814ABB2538170900CF4451 /* DxeMemoryProfileLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DxeMemoryProfileLib.c; sourceTree = ""; }; + A5814ABD2538170900CF4451 /* PeiDebugLibDebugPpi.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = PeiDebugLibDebugPpi.inf; sourceTree = ""; }; + A5814ABE2538170900CF4451 /* DebugLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DebugLib.c; sourceTree = ""; }; + A5814AC02538170900CF4451 /* SmmSmiHandlerProfileLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SmmSmiHandlerProfileLib.c; sourceTree = ""; }; + A5814AC12538170900CF4451 /* SmmSmiHandlerProfileLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = SmmSmiHandlerProfileLib.inf; sourceTree = ""; }; + A5814AC22538170900CF4451 /* SmmSmiHandlerProfileLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = SmmSmiHandlerProfileLib.uni; sourceTree = ""; }; + A5814AC42538170900CF4451 /* DxeReportStatusCodeLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = DxeReportStatusCodeLib.inf; sourceTree = ""; }; + A5814AC52538170900CF4451 /* DxeReportStatusCodeLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = DxeReportStatusCodeLib.uni; sourceTree = ""; }; + A5814AC62538170900CF4451 /* ReportStatusCodeLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ReportStatusCodeLib.c; sourceTree = ""; }; + A5814AC82538170900CF4451 /* VarCheckUefiLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = VarCheckUefiLib.inf; sourceTree = ""; }; + A5814AC92538170900CF4451 /* VarCheckUefiLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = VarCheckUefiLib.uni; sourceTree = ""; }; + A5814ACA2538170900CF4451 /* VarCheckUefiLibNullClass.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = VarCheckUefiLibNullClass.c; sourceTree = ""; }; + A5814ACC2538170900CF4451 /* RuntimeResetSystemLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = RuntimeResetSystemLib.inf; sourceTree = ""; }; + A5814ACD2538170900CF4451 /* RuntimeResetSystemLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = RuntimeResetSystemLib.c; sourceTree = ""; }; + A5814ACE2538170900CF4451 /* RuntimeResetSystemLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = RuntimeResetSystemLib.uni; sourceTree = ""; }; + A5814AD02538170900CF4451 /* VarCheckPcdLibNullClass.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = VarCheckPcdLibNullClass.c; sourceTree = ""; }; + A5814AD12538170900CF4451 /* VarCheckPcdStructure.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = VarCheckPcdStructure.h; sourceTree = ""; }; + A5814AD22538170900CF4451 /* VarCheckPcdLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = VarCheckPcdLib.uni; sourceTree = ""; }; + A5814AD32538170900CF4451 /* VarCheckPcdLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = VarCheckPcdLib.inf; sourceTree = ""; }; + A5814AD52538170900CF4451 /* DxeSecurityManagementLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DxeSecurityManagementLib.c; sourceTree = ""; }; + A5814AD62538170900CF4451 /* DxeSecurityManagementLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = DxeSecurityManagementLib.uni; sourceTree = ""; }; + A5814AD72538170900CF4451 /* DxeSecurityManagementLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = DxeSecurityManagementLib.inf; sourceTree = ""; }; + A5814AD92538170900CF4451 /* PiSmmCoreMemoryProfileLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PiSmmCoreMemoryProfileLib.c; sourceTree = ""; }; + A5814ADA2538170900CF4451 /* PiSmmCoreMemoryAllocationServices.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PiSmmCoreMemoryAllocationServices.h; sourceTree = ""; }; + A5814ADB2538170900CF4451 /* MemoryAllocationLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = MemoryAllocationLib.c; sourceTree = ""; }; + A5814ADC2538170900CF4451 /* PiSmmCoreMemoryProfileServices.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PiSmmCoreMemoryProfileServices.h; sourceTree = ""; }; + A5814ADD2538170900CF4451 /* PiSmmCoreMemoryAllocationLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = PiSmmCoreMemoryAllocationLib.uni; sourceTree = ""; }; + A5814ADE2538170900CF4451 /* PiSmmCoreMemoryAllocationProfileLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = PiSmmCoreMemoryAllocationProfileLib.inf; sourceTree = ""; }; + A5814ADF2538170900CF4451 /* PiSmmCoreMemoryProfileLibNull.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PiSmmCoreMemoryProfileLibNull.c; sourceTree = ""; }; + A5814AE02538170900CF4451 /* PiSmmCoreMemoryAllocationLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = PiSmmCoreMemoryAllocationLib.inf; sourceTree = ""; }; + A5814AE12538170900CF4451 /* PiSmmCoreMemoryAllocationProfileLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = PiSmmCoreMemoryAllocationProfileLib.uni; sourceTree = ""; }; + A5814AE32538170900CF4451 /* DxePrintLibPrint2Protocol.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = DxePrintLibPrint2Protocol.uni; sourceTree = ""; }; + A5814AE42538170900CF4451 /* PrintLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PrintLib.c; sourceTree = ""; }; + A5814AE52538170900CF4451 /* DxePrintLibPrint2Protocol.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = DxePrintLibPrint2Protocol.inf; sourceTree = ""; }; + A5814AE72538170900CF4451 /* MemoryAllocationLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = MemoryAllocationLib.c; sourceTree = ""; }; + A5814AE82538170900CF4451 /* DxeCoreMemoryAllocationServices.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DxeCoreMemoryAllocationServices.h; sourceTree = ""; }; + A5814AE92538170900CF4451 /* DxeCoreMemoryProfileServices.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DxeCoreMemoryProfileServices.h; sourceTree = ""; }; + A5814AEA2538170900CF4451 /* DxeCoreMemoryAllocationProfileLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = DxeCoreMemoryAllocationProfileLib.inf; sourceTree = ""; }; + A5814AEB2538170900CF4451 /* DxeCoreMemoryAllocationProfileLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = DxeCoreMemoryAllocationProfileLib.uni; sourceTree = ""; }; + A5814AEC2538170900CF4451 /* DxeCoreMemoryProfileLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DxeCoreMemoryProfileLib.c; sourceTree = ""; }; + A5814AED2538170900CF4451 /* DxeCoreMemoryAllocationLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = DxeCoreMemoryAllocationLib.uni; sourceTree = ""; }; + A5814AEE2538170900CF4451 /* DxeCoreMemoryAllocationLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = DxeCoreMemoryAllocationLib.inf; sourceTree = ""; }; + A5814AEF2538170900CF4451 /* DxeCoreMemoryProfileLibNull.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DxeCoreMemoryProfileLibNull.c; sourceTree = ""; }; + A5814AF12538170900CF4451 /* BootManagerStrings.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = BootManagerStrings.uni; sourceTree = ""; }; + A5814AF22538170900CF4451 /* BootManager.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = BootManager.h; sourceTree = ""; }; + A5814AF32538170900CF4451 /* BootManagerUiLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = BootManagerUiLib.uni; sourceTree = ""; }; + A5814AF42538170900CF4451 /* BootManagerVfr.Vfr */ = {isa = PBXFileReference; lastKnownFileType = text; path = BootManagerVfr.Vfr; sourceTree = ""; }; + A5814AF52538170900CF4451 /* BootManagerUiLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = BootManagerUiLib.inf; sourceTree = ""; }; + A5814AF62538170900CF4451 /* BootManager.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = BootManager.c; sourceTree = ""; }; + A5814AF82538170900CF4451 /* BmpSupportLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = BmpSupportLib.c; sourceTree = ""; }; + A5814AF92538170900CF4451 /* BaseBmpSupportLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = BaseBmpSupportLib.inf; sourceTree = ""; }; + A5814AFA2538170900CF4451 /* BaseBmpSupportLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = BaseBmpSupportLib.uni; sourceTree = ""; }; + A5814AFC2538170900CF4451 /* CpuExceptionHandlerLibNull.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = CpuExceptionHandlerLibNull.uni; sourceTree = ""; }; + A5814AFD2538170900CF4451 /* CpuExceptionHandlerLibNull.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = CpuExceptionHandlerLibNull.inf; sourceTree = ""; }; + A5814AFE2538170900CF4451 /* CpuExceptionHandlerLibNull.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = CpuExceptionHandlerLibNull.c; sourceTree = ""; }; + A5814B002538170900CF4451 /* HiiLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = HiiLib.c; sourceTree = ""; }; + A5814B012538170900CF4451 /* UefiHiiLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = UefiHiiLib.uni; sourceTree = ""; }; + A5814B022538170900CF4451 /* UefiHiiLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = UefiHiiLib.inf; sourceTree = ""; }; + A5814B032538170900CF4451 /* HiiString.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = HiiString.c; sourceTree = ""; }; + A5814B042538170900CF4451 /* HiiLanguage.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = HiiLanguage.c; sourceTree = ""; }; + A5814B052538170900CF4451 /* InternalHiiLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = InternalHiiLib.h; sourceTree = ""; }; + A5814B072538170900CF4451 /* BaseSortLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = BaseSortLib.inf; sourceTree = ""; }; + A5814B082538170900CF4451 /* BaseSortLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = BaseSortLib.uni; sourceTree = ""; }; + A5814B092538170900CF4451 /* BaseSortLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = BaseSortLib.c; sourceTree = ""; }; + A5814B0B2538170900CF4451 /* DxeCorePerformanceLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DxeCorePerformanceLib.c; sourceTree = ""; }; + A5814B0C2538170900CF4451 /* DxeCorePerformanceLibInternal.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DxeCorePerformanceLibInternal.h; sourceTree = ""; }; + A5814B0D2538170900CF4451 /* DxeCorePerformanceLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = DxeCorePerformanceLib.inf; sourceTree = ""; }; + A5814B0E2538170900CF4451 /* DxeCorePerformanceLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = DxeCorePerformanceLib.uni; sourceTree = ""; }; + A5814B102538170900CF4451 /* DxeResetSystemLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = DxeResetSystemLib.uni; sourceTree = ""; }; + A5814B112538170900CF4451 /* DxeResetSystemLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = DxeResetSystemLib.inf; sourceTree = ""; }; + A5814B122538170900CF4451 /* DxeResetSystemLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DxeResetSystemLib.c; sourceTree = ""; }; + A5814B142538170900CF4451 /* PeiResetSystemLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = PeiResetSystemLib.uni; sourceTree = ""; }; + A5814B152538170900CF4451 /* PeiResetSystemLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = PeiResetSystemLib.inf; sourceTree = ""; }; + A5814B162538170900CF4451 /* PeiResetSystemLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PeiResetSystemLib.c; sourceTree = ""; }; + A5814B172538170900CF4451 /* MdeModulePkgSample.dec */ = {isa = PBXFileReference; lastKnownFileType = text; path = MdeModulePkgSample.dec; sourceTree = ""; }; + A5814B192538170900CF4451 /* LogoDxe.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = LogoDxe.uni; sourceTree = ""; }; + A5814B1A2538170900CF4451 /* LogoDxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = LogoDxe.inf; sourceTree = ""; }; + A5814B1B2538170900CF4451 /* Logo.bmp */ = {isa = PBXFileReference; lastKnownFileType = image.bmp; path = Logo.bmp; sourceTree = ""; }; + A5814B1C2538170900CF4451 /* Logo.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = Logo.uni; sourceTree = ""; }; + A5814B1D2538170900CF4451 /* LogoDxeExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = LogoDxeExtra.uni; sourceTree = ""; }; + A5814B1E2538170900CF4451 /* LogoExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = LogoExtra.uni; sourceTree = ""; }; + A5814B1F2538170900CF4451 /* Logo.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = Logo.inf; sourceTree = ""; }; + A5814B202538170900CF4451 /* Logo.idf */ = {isa = PBXFileReference; lastKnownFileType = text; path = Logo.idf; sourceTree = ""; }; + A5814B212538170900CF4451 /* Logo.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Logo.c; sourceTree = ""; }; + A5814B222538170900CF4451 /* MdeModulePkg.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = MdeModulePkg.uni; sourceTree = ""; }; + A5814B232538170900CF4451 /* MdeModulePkg.dec */ = {isa = PBXFileReference; lastKnownFileType = text; path = MdeModulePkg.dec; sourceTree = ""; }; + A5814B262538170900CF4451 /* FrontPage.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = FrontPage.h; sourceTree = ""; }; + A5814B272538170900CF4451 /* FrontPageCustomizedUi.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = FrontPageCustomizedUi.h; sourceTree = ""; }; + A5814B282538170900CF4451 /* Ui.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Ui.h; sourceTree = ""; }; + A5814B292538170900CF4451 /* FrontPageCustomizedUiSupport.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = FrontPageCustomizedUiSupport.c; sourceTree = ""; }; + A5814B2A2538170900CF4451 /* FrontPageVfr.Vfr */ = {isa = PBXFileReference; lastKnownFileType = text; path = FrontPageVfr.Vfr; sourceTree = ""; }; + A5814B2B2538170900CF4451 /* String.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = String.c; sourceTree = ""; }; + A5814B2C2538170900CF4451 /* FrontPageCustomizedUi.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = FrontPageCustomizedUi.c; sourceTree = ""; }; + A5814B2D2538170900CF4451 /* UiApp.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = UiApp.uni; sourceTree = ""; }; + A5814B2E2538170900CF4451 /* FrontPage.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = FrontPage.c; sourceTree = ""; }; + A5814B2F2538170900CF4451 /* FrontPageStrings.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = FrontPageStrings.uni; sourceTree = ""; }; + A5814B302538170900CF4451 /* UiAppExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = UiAppExtra.uni; sourceTree = ""; }; + A5814B312538170900CF4451 /* UiApp.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = UiApp.inf; sourceTree = ""; }; + A5814B322538170900CF4451 /* FrontPageCustomizedUiSupport.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = FrontPageCustomizedUiSupport.h; sourceTree = ""; }; + A5814B332538170900CF4451 /* String.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = String.h; sourceTree = ""; }; + A5814B352538170900CF4451 /* HelloWorldStr.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = HelloWorldStr.uni; sourceTree = ""; }; + A5814B362538170900CF4451 /* HelloWorld.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = HelloWorld.uni; sourceTree = ""; }; + A5814B372538170900CF4451 /* HelloWorld.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = HelloWorld.inf; sourceTree = ""; }; + A5814B382538170900CF4451 /* HelloWorld.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = HelloWorld.c; sourceTree = ""; }; + A5814B392538170900CF4451 /* HelloWorldExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = HelloWorldExtra.uni; sourceTree = ""; }; + A5814B3B2538170900CF4451 /* BootManagerMenu.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = BootManagerMenu.c; sourceTree = ""; }; + A5814B3C2538170900CF4451 /* BootManagerMenuAppExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = BootManagerMenuAppExtra.uni; sourceTree = ""; }; + A5814B3D2538170900CF4451 /* BootManagerMenuStrings.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = BootManagerMenuStrings.uni; sourceTree = ""; }; + A5814B3E2538170900CF4451 /* BootManagerMenu.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = BootManagerMenu.h; sourceTree = ""; }; + A5814B3F2538170900CF4451 /* BootManagerMenuApp.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = BootManagerMenuApp.inf; sourceTree = ""; }; + A5814B402538170900CF4451 /* BootManagerMenuApp.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = BootManagerMenuApp.uni; sourceTree = ""; }; + A5814B422538170900CF4451 /* CapsuleApp.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = CapsuleApp.h; sourceTree = ""; }; + A5814B432538170900CF4451 /* CapsuleApp.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = CapsuleApp.inf; sourceTree = ""; }; + A5814B442538170900CF4451 /* AppSupport.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = AppSupport.c; sourceTree = ""; }; + A5814B452538170900CF4451 /* CapsuleApp.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = CapsuleApp.uni; sourceTree = ""; }; + A5814B462538170900CF4451 /* CapsuleAppExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = CapsuleAppExtra.uni; sourceTree = ""; }; + A5814B472538170900CF4451 /* CapsuleOnDisk.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = CapsuleOnDisk.c; sourceTree = ""; }; + A5814B482538170900CF4451 /* CapsuleApp.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = CapsuleApp.c; sourceTree = ""; }; + A5814B492538170900CF4451 /* CapsuleDump.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = CapsuleDump.c; sourceTree = ""; }; + A5814B4B2538170900CF4451 /* MemoryProfileInfo.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = MemoryProfileInfo.inf; sourceTree = ""; }; + A5814B4C2538170900CF4451 /* MemoryProfileInfo.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = MemoryProfileInfo.c; sourceTree = ""; }; + A5814B4D2538170900CF4451 /* MemoryProfileInfo.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = MemoryProfileInfo.uni; sourceTree = ""; }; + A5814B4E2538170900CF4451 /* MemoryProfileInfoExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = MemoryProfileInfoExtra.uni; sourceTree = ""; }; + A5814B502538170900CF4451 /* DumpDynPcd.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = DumpDynPcd.inf; sourceTree = ""; }; + A5814B512538170900CF4451 /* DumpDynPcdStr.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = DumpDynPcdStr.uni; sourceTree = ""; }; + A5814B522538170900CF4451 /* DumpDynPcd.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DumpDynPcd.c; sourceTree = ""; }; + A5814B542538170900CF4451 /* VariableInfoExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = VariableInfoExtra.uni; sourceTree = ""; }; + A5814B552538170900CF4451 /* VariableInfo.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = VariableInfo.inf; sourceTree = ""; }; + A5814B562538170900CF4451 /* VariableInfo.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = VariableInfo.uni; sourceTree = ""; }; + A5814B572538170900CF4451 /* VariableInfo.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = VariableInfo.c; sourceTree = ""; }; + A5814B592538170900CF4451 /* SmiHandlerProfileInfoExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = SmiHandlerProfileInfoExtra.uni; sourceTree = ""; }; + A5814B5A2538170900CF4451 /* SmiHandlerProfileInfo.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = SmiHandlerProfileInfo.uni; sourceTree = ""; }; + A5814B5B2538170900CF4451 /* SmiHandlerProfileInfo.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = SmiHandlerProfileInfo.inf; sourceTree = ""; }; + A5814B5C2538170900CF4451 /* SmiHandlerProfileInfo.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SmiHandlerProfileInfo.c; sourceTree = ""; }; + A5814B5D2538170900CF4451 /* MdeModulePkg.dsc */ = {isa = PBXFileReference; lastKnownFileType = text; path = MdeModulePkg.dsc; sourceTree = ""; }; + A5814B602538171000CF4451 /* PiPei.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PiPei.h; sourceTree = ""; }; + A5814B612538171000CF4451 /* PiMm.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PiMm.h; sourceTree = ""; }; + A5814B622538171000CF4451 /* Uefi.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Uefi.h; sourceTree = ""; }; + A5814B642538171000CF4451 /* Nasm.inc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.pascal; path = Nasm.inc; sourceTree = ""; }; + A5814B652538171000CF4451 /* ProcessorBind.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ProcessorBind.h; sourceTree = ""; }; + A5814B672538171000CF4451 /* UefiAcpiDataTable.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = UefiAcpiDataTable.h; sourceTree = ""; }; + A5814B682538171000CF4451 /* UefiPxe.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = UefiPxe.h; sourceTree = ""; }; + A5814B692538171000CF4451 /* UefiSpec.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = UefiSpec.h; sourceTree = ""; }; + A5814B6A2538171000CF4451 /* UefiGpt.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = UefiGpt.h; sourceTree = ""; }; + A5814B6B2538171000CF4451 /* UefiBaseType.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = UefiBaseType.h; sourceTree = ""; }; + A5814B6C2538171000CF4451 /* UefiInternalFormRepresentation.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = UefiInternalFormRepresentation.h; sourceTree = ""; }; + A5814B6D2538171000CF4451 /* UefiMultiPhase.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = UefiMultiPhase.h; sourceTree = ""; }; + A5814B6F2538171000CF4451 /* IpmiNetFnFirmware.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = IpmiNetFnFirmware.h; sourceTree = ""; }; + A5814B702538171000CF4451 /* SdramSpdLpDdr.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SdramSpdLpDdr.h; sourceTree = ""; }; + A5814B712538171000CF4451 /* ElTorito.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ElTorito.h; sourceTree = ""; }; + A5814B722538171000CF4451 /* SdramSpdDdr3.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SdramSpdDdr3.h; sourceTree = ""; }; + A5814B732538171000CF4451 /* Acpi62.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Acpi62.h; sourceTree = ""; }; + A5814B742538171000CF4451 /* WindowsSmmSecurityMitigationTable.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = WindowsSmmSecurityMitigationTable.h; sourceTree = ""; }; + A5814B752538171000CF4451 /* Nvme.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Nvme.h; sourceTree = ""; }; + A5814B762538171000CF4451 /* IoRemappingTable.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = IoRemappingTable.h; sourceTree = ""; }; + A5814B772538171000CF4451 /* LowPowerIdleTable.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = LowPowerIdleTable.h; sourceTree = ""; }; + A5814B782538171000CF4451 /* Emmc.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Emmc.h; sourceTree = ""; }; + A5814B792538171000CF4451 /* WatchdogActionTable.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = WatchdogActionTable.h; sourceTree = ""; }; + A5814B7A2538171000CF4451 /* DmaRemappingReportingTable.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DmaRemappingReportingTable.h; sourceTree = ""; }; + A5814B7B2538171000CF4451 /* AlertStandardFormatTable.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AlertStandardFormatTable.h; sourceTree = ""; }; + A5814B7C2538171000CF4451 /* Acpi40.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Acpi40.h; sourceTree = ""; }; + A5814B7D2538171000CF4451 /* Bmp.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Bmp.h; sourceTree = ""; }; + A5814B7E2538171000CF4451 /* UefiTcgPlatform.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = UefiTcgPlatform.h; sourceTree = ""; }; + A5814B7F2538171000CF4451 /* SerialPortConsoleRedirectionTable.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SerialPortConsoleRedirectionTable.h; sourceTree = ""; }; + A5814B802538171000CF4451 /* Pci22.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Pci22.h; sourceTree = ""; }; + A5814B812538171000CF4451 /* Mbr.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Mbr.h; sourceTree = ""; }; + A5814B822538171000CF4451 /* Acpi61.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Acpi61.h; sourceTree = ""; }; + A5814B832538171000CF4451 /* SdramSpdDdr4.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SdramSpdDdr4.h; sourceTree = ""; }; + A5814B842538171000CF4451 /* TcgStorageOpal.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = TcgStorageOpal.h; sourceTree = ""; }; + A5814B852538171000CF4451 /* IpmiNetFnChassis.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = IpmiNetFnChassis.h; sourceTree = ""; }; + A5814B862538171000CF4451 /* Acpi.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Acpi.h; sourceTree = ""; }; + A5814B872538171000CF4451 /* Tpm2Acpi.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Tpm2Acpi.h; sourceTree = ""; }; + A5814B882538171000CF4451 /* PeImage.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PeImage.h; sourceTree = ""; }; + A5814B892538171000CF4451 /* PciExpress30.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PciExpress30.h; sourceTree = ""; }; + A5814B8A2538171000CF4451 /* SdramSpd.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SdramSpd.h; sourceTree = ""; }; + A5814B8B2538171000CF4451 /* Acpi10.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Acpi10.h; sourceTree = ""; }; + A5814B8C2538171000CF4451 /* MemoryMappedConfigurationSpaceAccessTable.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MemoryMappedConfigurationSpaceAccessTable.h; sourceTree = ""; }; + A5814B8D2538171000CF4451 /* IpmiFruInformationStorage.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = IpmiFruInformationStorage.h; sourceTree = ""; }; + A5814B8E2538171000CF4451 /* IpmiNetFnStorage.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = IpmiNetFnStorage.h; sourceTree = ""; }; + A5814B8F2538171000CF4451 /* IScsiBootFirmwareTable.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = IScsiBootFirmwareTable.h; sourceTree = ""; }; + A5814B902538171000CF4451 /* Bluetooth.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Bluetooth.h; sourceTree = ""; }; + A5814B912538171000CF4451 /* AcpiAml.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AcpiAml.h; sourceTree = ""; }; + A5814B922538171000CF4451 /* Acpi50.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Acpi50.h; sourceTree = ""; }; + A5814B932538171000CF4451 /* Tpm20.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Tpm20.h; sourceTree = ""; }; + A5814B942538171000CF4451 /* PciCodeId.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PciCodeId.h; sourceTree = ""; }; + A5814B952538171000CF4451 /* IpmiNetFnTransport.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = IpmiNetFnTransport.h; sourceTree = ""; }; + A5814B962538171000CF4451 /* Dhcp.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Dhcp.h; sourceTree = ""; }; + A5814B972538171000CF4451 /* TpmPtp.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = TpmPtp.h; sourceTree = ""; }; + A5814B982538171000CF4451 /* Acpi20.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Acpi20.h; sourceTree = ""; }; + A5814B992538171000CF4451 /* Pci23.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Pci23.h; sourceTree = ""; }; + A5814B9A2538171000CF4451 /* IpmiNetFnApp.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = IpmiNetFnApp.h; sourceTree = ""; }; + A5814B9B2538171000CF4451 /* PciExpress40.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PciExpress40.h; sourceTree = ""; }; + A5814B9C2538171000CF4451 /* IpmiNetFnSensorEvent.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = IpmiNetFnSensorEvent.h; sourceTree = ""; }; + A5814B9D2538171000CF4451 /* Acpi60.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Acpi60.h; sourceTree = ""; }; + A5814B9E2538171000CF4451 /* PciExpress21.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PciExpress21.h; sourceTree = ""; }; + A5814B9F2538171000CF4451 /* PciExpress31.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PciExpress31.h; sourceTree = ""; }; + A5814BA02538171000CF4451 /* TcgStorageCore.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = TcgStorageCore.h; sourceTree = ""; }; + A5814BA12538171000CF4451 /* HighPrecisionEventTimerTable.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HighPrecisionEventTimerTable.h; sourceTree = ""; }; + A5814BA22538171000CF4451 /* Usb.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Usb.h; sourceTree = ""; }; + A5814BA32538171000CF4451 /* Acpi51.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Acpi51.h; sourceTree = ""; }; + A5814BA42538171000CF4451 /* Sd.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Sd.h; sourceTree = ""; }; + A5814BA52538171000CF4451 /* WatchdogResourceTable.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = WatchdogResourceTable.h; sourceTree = ""; }; + A5814BA62538171000CF4451 /* Acpi30.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Acpi30.h; sourceTree = ""; }; + A5814BA72538171000CF4451 /* Udf.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Udf.h; sourceTree = ""; }; + A5814BA82538171000CF4451 /* DebugPortTable.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DebugPortTable.h; sourceTree = ""; }; + A5814BA92538171000CF4451 /* SmBios.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SmBios.h; sourceTree = ""; }; + A5814BAA2538171000CF4451 /* MemoryOverwriteRequestControlLock.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MemoryOverwriteRequestControlLock.h; sourceTree = ""; }; + A5814BAB2538171000CF4451 /* Atapi.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Atapi.h; sourceTree = ""; }; + A5814BAC2538171000CF4451 /* TcpaAcpi.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = TcpaAcpi.h; sourceTree = ""; }; + A5814BAD2538171000CF4451 /* LegacyBiosMpTable.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = LegacyBiosMpTable.h; sourceTree = ""; }; + A5814BAE2538171000CF4451 /* TpmTis.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = TpmTis.h; sourceTree = ""; }; + A5814BAF2538171000CF4451 /* Acpi63.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Acpi63.h; sourceTree = ""; }; + A5814BB02538171000CF4451 /* SmBus.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SmBus.h; sourceTree = ""; }; + A5814BB12538171000CF4451 /* Http11.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Http11.h; sourceTree = ""; }; + A5814BB22538171000CF4451 /* TcgPhysicalPresence.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = TcgPhysicalPresence.h; sourceTree = ""; }; + A5814BB32538171000CF4451 /* IpmiNetFnGroupExtension.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = IpmiNetFnGroupExtension.h; sourceTree = ""; }; + A5814BB42538171000CF4451 /* Tls1.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Tls1.h; sourceTree = ""; }; + A5814BB52538171000CF4451 /* Pci.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Pci.h; sourceTree = ""; }; + A5814BB62538171000CF4451 /* DebugPort2Table.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DebugPort2Table.h; sourceTree = ""; }; + A5814BB72538171000CF4451 /* Scsi.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Scsi.h; sourceTree = ""; }; + A5814BB82538171000CF4451 /* Pci30.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Pci30.h; sourceTree = ""; }; + A5814BB92538171000CF4451 /* Hsti.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Hsti.h; sourceTree = ""; }; + A5814BBA2538171000CF4451 /* WindowsUxCapsule.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = WindowsUxCapsule.h; sourceTree = ""; }; + A5814BBB2538171000CF4451 /* Tpm12.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Tpm12.h; sourceTree = ""; }; + A5814BBC2538171000CF4451 /* Ipmi.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Ipmi.h; sourceTree = ""; }; + A5814BBD2538171000CF4451 /* IpmiNetFnBridge.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = IpmiNetFnBridge.h; sourceTree = ""; }; + A5814BBE2538171000CF4451 /* ServiceProcessorManagementInterfaceTable.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ServiceProcessorManagementInterfaceTable.h; sourceTree = ""; }; + A5814BC02538171000CF4451 /* OrderedCollectionLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = OrderedCollectionLib.h; sourceTree = ""; }; + A5814BC12538171000CF4451 /* TimerLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = TimerLib.h; sourceTree = ""; }; + A5814BC22538171000CF4451 /* PeiServicesTablePointerLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PeiServicesTablePointerLib.h; sourceTree = ""; }; + A5814BC32538171000CF4451 /* SmiHandlerProfileLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SmiHandlerProfileLib.h; sourceTree = ""; }; + A5814BC42538171000CF4451 /* UefiUsbLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = UefiUsbLib.h; sourceTree = ""; }; + A5814BC52538171000CF4451 /* UefiDecompressLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = UefiDecompressLib.h; sourceTree = ""; }; + A5814BC62538171000CF4451 /* UefiRuntimeServicesTableLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = UefiRuntimeServicesTableLib.h; sourceTree = ""; }; + A5814BC72538171000CF4451 /* PeimEntryPoint.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PeimEntryPoint.h; sourceTree = ""; }; + A5814BC82538171000CF4451 /* RngLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = RngLib.h; sourceTree = ""; }; + A5814BC92538171000CF4451 /* PciCf8Lib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PciCf8Lib.h; sourceTree = ""; }; + A5814BCA2538171000CF4451 /* SmmPeriodicSmiLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SmmPeriodicSmiLib.h; sourceTree = ""; }; + A5814BCB2538171000CF4451 /* PeiCoreEntryPoint.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PeiCoreEntryPoint.h; sourceTree = ""; }; + A5814BCC2538171000CF4451 /* S3PciLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = S3PciLib.h; sourceTree = ""; }; + A5814BCD2538171000CF4451 /* PciSegmentLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PciSegmentLib.h; sourceTree = ""; }; + A5814BCE2538171000CF4451 /* DebugLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DebugLib.h; sourceTree = ""; }; + A5814BCF2538171000CF4451 /* SynchronizationLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SynchronizationLib.h; sourceTree = ""; }; + A5814BD02538171000CF4451 /* SafeIntLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SafeIntLib.h; sourceTree = ""; }; + A5814BD12538171000CF4451 /* S3SmbusLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = S3SmbusLib.h; sourceTree = ""; }; + A5814BD22538171000CF4451 /* DevicePathLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DevicePathLib.h; sourceTree = ""; }; + A5814BD32538171000CF4451 /* PcdLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PcdLib.h; sourceTree = ""; }; + A5814BD42538171000CF4451 /* FileHandleLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = FileHandleLib.h; sourceTree = ""; }; + A5814BD52538171000CF4451 /* UefiLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = UefiLib.h; sourceTree = ""; }; + A5814BD62538171000CF4451 /* SmmMemLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SmmMemLib.h; sourceTree = ""; }; + A5814BD72538171000CF4451 /* PostCodeLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PostCodeLib.h; sourceTree = ""; }; + A5814BD82538171000CF4451 /* S3StallLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = S3StallLib.h; sourceTree = ""; }; + A5814BD92538171000CF4451 /* PciLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PciLib.h; sourceTree = ""; }; + A5814BDA2538171000CF4451 /* UefiBootServicesTableLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = UefiBootServicesTableLib.h; sourceTree = ""; }; + A5814BDB2538171000CF4451 /* MmServicesTableLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MmServicesTableLib.h; sourceTree = ""; }; + A5814BDC2538171000CF4451 /* PeCoffExtraActionLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PeCoffExtraActionLib.h; sourceTree = ""; }; + A5814BDD2538171000CF4451 /* PciExpressLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PciExpressLib.h; sourceTree = ""; }; + A5814BDE2538171000CF4451 /* S3IoLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = S3IoLib.h; sourceTree = ""; }; + A5814BDF2538171000CF4451 /* ReportStatusCodeLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ReportStatusCodeLib.h; sourceTree = ""; }; + A5814BE02538171000CF4451 /* UefiScsiLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = UefiScsiLib.h; sourceTree = ""; }; + A5814BE12538171000CF4451 /* UefiRuntimeLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = UefiRuntimeLib.h; sourceTree = ""; }; + A5814BE22538171000CF4451 /* SmmServicesTableLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SmmServicesTableLib.h; sourceTree = ""; }; + A5814BE32538171000CF4451 /* SerialPortLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SerialPortLib.h; sourceTree = ""; }; + A5814BE42538171000CF4451 /* DxeCoreEntryPoint.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DxeCoreEntryPoint.h; sourceTree = ""; }; + A5814BE52538171000CF4451 /* PeCoffGetEntryPointLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PeCoffGetEntryPointLib.h; sourceTree = ""; }; + A5814BE62538171000CF4451 /* UefiDriverEntryPoint.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = UefiDriverEntryPoint.h; sourceTree = ""; }; + A5814BE72538171000CF4451 /* BaseMemoryLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = BaseMemoryLib.h; sourceTree = ""; }; + A5814BE82538171000CF4451 /* DxeServicesLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DxeServicesLib.h; sourceTree = ""; }; + A5814BE92538171000CF4451 /* PeCoffLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PeCoffLib.h; sourceTree = ""; }; + A5814BEA2538171000CF4451 /* S3PciSegmentLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = S3PciSegmentLib.h; sourceTree = ""; }; + A5814BEB2538171000CF4451 /* BaseLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = BaseLib.h; sourceTree = ""; }; + A5814BEC2538171000CF4451 /* SmmLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SmmLib.h; sourceTree = ""; }; + A5814BED2538171000CF4451 /* PeiServicesLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PeiServicesLib.h; sourceTree = ""; }; + A5814BEE2538171000CF4451 /* DxeServicesTableLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DxeServicesTableLib.h; sourceTree = ""; }; + A5814BEF2538171000CF4451 /* SmbusLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SmbusLib.h; sourceTree = ""; }; + A5814BF02538171000CF4451 /* MemoryAllocationLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MemoryAllocationLib.h; sourceTree = ""; }; + A5814BF12538171000CF4451 /* HstiLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HstiLib.h; sourceTree = ""; }; + A5814BF22538171000CF4451 /* ExtractGuidedSectionLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ExtractGuidedSectionLib.h; sourceTree = ""; }; + A5814BF32538171000CF4451 /* ResourcePublicationLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ResourcePublicationLib.h; sourceTree = ""; }; + A5814BF42538171000CF4451 /* S3BootScriptLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = S3BootScriptLib.h; sourceTree = ""; }; + A5814BF52538171000CF4451 /* CacheMaintenanceLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = CacheMaintenanceLib.h; sourceTree = ""; }; + A5814BF62538171000CF4451 /* CpuLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = CpuLib.h; sourceTree = ""; }; + A5814BF72538171000CF4451 /* StandaloneMmDriverEntryPoint.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = StandaloneMmDriverEntryPoint.h; sourceTree = ""; }; + A5814BF82538171000CF4451 /* SmmIoLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SmmIoLib.h; sourceTree = ""; }; + A5814BF92538171000CF4451 /* IoLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = IoLib.h; sourceTree = ""; }; + A5814BFA2538171000CF4451 /* PrintLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PrintLib.h; sourceTree = ""; }; + A5814BFB2538171000CF4451 /* UefiApplicationEntryPoint.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = UefiApplicationEntryPoint.h; sourceTree = ""; }; + A5814BFC2538171000CF4451 /* PerformanceLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PerformanceLib.h; sourceTree = ""; }; + A5814BFD2538171000CF4451 /* HobLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HobLib.h; sourceTree = ""; }; + A5814BFE2538171000CF4451 /* DebugPrintErrorLevelLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DebugPrintErrorLevelLib.h; sourceTree = ""; }; + A5814BFF2538171000CF4451 /* PciSegmentInfoLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PciSegmentInfoLib.h; sourceTree = ""; }; + A5814C012538171000CF4451 /* LegacySpiController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = LegacySpiController.h; sourceTree = ""; }; + A5814C022538171000CF4451 /* SpiHc.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SpiHc.h; sourceTree = ""; }; + A5814C032538171000CF4451 /* Tcp4.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Tcp4.h; sourceTree = ""; }; + A5814C042538171000CF4451 /* DriverFamilyOverride.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DriverFamilyOverride.h; sourceTree = ""; }; + A5814C052538171000CF4451 /* MmSxDispatch.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MmSxDispatch.h; sourceTree = ""; }; + A5814C062538171000CF4451 /* MmCpu.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MmCpu.h; sourceTree = ""; }; + A5814C072538171000CF4451 /* TcgService.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = TcgService.h; sourceTree = ""; }; + A5814C082538171000CF4451 /* WiFi2.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = WiFi2.h; sourceTree = ""; }; + A5814C092538171000CF4451 /* PartitionInfo.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PartitionInfo.h; sourceTree = ""; }; + A5814C0A2538171000CF4451 /* SmmReportStatusCodeHandler.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SmmReportStatusCodeHandler.h; sourceTree = ""; }; + A5814C0B2538171000CF4451 /* UgaDraw.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = UgaDraw.h; sourceTree = ""; }; + A5814C0C2538171000CF4451 /* Bis.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Bis.h; sourceTree = ""; }; + A5814C0D2538171000CF4451 /* SmartCardEdge.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SmartCardEdge.h; sourceTree = ""; }; + A5814C0E2538171000CF4451 /* EapConfiguration.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = EapConfiguration.h; sourceTree = ""; }; + A5814C0F2538171000CF4451 /* ShellDynamicCommand.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ShellDynamicCommand.h; sourceTree = ""; }; + A5814C102538171000CF4451 /* Rest.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Rest.h; sourceTree = ""; }; + A5814C112538171000CF4451 /* NvdimmLabel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = NvdimmLabel.h; sourceTree = ""; }; + A5814C122538171000CF4451 /* Udp4.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Udp4.h; sourceTree = ""; }; + A5814C132538171000CF4451 /* LoadedImage.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = LoadedImage.h; sourceTree = ""; }; + A5814C142538171000CF4451 /* WiFi.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = WiFi.h; sourceTree = ""; }; + A5814C152538171000CF4451 /* SmmSwDispatch2.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SmmSwDispatch2.h; sourceTree = ""; }; + A5814C162538171000CF4451 /* FormBrowser2.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = FormBrowser2.h; sourceTree = ""; }; + A5814C172538171000CF4451 /* I2cHost.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = I2cHost.h; sourceTree = ""; }; + A5814C182538171000CF4451 /* DevicePathFromText.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DevicePathFromText.h; sourceTree = ""; }; + A5814C192538171000CF4451 /* Shell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Shell.h; sourceTree = ""; }; + A5814C1A2538171000CF4451 /* IpSec.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = IpSec.h; sourceTree = ""; }; + A5814C1B2538171000CF4451 /* SimpleTextInEx.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SimpleTextInEx.h; sourceTree = ""; }; + A5814C1C2538171000CF4451 /* CpuIo2.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = CpuIo2.h; sourceTree = ""; }; + A5814C1D2538171000CF4451 /* Ip4.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Ip4.h; sourceTree = ""; }; + A5814C1E2538171000CF4451 /* DriverConfiguration.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DriverConfiguration.h; sourceTree = ""; }; + A5814C1F2538171000CF4451 /* SpiSmmConfiguration.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SpiSmmConfiguration.h; sourceTree = ""; }; + A5814C202538171000CF4451 /* DiskIo.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DiskIo.h; sourceTree = ""; }; + A5814C212538171000CF4451 /* Tls.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Tls.h; sourceTree = ""; }; + A5814C222538171000CF4451 /* MmReadyToLock.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MmReadyToLock.h; sourceTree = ""; }; + A5814C232538171000CF4451 /* SimpleFileSystem.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SimpleFileSystem.h; sourceTree = ""; }; + A5814C242538171000CF4451 /* MmStatusCode.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MmStatusCode.h; sourceTree = ""; }; + A5814C252538171000CF4451 /* Http.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Http.h; sourceTree = ""; }; + A5814C262538171000CF4451 /* ScsiPassThruExt.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ScsiPassThruExt.h; sourceTree = ""; }; + A5814C272538171000CF4451 /* HiiConfigAccess.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HiiConfigAccess.h; sourceTree = ""; }; + A5814C282538171000CF4451 /* SmbusHc.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SmbusHc.h; sourceTree = ""; }; + A5814C292538171000CF4451 /* DevicePathToText.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DevicePathToText.h; sourceTree = ""; }; + A5814C2A2538171000CF4451 /* MmCpuIo.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MmCpuIo.h; sourceTree = ""; }; + A5814C2B2538171000CF4451 /* ServiceBinding.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ServiceBinding.h; sourceTree = ""; }; + A5814C2C2538171000CF4451 /* DriverConfiguration2.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DriverConfiguration2.h; sourceTree = ""; }; + A5814C2D2538171000CF4451 /* Usb2HostController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Usb2HostController.h; sourceTree = ""; }; + A5814C2E2538171000CF4451 /* FirmwareManagement.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = FirmwareManagement.h; sourceTree = ""; }; + A5814C2F2538171000CF4451 /* EdidDiscovered.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = EdidDiscovered.h; sourceTree = ""; }; + A5814C302538171000CF4451 /* MmEndOfDxe.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MmEndOfDxe.h; sourceTree = ""; }; + A5814C312538171000CF4451 /* BootManagerPolicy.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = BootManagerPolicy.h; sourceTree = ""; }; + A5814C322538171000CF4451 /* RealTimeClock.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = RealTimeClock.h; sourceTree = ""; }; + A5814C332538171000CF4451 /* SimplePointer.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SimplePointer.h; sourceTree = ""; }; + A5814C342538171000CF4451 /* Ip6Config.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Ip6Config.h; sourceTree = ""; }; + A5814C352538171000CF4451 /* I2cIo.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = I2cIo.h; sourceTree = ""; }; + A5814C362538171000CF4451 /* Dns6.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Dns6.h; sourceTree = ""; }; + A5814C372538171000CF4451 /* UfsDeviceConfig.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = UfsDeviceConfig.h; sourceTree = ""; }; + A5814C382538171000CF4451 /* DeviceIo.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DeviceIo.h; sourceTree = ""; }; + A5814C392538171000CF4451 /* ReportStatusCodeHandler.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ReportStatusCodeHandler.h; sourceTree = ""; }; + A5814C3A2538171000CF4451 /* TlsConfig.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = TlsConfig.h; sourceTree = ""; }; + A5814C3B2538171000CF4451 /* ScsiIo.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ScsiIo.h; sourceTree = ""; }; + A5814C3C2538171000CF4451 /* Security.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Security.h; sourceTree = ""; }; + A5814C3D2538171000CF4451 /* SmmSxDispatch2.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SmmSxDispatch2.h; sourceTree = ""; }; + A5814C3E2538171000CF4451 /* MmControl.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MmControl.h; sourceTree = ""; }; + A5814C3F2538171000CF4451 /* NetworkInterfaceIdentifier.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = NetworkInterfaceIdentifier.h; sourceTree = ""; }; + A5814C402538171000CF4451 /* MmPowerButtonDispatch.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MmPowerButtonDispatch.h; sourceTree = ""; }; + A5814C412538171000CF4451 /* Security2.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Security2.h; sourceTree = ""; }; + A5814C422538171000CF4451 /* EdidActive.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = EdidActive.h; sourceTree = ""; }; + A5814C432538171000CF4451 /* UserCredential.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = UserCredential.h; sourceTree = ""; }; + A5814C442538171000CF4451 /* MmAccess.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MmAccess.h; sourceTree = ""; }; + A5814C452538171000CF4451 /* UnicodeCollation.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = UnicodeCollation.h; sourceTree = ""; }; + A5814C462538171000CF4451 /* MonotonicCounter.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MonotonicCounter.h; sourceTree = ""; }; + A5814C472538171000CF4451 /* BluetoothHc.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = BluetoothHc.h; sourceTree = ""; }; + A5814C482538171000CF4451 /* PlatformDriverOverride.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PlatformDriverOverride.h; sourceTree = ""; }; + A5814C492538171000CF4451 /* ManagedNetwork.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ManagedNetwork.h; sourceTree = ""; }; + A5814C4A2538171000CF4451 /* DriverDiagnostics.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DriverDiagnostics.h; sourceTree = ""; }; + A5814C4B2538171000CF4451 /* HiiImageDecoder.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HiiImageDecoder.h; sourceTree = ""; }; + A5814C4C2538171000CF4451 /* SimpleNetwork.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SimpleNetwork.h; sourceTree = ""; }; + A5814C4D2538171000CF4451 /* HiiString.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HiiString.h; sourceTree = ""; }; + A5814C4E2538171000CF4451 /* TrEEProtocol.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = TrEEProtocol.h; sourceTree = ""; }; + A5814C4F2538171000CF4451 /* VariableWrite.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = VariableWrite.h; sourceTree = ""; }; + A5814C502538171000CF4451 /* BluetoothLeConfig.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = BluetoothLeConfig.h; sourceTree = ""; }; + A5814C512538171000CF4451 /* Ip4Config.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Ip4Config.h; sourceTree = ""; }; + A5814C522538171000CF4451 /* MmMp.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MmMp.h; sourceTree = ""; }; + A5814C532538171000CF4451 /* HiiPopup.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HiiPopup.h; sourceTree = ""; }; + A5814C542538171000CF4451 /* GraphicsOutput.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = GraphicsOutput.h; sourceTree = ""; }; + A5814C552538171100CF4451 /* IScsiInitiatorName.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = IScsiInitiatorName.h; sourceTree = ""; }; + A5814C562538171100CF4451 /* Ftp4.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Ftp4.h; sourceTree = ""; }; + A5814C572538171100CF4451 /* AtaPassThru.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AtaPassThru.h; sourceTree = ""; }; + A5814C582538171100CF4451 /* SimpleTextOut.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SimpleTextOut.h; sourceTree = ""; }; + A5814C592538171100CF4451 /* HiiConfigKeyword.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HiiConfigKeyword.h; sourceTree = ""; }; + A5814C5A2538171100CF4451 /* PciOverride.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PciOverride.h; sourceTree = ""; }; + A5814C5B2538171100CF4451 /* DiskIo2.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DiskIo2.h; sourceTree = ""; }; + A5814C5C2538171100CF4451 /* IsaHc.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = IsaHc.h; sourceTree = ""; }; + A5814C5D2538171100CF4451 /* ComponentName2.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ComponentName2.h; sourceTree = ""; }; + A5814C5E2538171100CF4451 /* SmmStatusCode.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SmmStatusCode.h; sourceTree = ""; }; + A5814C5F2538171100CF4451 /* PciPlatform.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PciPlatform.h; sourceTree = ""; }; + A5814C602538171100CF4451 /* DriverDiagnostics2.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DriverDiagnostics2.h; sourceTree = ""; }; + A5814C612538171100CF4451 /* Rng.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Rng.h; sourceTree = ""; }; + A5814C622538171100CF4451 /* Dhcp4.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Dhcp4.h; sourceTree = ""; }; + A5814C632538171100CF4451 /* PxeBaseCode.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PxeBaseCode.h; sourceTree = ""; }; + A5814C642538171100CF4451 /* GuidedSectionExtraction.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = GuidedSectionExtraction.h; sourceTree = ""; }; + A5814C652538171100CF4451 /* Variable.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Variable.h; sourceTree = ""; }; + A5814C662538171100CF4451 /* MmReportStatusCodeHandler.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MmReportStatusCodeHandler.h; sourceTree = ""; }; + A5814C672538171100CF4451 /* DxeMmReadyToLock.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DxeMmReadyToLock.h; sourceTree = ""; }; + A5814C682538171100CF4451 /* DriverBinding.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DriverBinding.h; sourceTree = ""; }; + A5814C692538171100CF4451 /* FirmwareVolume2.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = FirmwareVolume2.h; sourceTree = ""; }; + A5814C6A2538171100CF4451 /* BlockIo.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = BlockIo.h; sourceTree = ""; }; + A5814C6B2538171100CF4451 /* MmBase.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MmBase.h; sourceTree = ""; }; + A5814C6C2538171100CF4451 /* SmmCpuIo2.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SmmCpuIo2.h; sourceTree = ""; }; + A5814C6D2538171100CF4451 /* SmmUsbDispatch2.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SmmUsbDispatch2.h; sourceTree = ""; }; + A5814C6E2538171100CF4451 /* Mtftp6.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Mtftp6.h; sourceTree = ""; }; + A5814C6F2538171100CF4451 /* S3SmmSaveState.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = S3SmmSaveState.h; sourceTree = ""; }; + A5814C702538171100CF4451 /* SpiNorFlash.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SpiNorFlash.h; sourceTree = ""; }; + A5814C712538171100CF4451 /* Metronome.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Metronome.h; sourceTree = ""; }; + A5814C722538171100CF4451 /* SmmPowerButtonDispatch2.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SmmPowerButtonDispatch2.h; sourceTree = ""; }; + A5814C732538171100CF4451 /* Runtime.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Runtime.h; sourceTree = ""; }; + A5814C742538171100CF4451 /* LegacySpiSmmFlash.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = LegacySpiSmmFlash.h; sourceTree = ""; }; + A5814C752538171100CF4451 /* PlatformToDriverConfiguration.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PlatformToDriverConfiguration.h; sourceTree = ""; }; + A5814C762538171100CF4451 /* Timer.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Timer.h; sourceTree = ""; }; + A5814C772538171100CF4451 /* DevicePathUtilities.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DevicePathUtilities.h; sourceTree = ""; }; + A5814C782538171100CF4451 /* PxeBaseCodeCallBack.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PxeBaseCodeCallBack.h; sourceTree = ""; }; + A5814C792538171100CF4451 /* LegacySpiSmmController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = LegacySpiSmmController.h; sourceTree = ""; }; + A5814C7A2538171100CF4451 /* LegacyRegion2.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = LegacyRegion2.h; sourceTree = ""; }; + A5814C7B2538171100CF4451 /* DebugPort.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DebugPort.h; sourceTree = ""; }; + A5814C7C2538171100CF4451 /* Tcp6.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Tcp6.h; sourceTree = ""; }; + A5814C7D2538171100CF4451 /* PciRootBridgeIo.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PciRootBridgeIo.h; sourceTree = ""; }; + A5814C7E2538171100CF4451 /* Pcd.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Pcd.h; sourceTree = ""; }; + A5814C7F2538171100CF4451 /* UgaIo.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = UgaIo.h; sourceTree = ""; }; + A5814C802538171100CF4451 /* SpiSmmNorFlash.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SpiSmmNorFlash.h; sourceTree = ""; }; + A5814C812538171100CF4451 /* Hash2.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Hash2.h; sourceTree = ""; }; + A5814C822538171100CF4451 /* SpiConfiguration.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SpiConfiguration.h; sourceTree = ""; }; + A5814C832538171100CF4451 /* SuperIoControl.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SuperIoControl.h; sourceTree = ""; }; + A5814C842538171100CF4451 /* DevicePath.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DevicePath.h; sourceTree = ""; }; + A5814C852538171100CF4451 /* TapeIo.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = TapeIo.h; sourceTree = ""; }; + A5814C862538171100CF4451 /* SmmCpu.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SmmCpu.h; sourceTree = ""; }; + A5814C872538171100CF4451 /* DriverSupportedEfiVersion.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DriverSupportedEfiVersion.h; sourceTree = ""; }; + A5814C882538171100CF4451 /* StorageSecurityCommand.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = StorageSecurityCommand.h; sourceTree = ""; }; + A5814C892538171100CF4451 /* UserManager.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = UserManager.h; sourceTree = ""; }; + A5814C8A2538171100CF4451 /* PiPcd.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PiPcd.h; sourceTree = ""; }; + A5814C8B2538171100CF4451 /* SecurityPolicy.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SecurityPolicy.h; sourceTree = ""; }; + A5814C8C2538171100CF4451 /* UsbFunctionIo.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = UsbFunctionIo.h; sourceTree = ""; }; + A5814C8D2538171100CF4451 /* BusSpecificDriverOverride.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = BusSpecificDriverOverride.h; sourceTree = ""; }; + A5814C8E2538171100CF4451 /* MmSwDispatch.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MmSwDispatch.h; sourceTree = ""; }; + A5814C8F2538171100CF4451 /* Supplicant.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Supplicant.h; sourceTree = ""; }; + A5814C902538171100CF4451 /* Udp6.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Udp6.h; sourceTree = ""; }; + A5814C912538171100CF4451 /* SmmReadyToLock.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SmmReadyToLock.h; sourceTree = ""; }; + A5814C922538171100CF4451 /* PciHotPlugRequest.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PciHotPlugRequest.h; sourceTree = ""; }; + A5814C932538171100CF4451 /* AuthenticationInfo.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AuthenticationInfo.h; sourceTree = ""; }; + A5814C942538171100CF4451 /* Ip4Config2.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Ip4Config2.h; sourceTree = ""; }; + A5814C952538171100CF4451 /* MmCommunication.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MmCommunication.h; sourceTree = ""; }; + A5814C962538171100CF4451 /* EapManagement2.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = EapManagement2.h; sourceTree = ""; }; + A5814C972538171100CF4451 /* Decompress.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Decompress.h; sourceTree = ""; }; + A5814C982538171100CF4451 /* PiPcdInfo.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PiPcdInfo.h; sourceTree = ""; }; + A5814C992538171100CF4451 /* PciHostBridgeResourceAllocation.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PciHostBridgeResourceAllocation.h; sourceTree = ""; }; + A5814C9A2538171100CF4451 /* HiiPackageList.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HiiPackageList.h; sourceTree = ""; }; + A5814C9B2538171100CF4451 /* SpiIo.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SpiIo.h; sourceTree = ""; }; + A5814C9C2538171100CF4451 /* HiiImage.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HiiImage.h; sourceTree = ""; }; + A5814C9D2538171100CF4451 /* Pkcs7Verify.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Pkcs7Verify.h; sourceTree = ""; }; + A5814C9E2538171100CF4451 /* SmmGpiDispatch2.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SmmGpiDispatch2.h; sourceTree = ""; }; + A5814C9F2538171100CF4451 /* SmmCommunication.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SmmCommunication.h; sourceTree = ""; }; + A5814CA02538171100CF4451 /* NvmExpressPassthru.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = NvmExpressPassthru.h; sourceTree = ""; }; + A5814CA12538171100CF4451 /* IpSecConfig.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = IpSecConfig.h; sourceTree = ""; }; + A5814CA22538171100CF4451 /* DeferredImageLoad.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DeferredImageLoad.h; sourceTree = ""; }; + A5814CA32538171100CF4451 /* MmUsbDispatch.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MmUsbDispatch.h; sourceTree = ""; }; + A5814CA42538171100CF4451 /* SmmStandbyButtonDispatch2.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SmmStandbyButtonDispatch2.h; sourceTree = ""; }; + A5814CA52538171100CF4451 /* Capsule.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Capsule.h; sourceTree = ""; }; + A5814CA62538171100CF4451 /* SuperIo.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SuperIo.h; sourceTree = ""; }; + A5814CA72538171100CF4451 /* RegularExpressionProtocol.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = RegularExpressionProtocol.h; sourceTree = ""; }; + A5814CA82538171100CF4451 /* IdeControllerInit.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = IdeControllerInit.h; sourceTree = ""; }; + A5814CA92538171100CF4451 /* Cpu.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Cpu.h; sourceTree = ""; }; + A5814CAA2538171100CF4451 /* AbsolutePointer.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AbsolutePointer.h; sourceTree = ""; }; + A5814CAB2538171100CF4451 /* UsbHostController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = UsbHostController.h; sourceTree = ""; }; + A5814CAC2538171100CF4451 /* UsbIo.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = UsbIo.h; sourceTree = ""; }; + A5814CAD2538171100CF4451 /* HiiConfigRouting.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HiiConfigRouting.h; sourceTree = ""; }; + A5814CAE2538171100CF4451 /* BluetoothAttribute.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = BluetoothAttribute.h; sourceTree = ""; }; + A5814CAF2538171100CF4451 /* Ip6.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Ip6.h; sourceTree = ""; }; + A5814CB02538171100CF4451 /* BlockIo2.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = BlockIo2.h; sourceTree = ""; }; + A5814CB12538171100CF4451 /* Dns4.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Dns4.h; sourceTree = ""; }; + A5814CB22538171100CF4451 /* HiiDatabase.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HiiDatabase.h; sourceTree = ""; }; + A5814CB32538171100CF4451 /* HiiImageEx.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HiiImageEx.h; sourceTree = ""; }; + A5814CB42538171100CF4451 /* PciIo.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PciIo.h; sourceTree = ""; }; + A5814CB52538171100CF4451 /* MmPeriodicTimerDispatch.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MmPeriodicTimerDispatch.h; sourceTree = ""; }; + A5814CB62538171100CF4451 /* RamDisk.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = RamDisk.h; sourceTree = ""; }; + A5814CB72538171100CF4451 /* ScsiPassThru.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ScsiPassThru.h; sourceTree = ""; }; + A5814CB82538171100CF4451 /* DiskInfo.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DiskInfo.h; sourceTree = ""; }; + A5814CB92538171100CF4451 /* Bds.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Bds.h; sourceTree = ""; }; + A5814CBA2538171100CF4451 /* SerialIo.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SerialIo.h; sourceTree = ""; }; + A5814CBB2538171100CF4451 /* DriverHealth.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DriverHealth.h; sourceTree = ""; }; + A5814CBC2538171100CF4451 /* Arp.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Arp.h; sourceTree = ""; }; + A5814CBD2538171100CF4451 /* ShellParameters.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ShellParameters.h; sourceTree = ""; }; + A5814CBE2538171100CF4451 /* IncompatiblePciDeviceSupport.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = IncompatiblePciDeviceSupport.h; sourceTree = ""; }; + A5814CBF2538171100CF4451 /* LegacySpiFlash.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = LegacySpiFlash.h; sourceTree = ""; }; + A5814CC02538171100CF4451 /* I2cMaster.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = I2cMaster.h; sourceTree = ""; }; + A5814CC12538171100CF4451 /* Smbios.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Smbios.h; sourceTree = ""; }; + A5814CC22538171100CF4451 /* EapManagement.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = EapManagement.h; sourceTree = ""; }; + A5814CC32538171100CF4451 /* EraseBlock.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = EraseBlock.h; sourceTree = ""; }; + A5814CC42538171100CF4451 /* Tcg2Protocol.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Tcg2Protocol.h; sourceTree = ""; }; + A5814CC52538171100CF4451 /* AcpiSystemDescriptionTable.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AcpiSystemDescriptionTable.h; sourceTree = ""; }; + A5814CC62538171100CF4451 /* PciEnumerationComplete.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PciEnumerationComplete.h; sourceTree = ""; }; + A5814CC72538171100CF4451 /* ResetNotification.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ResetNotification.h; sourceTree = ""; }; + A5814CC82538171100CF4451 /* PciHotPlugInit.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PciHotPlugInit.h; sourceTree = ""; }; + A5814CC92538171100CF4451 /* Kms.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Kms.h; sourceTree = ""; }; + A5814CCA2538171100CF4451 /* MmPciRootBridgeIo.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MmPciRootBridgeIo.h; sourceTree = ""; }; + A5814CCB2538171100CF4451 /* I2cBusConfigurationManagement.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = I2cBusConfigurationManagement.h; sourceTree = ""; }; + A5814CCC2538171100CF4451 /* LoadFile.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = LoadFile.h; sourceTree = ""; }; + A5814CCD2538171100CF4451 /* PcdInfo.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PcdInfo.h; sourceTree = ""; }; + A5814CCE2538171100CF4451 /* WatchdogTimer.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = WatchdogTimer.h; sourceTree = ""; }; + A5814CCF2538171100CF4451 /* SmmEndOfDxe.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SmmEndOfDxe.h; sourceTree = ""; }; + A5814CD02538171100CF4451 /* MmConfiguration.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MmConfiguration.h; sourceTree = ""; }; + A5814CD12538171100CF4451 /* SmmPeriodicTimerDispatch2.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SmmPeriodicTimerDispatch2.h; sourceTree = ""; }; + A5814CD22538171100CF4451 /* S3SaveState.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = S3SaveState.h; sourceTree = ""; }; + A5814CD32538171100CF4451 /* SdMmcPassThru.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SdMmcPassThru.h; sourceTree = ""; }; + A5814CD42538171100CF4451 /* Reset.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Reset.h; sourceTree = ""; }; + A5814CD52538171100CF4451 /* Dhcp6.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Dhcp6.h; sourceTree = ""; }; + A5814CD62538171100CF4451 /* DxeSmmReadyToLock.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DxeSmmReadyToLock.h; sourceTree = ""; }; + A5814CD72538171100CF4451 /* MpService.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MpService.h; sourceTree = ""; }; + A5814CD82538171100CF4451 /* SmmConfiguration.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SmmConfiguration.h; sourceTree = ""; }; + A5814CD92538171100CF4451 /* MmGpiDispatch.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MmGpiDispatch.h; sourceTree = ""; }; + A5814CDA2538171100CF4451 /* SmmControl2.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SmmControl2.h; sourceTree = ""; }; + A5814CDB2538171100CF4451 /* StatusCode.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = StatusCode.h; sourceTree = ""; }; + A5814CDC2538171100CF4451 /* Timestamp.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Timestamp.h; sourceTree = ""; }; + A5814CDD2538171100CF4451 /* BlockIoCrypto.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = BlockIoCrypto.h; sourceTree = ""; }; + A5814CDE2538171100CF4451 /* SmartCardReader.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SmartCardReader.h; sourceTree = ""; }; + A5814CDF2538171100CF4451 /* FirmwareVolumeBlock.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = FirmwareVolumeBlock.h; sourceTree = ""; }; + A5814CE02538171100CF4451 /* HttpBootCallback.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HttpBootCallback.h; sourceTree = ""; }; + A5814CE12538171100CF4451 /* SimpleTextIn.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SimpleTextIn.h; sourceTree = ""; }; + A5814CE22538171100CF4451 /* MmIoTrapDispatch.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MmIoTrapDispatch.h; sourceTree = ""; }; + A5814CE32538171100CF4451 /* Hash.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Hash.h; sourceTree = ""; }; + A5814CE42538171100CF4451 /* VlanConfig.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = VlanConfig.h; sourceTree = ""; }; + A5814CE52538171100CF4451 /* HiiFont.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HiiFont.h; sourceTree = ""; }; + A5814CE62538171100CF4451 /* SmmAccess2.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SmmAccess2.h; sourceTree = ""; }; + A5814CE72538171100CF4451 /* UserCredential2.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = UserCredential2.h; sourceTree = ""; }; + A5814CE82538171100CF4451 /* AcpiTable.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AcpiTable.h; sourceTree = ""; }; + A5814CE92538171100CF4451 /* EdidOverride.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = EdidOverride.h; sourceTree = ""; }; + A5814CEA2538171100CF4451 /* I2cEnumerate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = I2cEnumerate.h; sourceTree = ""; }; + A5814CEB2538171100CF4451 /* BluetoothConfig.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = BluetoothConfig.h; sourceTree = ""; }; + A5814CEC2538171100CF4451 /* BluetoothIo.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = BluetoothIo.h; sourceTree = ""; }; + A5814CED2538171100CF4451 /* MmStandbyButtonDispatch.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MmStandbyButtonDispatch.h; sourceTree = ""; }; + A5814CEE2538171100CF4451 /* Mtftp4.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Mtftp4.h; sourceTree = ""; }; + A5814CEF2538171100CF4451 /* SmmIoTrapDispatch2.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SmmIoTrapDispatch2.h; sourceTree = ""; }; + A5814CF02538171100CF4451 /* SpiSmmHc.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SpiSmmHc.h; sourceTree = ""; }; + A5814CF12538171100CF4451 /* Ebc.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Ebc.h; sourceTree = ""; }; + A5814CF22538171100CF4451 /* DebugSupport.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DebugSupport.h; sourceTree = ""; }; + A5814CF32538171100CF4451 /* ComponentName.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ComponentName.h; sourceTree = ""; }; + A5814CF42538171100CF4451 /* Eap.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Eap.h; sourceTree = ""; }; + A5814CF52538171100CF4451 /* AdapterInformation.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AdapterInformation.h; sourceTree = ""; }; + A5814CF62538171100CF4451 /* SmmBase2.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SmmBase2.h; sourceTree = ""; }; + A5814CF72538171100CF4451 /* SmmPciRootBridgeIo.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SmmPciRootBridgeIo.h; sourceTree = ""; }; + A5814CF82538171100CF4451 /* HttpUtilities.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HttpUtilities.h; sourceTree = ""; }; + A5814CF92538171100CF4451 /* LoadFile2.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = LoadFile2.h; sourceTree = ""; }; + A5814CFB2538171100CF4451 /* PiFirmwareVolume.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PiFirmwareVolume.h; sourceTree = ""; }; + A5814CFC2538171100CF4451 /* PiMmCis.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PiMmCis.h; sourceTree = ""; }; + A5814CFD2538171100CF4451 /* PiDxeCis.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PiDxeCis.h; sourceTree = ""; }; + A5814CFE2538171100CF4451 /* PiStatusCode.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PiStatusCode.h; sourceTree = ""; }; + A5814CFF2538171100CF4451 /* PiBootMode.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PiBootMode.h; sourceTree = ""; }; + A5814D002538171100CF4451 /* PiHob.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PiHob.h; sourceTree = ""; }; + A5814D012538171100CF4451 /* PiPeiCis.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PiPeiCis.h; sourceTree = ""; }; + A5814D022538171100CF4451 /* PiSmmCis.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PiSmmCis.h; sourceTree = ""; }; + A5814D032538171100CF4451 /* PiDependency.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PiDependency.h; sourceTree = ""; }; + A5814D042538171100CF4451 /* PiS3BootScript.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PiS3BootScript.h; sourceTree = ""; }; + A5814D052538171100CF4451 /* PiMultiPhase.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PiMultiPhase.h; sourceTree = ""; }; + A5814D062538171100CF4451 /* PiFirmwareFile.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PiFirmwareFile.h; sourceTree = ""; }; + A5814D072538171100CF4451 /* PiI2c.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PiI2c.h; sourceTree = ""; }; + A5814D082538171100CF4451 /* PiSmm.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PiSmm.h; sourceTree = ""; }; + A5814D0B2538171100CF4451 /* Microcode.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Microcode.h; sourceTree = ""; }; + A5814D0C2538171100CF4451 /* SmramSaveStateMap.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SmramSaveStateMap.h; sourceTree = ""; }; + A5814D0E2538171100CF4451 /* Pentium4Msr.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Pentium4Msr.h; sourceTree = ""; }; + A5814D0F2538171100CF4451 /* GoldmontPlusMsr.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = GoldmontPlusMsr.h; sourceTree = ""; }; + A5814D102538171100CF4451 /* IvyBridgeMsr.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = IvyBridgeMsr.h; sourceTree = ""; }; + A5814D112538171100CF4451 /* BroadwellMsr.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = BroadwellMsr.h; sourceTree = ""; }; + A5814D122538171100CF4451 /* HaswellEMsr.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HaswellEMsr.h; sourceTree = ""; }; + A5814D132538171100CF4451 /* XeonE7Msr.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = XeonE7Msr.h; sourceTree = ""; }; + A5814D142538171100CF4451 /* Core2Msr.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Core2Msr.h; sourceTree = ""; }; + A5814D152538171100CF4451 /* NehalemMsr.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = NehalemMsr.h; sourceTree = ""; }; + A5814D162538171100CF4451 /* SandyBridgeMsr.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SandyBridgeMsr.h; sourceTree = ""; }; + A5814D172538171100CF4451 /* P6Msr.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = P6Msr.h; sourceTree = ""; }; + A5814D182538171100CF4451 /* PentiumMsr.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PentiumMsr.h; sourceTree = ""; }; + A5814D192538171100CF4451 /* SilvermontMsr.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SilvermontMsr.h; sourceTree = ""; }; + A5814D1A2538171100CF4451 /* Xeon5600Msr.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Xeon5600Msr.h; sourceTree = ""; }; + A5814D1B2538171100CF4451 /* SkylakeMsr.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SkylakeMsr.h; sourceTree = ""; }; + A5814D1C2538171100CF4451 /* CoreMsr.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = CoreMsr.h; sourceTree = ""; }; + A5814D1D2538171100CF4451 /* XeonDMsr.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = XeonDMsr.h; sourceTree = ""; }; + A5814D1E2538171100CF4451 /* XeonPhiMsr.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = XeonPhiMsr.h; sourceTree = ""; }; + A5814D1F2538171100CF4451 /* PentiumMMsr.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PentiumMMsr.h; sourceTree = ""; }; + A5814D202538171100CF4451 /* GoldmontMsr.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = GoldmontMsr.h; sourceTree = ""; }; + A5814D212538171100CF4451 /* HaswellMsr.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HaswellMsr.h; sourceTree = ""; }; + A5814D222538171100CF4451 /* AtomMsr.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AtomMsr.h; sourceTree = ""; }; + A5814D232538171100CF4451 /* Cpuid.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Cpuid.h; sourceTree = ""; }; + A5814D242538171100CF4451 /* StmStatusCode.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = StmStatusCode.h; sourceTree = ""; }; + A5814D252538171100CF4451 /* StmResourceDescriptor.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = StmResourceDescriptor.h; sourceTree = ""; }; + A5814D262538171100CF4451 /* LocalApic.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = LocalApic.h; sourceTree = ""; }; + A5814D272538171100CF4451 /* StmApi.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = StmApi.h; sourceTree = ""; }; + A5814D282538171100CF4451 /* ArchitecturalMsr.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ArchitecturalMsr.h; sourceTree = ""; }; + A5814D292538171100CF4451 /* Msr.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Msr.h; sourceTree = ""; }; + A5814D2B2538171100CF4451 /* Cpuid.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Cpuid.h; sourceTree = ""; }; + A5814D2C2538171100CF4451 /* Fam17Msr.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Fam17Msr.h; sourceTree = ""; }; + A5814D2D2538171100CF4451 /* Msr.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Msr.h; sourceTree = ""; }; + A5814D2E2538171100CF4451 /* PiDxe.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PiDxe.h; sourceTree = ""; }; + A5814D302538171100CF4451 /* MdePkgTokenSpace.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MdePkgTokenSpace.h; sourceTree = ""; }; + A5814D312538171100CF4451 /* SmramMemoryReserve.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SmramMemoryReserve.h; sourceTree = ""; }; + A5814D322538171100CF4451 /* FileInfo.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = FileInfo.h; sourceTree = ""; }; + A5814D332538171100CF4451 /* SystemResourceTable.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SystemResourceTable.h; sourceTree = ""; }; + A5814D342538171100CF4451 /* AprioriFileName.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AprioriFileName.h; sourceTree = ""; }; + A5814D352538171100CF4451 /* PropertiesTable.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PropertiesTable.h; sourceTree = ""; }; + A5814D362538171100CF4451 /* MemoryAllocationHob.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MemoryAllocationHob.h; sourceTree = ""; }; + A5814D372538171100CF4451 /* EventGroup.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = EventGroup.h; sourceTree = ""; }; + A5814D382538171100CF4451 /* FirmwareFileSystem3.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = FirmwareFileSystem3.h; sourceTree = ""; }; + A5814D392538171100CF4451 /* Cper.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Cper.h; sourceTree = ""; }; + A5814D3A2538171100CF4451 /* MemoryOverwriteControl.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MemoryOverwriteControl.h; sourceTree = ""; }; + A5814D3B2538171100CF4451 /* Gpt.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Gpt.h; sourceTree = ""; }; + A5814D3C2538171100CF4451 /* MemoryAttributesTable.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MemoryAttributesTable.h; sourceTree = ""; }; + A5814D3D2538171100CF4451 /* EventLegacyBios.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = EventLegacyBios.h; sourceTree = ""; }; + A5814D3E2538171100CF4451 /* FmpCapsule.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = FmpCapsule.h; sourceTree = ""; }; + A5814D3F2538171100CF4451 /* FirmwareContentsSigned.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = FirmwareContentsSigned.h; sourceTree = ""; }; + A5814D402538171100CF4451 /* Acpi.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Acpi.h; sourceTree = ""; }; + A5814D412538171100CF4451 /* Apriori.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Apriori.h; sourceTree = ""; }; + A5814D422538171100CF4451 /* DxeServices.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DxeServices.h; sourceTree = ""; }; + A5814D432538171100CF4451 /* Btt.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Btt.h; sourceTree = ""; }; + A5814D442538171100CF4451 /* HobList.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HobList.h; sourceTree = ""; }; + A5814D452538171100CF4451 /* GraphicsInfoHob.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = GraphicsInfoHob.h; sourceTree = ""; }; + A5814D462538171100CF4451 /* HiiFormMapMethodGuid.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HiiFormMapMethodGuid.h; sourceTree = ""; }; + A5814D472538171100CF4451 /* FileSystemVolumeLabelInfo.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = FileSystemVolumeLabelInfo.h; sourceTree = ""; }; + A5814D482538171100CF4451 /* FirmwareFileSystem2.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = FirmwareFileSystem2.h; sourceTree = ""; }; + A5814D492538171100CF4451 /* StatusCodeDataTypeId.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = StatusCodeDataTypeId.h; sourceTree = ""; }; + A5814D4A2538171100CF4451 /* DebugImageInfoTable.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DebugImageInfoTable.h; sourceTree = ""; }; + A5814D4B2538171100CF4451 /* HiiKeyBoardLayout.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HiiKeyBoardLayout.h; sourceTree = ""; }; + A5814D4C2538171100CF4451 /* WinCertificate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = WinCertificate.h; sourceTree = ""; }; + A5814D4D2538171100CF4451 /* SmBios.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SmBios.h; sourceTree = ""; }; + A5814D4E2538171100CF4451 /* ImageAuthentication.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ImageAuthentication.h; sourceTree = ""; }; + A5814D4F2538171100CF4451 /* VectorHandoffTable.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = VectorHandoffTable.h; sourceTree = ""; }; + A5814D502538171100CF4451 /* FileSystemInfo.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = FileSystemInfo.h; sourceTree = ""; }; + A5814D512538171100CF4451 /* HardwareErrorVariable.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HardwareErrorVariable.h; sourceTree = ""; }; + A5814D522538171100CF4451 /* Mps.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Mps.h; sourceTree = ""; }; + A5814D532538171100CF4451 /* PcAnsi.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PcAnsi.h; sourceTree = ""; }; + A5814D542538171100CF4451 /* GlobalVariable.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = GlobalVariable.h; sourceTree = ""; }; + A5814D552538171100CF4451 /* HiiPlatformSetupFormset.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HiiPlatformSetupFormset.h; sourceTree = ""; }; + A5814D562538171100CF4451 /* CapsuleReport.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = CapsuleReport.h; sourceTree = ""; }; + A5814D582538171100CF4451 /* PeiCoreFvLocation.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PeiCoreFvLocation.h; sourceTree = ""; }; + A5814D592538171100CF4451 /* SecHobData.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SecHobData.h; sourceTree = ""; }; + A5814D5A2538171100CF4451 /* VectorHandoffInfo.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = VectorHandoffInfo.h; sourceTree = ""; }; + A5814D5B2538171100CF4451 /* ReadOnlyVariable2.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ReadOnlyVariable2.h; sourceTree = ""; }; + A5814D5C2538171100CF4451 /* ReportStatusCodeHandler.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ReportStatusCodeHandler.h; sourceTree = ""; }; + A5814D5D2538171100CF4451 /* S3Resume2.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = S3Resume2.h; sourceTree = ""; }; + A5814D5E2538171100CF4451 /* MmControl.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MmControl.h; sourceTree = ""; }; + A5814D5F2538171100CF4451 /* Reset2.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Reset2.h; sourceTree = ""; }; + A5814D602538171100CF4451 /* Security2.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Security2.h; sourceTree = ""; }; + A5814D612538171100CF4451 /* MmAccess.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MmAccess.h; sourceTree = ""; }; + A5814D622538171100CF4451 /* EndOfPeiPhase.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = EndOfPeiPhase.h; sourceTree = ""; }; + A5814D632538171100CF4451 /* Smbus2.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Smbus2.h; sourceTree = ""; }; + A5814D642538171100CF4451 /* BootInRecoveryMode.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = BootInRecoveryMode.h; sourceTree = ""; }; + A5814D652538171100CF4451 /* IsaHc.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = IsaHc.h; sourceTree = ""; }; + A5814D662538171100CF4451 /* DxeIpl.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DxeIpl.h; sourceTree = ""; }; + A5814D672538171100CF4451 /* GuidedSectionExtraction.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = GuidedSectionExtraction.h; sourceTree = ""; }; + A5814D682538171100CF4451 /* MemoryDiscovered.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MemoryDiscovered.h; sourceTree = ""; }; + A5814D692538171100CF4451 /* BlockIo.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = BlockIo.h; sourceTree = ""; }; + A5814D6A2538171100CF4451 /* Pcd.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Pcd.h; sourceTree = ""; }; + A5814D6B2538171100CF4451 /* LoadImage.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = LoadImage.h; sourceTree = ""; }; + A5814D6C2538171100CF4451 /* FirmwareVolumeInfo2.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = FirmwareVolumeInfo2.h; sourceTree = ""; }; + A5814D6D2538171100CF4451 /* PiPcd.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PiPcd.h; sourceTree = ""; }; + A5814D6E2538171100CF4451 /* Stall.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Stall.h; sourceTree = ""; }; + A5814D6F2538171100CF4451 /* PciCfg2.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PciCfg2.h; sourceTree = ""; }; + A5814D702538171100CF4451 /* Decompress.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Decompress.h; sourceTree = ""; }; + A5814D712538171100CF4451 /* PiPcdInfo.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PiPcdInfo.h; sourceTree = ""; }; + A5814D722538171100CF4451 /* MasterBootMode.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MasterBootMode.h; sourceTree = ""; }; + A5814D732538171100CF4451 /* Capsule.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Capsule.h; sourceTree = ""; }; + A5814D742538171100CF4451 /* SuperIo.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SuperIo.h; sourceTree = ""; }; + A5814D752538171100CF4451 /* BlockIo2.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = BlockIo2.h; sourceTree = ""; }; + A5814D762538171100CF4451 /* FirmwareVolumeInfo.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = FirmwareVolumeInfo.h; sourceTree = ""; }; + A5814D772538171100CF4451 /* I2cMaster.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = I2cMaster.h; sourceTree = ""; }; + A5814D782538171100CF4451 /* RecoveryModule.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = RecoveryModule.h; sourceTree = ""; }; + A5814D792538171100CF4451 /* SecPlatformInformation2.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SecPlatformInformation2.h; sourceTree = ""; }; + A5814D7A2538171100CF4451 /* Graphics.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Graphics.h; sourceTree = ""; }; + A5814D7B2538171100CF4451 /* MpServices.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MpServices.h; sourceTree = ""; }; + A5814D7C2538171100CF4451 /* TemporaryRamSupport.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = TemporaryRamSupport.h; sourceTree = ""; }; + A5814D7D2538171100CF4451 /* TemporaryRamDone.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = TemporaryRamDone.h; sourceTree = ""; }; + A5814D7E2538171100CF4451 /* DeviceRecoveryModule.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DeviceRecoveryModule.h; sourceTree = ""; }; + A5814D7F2538171100CF4451 /* LoadFile.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = LoadFile.h; sourceTree = ""; }; + A5814D802538171100CF4451 /* PcdInfo.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PcdInfo.h; sourceTree = ""; }; + A5814D812538171100CF4451 /* Reset.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Reset.h; sourceTree = ""; }; + A5814D822538171100CF4451 /* StatusCode.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = StatusCode.h; sourceTree = ""; }; + A5814D832538171100CF4451 /* SecPlatformInformation.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SecPlatformInformation.h; sourceTree = ""; }; + A5814D842538171100CF4451 /* CpuIo.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = CpuIo.h; sourceTree = ""; }; + A5814D852538171100CF4451 /* FirmwareVolume.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = FirmwareVolume.h; sourceTree = ""; }; + A5814D862538171100CF4451 /* Base.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Base.h; sourceTree = ""; }; + A5814D892538171100CF4451 /* PeiServicesTablePointerLibIdt.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = PeiServicesTablePointerLibIdt.uni; sourceTree = ""; }; + A5814D8A2538171100CF4451 /* PeiServicesTablePointerLibIdt.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = PeiServicesTablePointerLibIdt.inf; sourceTree = ""; }; + A5814D8B2538171100CF4451 /* PeiServicesTablePointer.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PeiServicesTablePointer.c; sourceTree = ""; }; + A5814D8D2538171100CF4451 /* StandaloneMmServicesTableLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = StandaloneMmServicesTableLib.c; sourceTree = ""; }; + A5814D8E2538171100CF4451 /* StandaloneMmServicesTableLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = StandaloneMmServicesTableLib.inf; sourceTree = ""; }; + A5814D8F2538171100CF4451 /* StandaloneMmServicesTableLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = StandaloneMmServicesTableLib.uni; sourceTree = ""; }; + A5814D912538171100CF4451 /* PeiPciLibPciCfg2.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = PeiPciLibPciCfg2.uni; sourceTree = ""; }; + A5814D922538171100CF4451 /* PeiPciLibPciCfg2.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = PeiPciLibPciCfg2.inf; sourceTree = ""; }; + A5814D932538171100CF4451 /* PciLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PciLib.c; sourceTree = ""; }; + A5814D952538171100CF4451 /* SmbusLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SmbusLib.c; sourceTree = ""; }; + A5814D962538171100CF4451 /* InternalSmbusLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = InternalSmbusLib.h; sourceTree = ""; }; + A5814D972538171100CF4451 /* PeiSmbusLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PeiSmbusLib.c; sourceTree = ""; }; + A5814D982538171100CF4451 /* PeiSmbusLibSmbus2Ppi.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = PeiSmbusLibSmbus2Ppi.inf; sourceTree = ""; }; + A5814D992538171100CF4451 /* PeiSmbusLibSmbus2Ppi.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = PeiSmbusLibSmbus2Ppi.uni; sourceTree = ""; }; + A5814D9B2538171100CF4451 /* BaseDebugPrintErrorLevelLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = BaseDebugPrintErrorLevelLib.c; sourceTree = ""; }; + A5814D9C2538171100CF4451 /* BaseDebugPrintErrorLevelLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = BaseDebugPrintErrorLevelLib.inf; sourceTree = ""; }; + A5814D9D2538171100CF4451 /* BaseDebugPrintErrorLevelLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = BaseDebugPrintErrorLevelLib.uni; sourceTree = ""; }; + A5814D9F2538171100CF4451 /* BaseCacheMaintenanceLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = BaseCacheMaintenanceLib.inf; sourceTree = ""; }; + A5814DA02538171100CF4451 /* BaseCacheMaintenanceLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = BaseCacheMaintenanceLib.uni; sourceTree = ""; }; + A5814DA12538171100CF4451 /* X86Cache.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = X86Cache.c; sourceTree = ""; }; + A5814DA22538171100CF4451 /* ArmCache.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ArmCache.c; sourceTree = ""; }; + A5814DA32538171100CF4451 /* EbcCache.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = EbcCache.c; sourceTree = ""; }; + A5814DA52538171100CF4451 /* IoLibMmioBuffer.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = IoLibMmioBuffer.c; sourceTree = ""; }; + A5814DA62538171100CF4451 /* IoLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = IoLib.c; sourceTree = ""; }; + A5814DA72538171100CF4451 /* IoHighLevel.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = IoHighLevel.c; sourceTree = ""; }; + A5814DA82538171100CF4451 /* DxeIoLibCpuIo2.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = DxeIoLibCpuIo2.uni; sourceTree = ""; }; + A5814DA92538171100CF4451 /* DxeCpuIo2LibInternal.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DxeCpuIo2LibInternal.h; sourceTree = ""; }; + A5814DAA2538171100CF4451 /* DxeIoLibCpuIo2.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = DxeIoLibCpuIo2.inf; sourceTree = ""; }; + A5814DAC2538171100CF4451 /* BasePciLibCf8.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = BasePciLibCf8.inf; sourceTree = ""; }; + A5814DAD2538171100CF4451 /* BasePciLibCf8.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = BasePciLibCf8.uni; sourceTree = ""; }; + A5814DAE2538171100CF4451 /* PciLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PciLib.c; sourceTree = ""; }; + A5814DB02538171100CF4451 /* PeiServicesTablePointerLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = PeiServicesTablePointerLib.uni; sourceTree = ""; }; + A5814DB12538171100CF4451 /* PeiServicesTablePointerLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = PeiServicesTablePointerLib.inf; sourceTree = ""; }; + A5814DB22538171100CF4451 /* PeiServicesTablePointer.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PeiServicesTablePointer.c; sourceTree = ""; }; + A5814DB42538171100CF4451 /* BaseDebugLibNull.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = BaseDebugLibNull.inf; sourceTree = ""; }; + A5814DB52538171100CF4451 /* BaseDebugLibNull.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = BaseDebugLibNull.uni; sourceTree = ""; }; + A5814DB62538171100CF4451 /* DebugLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DebugLib.c; sourceTree = ""; }; + A5814DB82538171100CF4451 /* PciSegmentLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PciSegmentLib.h; sourceTree = ""; }; + A5814DB92538171100CF4451 /* UefiPciSegmentLibPciRootBridgeIo.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = UefiPciSegmentLibPciRootBridgeIo.inf; sourceTree = ""; }; + A5814DBA2538171100CF4451 /* UefiPciSegmentLibPciRootBridgeIo.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = UefiPciSegmentLibPciRootBridgeIo.uni; sourceTree = ""; }; + A5814DBB2538171100CF4451 /* PciSegmentLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PciSegmentLib.c; sourceTree = ""; }; + A5814DBD2538171100CF4451 /* PeiServicesLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = PeiServicesLib.inf; sourceTree = ""; }; + A5814DBE2538171100CF4451 /* PeiServicesLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PeiServicesLib.c; sourceTree = ""; }; + A5814DBF2538171100CF4451 /* PeiServicesLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = PeiServicesLib.uni; sourceTree = ""; }; + A5814DC12538171100CF4451 /* BasePciExpressLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = BasePciExpressLib.uni; sourceTree = ""; }; + A5814DC22538171100CF4451 /* BasePciExpressLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = BasePciExpressLib.inf; sourceTree = ""; }; + A5814DC32538171100CF4451 /* PciExpressLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PciExpressLib.c; sourceTree = ""; }; + A5814DC52538171100CF4451 /* BaseS3SmbusLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = BaseS3SmbusLib.inf; sourceTree = ""; }; + A5814DC62538171100CF4451 /* BaseS3SmbusLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = BaseS3SmbusLib.uni; sourceTree = ""; }; + A5814DC72538171100CF4451 /* S3SmbusLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = S3SmbusLib.c; sourceTree = ""; }; + A5814DC92538171100CF4451 /* Allocate.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Allocate.c; sourceTree = ""; }; + A5814DCA2538171100CF4451 /* DxeServicesLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DxeServicesLib.c; sourceTree = ""; }; + A5814DCC2538171100CF4451 /* Allocate.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Allocate.c; sourceTree = ""; }; + A5814DCD2538171100CF4451 /* DxeServicesLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = DxeServicesLib.uni; sourceTree = ""; }; + A5814DCE2538171100CF4451 /* DxeServicesLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = DxeServicesLib.inf; sourceTree = ""; }; + A5814DD02538171100CF4451 /* X86TimerLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = X86TimerLib.c; sourceTree = ""; }; + A5814DD12538171100CF4451 /* SecPeiDxeTimerLibCpu.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = SecPeiDxeTimerLibCpu.inf; sourceTree = ""; }; + A5814DD22538171100CF4451 /* SecPeiDxeTimerLibCpu.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = SecPeiDxeTimerLibCpu.uni; sourceTree = ""; }; + A5814DD42538171100CF4451 /* StandaloneMmDriverEntryPoint.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = StandaloneMmDriverEntryPoint.inf; sourceTree = ""; }; + A5814DD52538171100CF4451 /* StandaloneMmDriverEntryPoint.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = StandaloneMmDriverEntryPoint.uni; sourceTree = ""; }; + A5814DD62538171100CF4451 /* StandaloneMmDriverEntryPoint.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = StandaloneMmDriverEntryPoint.c; sourceTree = ""; }; + A5814DD82538171100CF4451 /* SmmPciLibPciRootBridgeIo.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = SmmPciLibPciRootBridgeIo.uni; sourceTree = ""; }; + A5814DD92538171100CF4451 /* SmmPciLibPciRootBridgeIo.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = SmmPciLibPciRootBridgeIo.inf; sourceTree = ""; }; + A5814DDA2538171100CF4451 /* PciLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PciLib.c; sourceTree = ""; }; + A5814DDC2538171100CF4451 /* SwapBytes32.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SwapBytes32.c; sourceTree = ""; }; + A5814DDD2538171100CF4451 /* X86ReadIdtr.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = X86ReadIdtr.c; sourceTree = ""; }; + A5814DDF2538171100CF4451 /* CpuBreakpoint.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = CpuBreakpoint.c; sourceTree = ""; }; + A5814DE02538171100CF4451 /* SwitchStack.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SwitchStack.c; sourceTree = ""; }; + A5814DE12538171100CF4451 /* SetJumpLongJump.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SetJumpLongJump.c; sourceTree = ""; }; + A5814DE22538171100CF4451 /* SpeculationBarrier.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SpeculationBarrier.c; sourceTree = ""; }; + A5814DE32538171100CF4451 /* BaseLibInternals.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = BaseLibInternals.h; sourceTree = ""; }; + A5814DE42538171100CF4451 /* DivS64x64Remainder.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DivS64x64Remainder.c; sourceTree = ""; }; + A5814DE52538171100CF4451 /* X86WriteIdtr.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = X86WriteIdtr.c; sourceTree = ""; }; + A5814DE62538171100CF4451 /* FilePaths.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = FilePaths.c; sourceTree = ""; }; + A5814DE72538171100CF4451 /* BaseLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = BaseLib.uni; sourceTree = ""; }; + A5814DE82538171100CF4451 /* X86FxRestore.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = X86FxRestore.c; sourceTree = ""; }; + A5814DE92538171100CF4451 /* RRotU64.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = RRotU64.c; sourceTree = ""; }; + A5814DEA2538171100CF4451 /* LongJump.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = LongJump.c; sourceTree = ""; }; + A5814DEB2538171100CF4451 /* Cpu.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Cpu.c; sourceTree = ""; }; + A5814DEC2538171100CF4451 /* BaseLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = BaseLib.inf; sourceTree = ""; }; + A5814DED2538171100CF4451 /* GetPowerOfTwo64.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = GetPowerOfTwo64.c; sourceTree = ""; }; + A5814DEF2538171100CF4451 /* WriteMm4.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = WriteMm4.nasm; sourceTree = ""; }; + A5814DF02538171100CF4451 /* WriteDr6.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = WriteDr6.nasm; sourceTree = ""; }; + A5814DF12538171100CF4451 /* Nasm.inc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.pascal; path = Nasm.inc; sourceTree = ""; }; + A5814DF22538171100CF4451 /* WriteTr.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = WriteTr.nasm; sourceTree = ""; }; + A5814DF32538171100CF4451 /* WriteCr4.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = WriteCr4.nasm; sourceTree = ""; }; + A5814DF42538171100CF4451 /* Mwait.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = Mwait.nasm; sourceTree = ""; }; + A5814DF52538171100CF4451 /* ReadFs.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ReadFs.nasm; sourceTree = ""; }; + A5814DF62538171100CF4451 /* ReadDs.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ReadDs.nasm; sourceTree = ""; }; + A5814DF72538171100CF4451 /* FxRestore.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = FxRestore.nasm; sourceTree = ""; }; + A5814DF82538171100CF4451 /* ReadMm4.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ReadMm4.nasm; sourceTree = ""; }; + A5814DF92538171100CF4451 /* ReadDr6.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ReadDr6.nasm; sourceTree = ""; }; + A5814DFA2538171100CF4451 /* CpuPause.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = CpuPause.nasm; sourceTree = ""; }; + A5814DFB2538171100CF4451 /* ReadCr4.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ReadCr4.nasm; sourceTree = ""; }; + A5814DFC2538171100CF4451 /* WriteLdtr.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = WriteLdtr.nasm; sourceTree = ""; }; + A5814DFD2538171100CF4451 /* ReadDr7.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ReadDr7.nasm; sourceTree = ""; }; + A5814DFE2538171100CF4451 /* SwitchStack.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = SwitchStack.nasm; sourceTree = ""; }; + A5814DFF2538171100CF4451 /* ReadMm5.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ReadMm5.nasm; sourceTree = ""; }; + A5814E002538171100CF4451 /* WriteMsr64.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = WriteMsr64.nasm; sourceTree = ""; }; + A5814E012538171100CF4451 /* ReadIdtr.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ReadIdtr.nasm; sourceTree = ""; }; + A5814E022538171100CF4451 /* WriteDr7.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = WriteDr7.nasm; sourceTree = ""; }; + A5814E032538171100CF4451 /* WriteMm5.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = WriteMm5.nasm; sourceTree = ""; }; + A5814E042538171100CF4451 /* ReadMm2.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ReadMm2.nasm; sourceTree = ""; }; + A5814E052538171100CF4451 /* ReadDr0.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ReadDr0.nasm; sourceTree = ""; }; + A5814E062538171100CF4451 /* ReadEs.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ReadEs.nasm; sourceTree = ""; }; + A5814E072538171100CF4451 /* ReadCr2.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ReadCr2.nasm; sourceTree = ""; }; + A5814E082538171100CF4451 /* EnableCache.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = EnableCache.nasm; sourceTree = ""; }; + A5814E092538171100CF4451 /* CpuIdEx.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = CpuIdEx.nasm; sourceTree = ""; }; + A5814E0A2538171100CF4451 /* SetJump.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = SetJump.nasm; sourceTree = ""; }; + A5814E0B2538171100CF4451 /* WriteMm2.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = WriteMm2.nasm; sourceTree = ""; }; + A5814E0C2538171100CF4451 /* EnableInterrupts.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = EnableInterrupts.nasm; sourceTree = ""; }; + A5814E0D2538171100CF4451 /* RdRand.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = RdRand.nasm; sourceTree = ""; }; + A5814E0E2538171100CF4451 /* WriteDr0.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = WriteDr0.nasm; sourceTree = ""; }; + A5814E0F2538171100CF4451 /* DisableCache.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = DisableCache.nasm; sourceTree = ""; }; + A5814E102538171100CF4451 /* WriteCr2.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = WriteCr2.nasm; sourceTree = ""; }; + A5814E112538171100CF4451 /* ReadGs.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ReadGs.nasm; sourceTree = ""; }; + A5814E122538171100CF4451 /* WriteGdtr.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = WriteGdtr.nasm; sourceTree = ""; }; + A5814E132538171100CF4451 /* ReadCs.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ReadCs.nasm; sourceTree = ""; }; + A5814E142538171100CF4451 /* EnableDisableInterrupts.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = EnableDisableInterrupts.nasm; sourceTree = ""; }; + A5814E152538171100CF4451 /* WriteCr3.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = WriteCr3.nasm; sourceTree = ""; }; + A5814E162538171100CF4451 /* WriteDr1.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = WriteDr1.nasm; sourceTree = ""; }; + A5814E172538171100CF4451 /* ReadMsr64.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ReadMsr64.c; sourceTree = ""; }; + A5814E182538171100CF4451 /* WriteMm3.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = WriteMm3.nasm; sourceTree = ""; }; + A5814E192538171100CF4451 /* Thunk16.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = Thunk16.nasm; sourceTree = ""; }; + A5814E1A2538171100CF4451 /* ReadCr3.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ReadCr3.nasm; sourceTree = ""; }; + A5814E1B2538171100CF4451 /* ReadDr1.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ReadDr1.nasm; sourceTree = ""; }; + A5814E1C2538171100CF4451 /* ReadMm3.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ReadMm3.nasm; sourceTree = ""; }; + A5814E1D2538171100CF4451 /* ReadCr0.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ReadCr0.nasm; sourceTree = ""; }; + A5814E1E2538171100CF4451 /* DisableInterrupts.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = DisableInterrupts.nasm; sourceTree = ""; }; + A5814E1F2538171100CF4451 /* ReadDr2.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ReadDr2.nasm; sourceTree = ""; }; + A5814E202538171100CF4451 /* Lfence.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = Lfence.nasm; sourceTree = ""; }; + A5814E212538171100CF4451 /* ReadMm0.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ReadMm0.nasm; sourceTree = ""; }; + A5814E222538171100CF4451 /* DisablePaging64.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = DisablePaging64.nasm; sourceTree = ""; }; + A5814E232538171100CF4451 /* WriteCr0.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = WriteCr0.nasm; sourceTree = ""; }; + A5814E242538171100CF4451 /* WriteDr2.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = WriteDr2.nasm; sourceTree = ""; }; + A5814E252538171100CF4451 /* WriteMm0.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = WriteMm0.nasm; sourceTree = ""; }; + A5814E262538171100CF4451 /* GccInline.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = GccInline.c; sourceTree = ""; }; + A5814E272538171100CF4451 /* CpuBreakpoint.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = CpuBreakpoint.c; sourceTree = ""; }; + A5814E282538171100CF4451 /* WriteMm1.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = WriteMm1.nasm; sourceTree = ""; }; + A5814E292538171100CF4451 /* ReadTr.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ReadTr.nasm; sourceTree = ""; }; + A5814E2A2538171100CF4451 /* WriteDr3.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = WriteDr3.nasm; sourceTree = ""; }; + A5814E2B2538171100CF4451 /* ReadMm1.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ReadMm1.nasm; sourceTree = ""; }; + A5814E2C2538171100CF4451 /* ReadDr3.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ReadDr3.nasm; sourceTree = ""; }; + A5814E2D2538171100CF4451 /* CpuBreakpoint.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = CpuBreakpoint.nasm; sourceTree = ""; }; + A5814E2E2538171100CF4451 /* Invd.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = Invd.nasm; sourceTree = ""; }; + A5814E2F2538171100CF4451 /* LongJump.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = LongJump.nasm; sourceTree = ""; }; + A5814E302538171100CF4451 /* ReadGdtr.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ReadGdtr.nasm; sourceTree = ""; }; + A5814E312538171100CF4451 /* Wbinvd.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = Wbinvd.nasm; sourceTree = ""; }; + A5814E322538171100CF4451 /* ReadEflags.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ReadEflags.nasm; sourceTree = ""; }; + A5814E332538171100CF4451 /* WriteMsr64.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = WriteMsr64.c; sourceTree = ""; }; + A5814E342538171100CF4451 /* Non-existing.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = "Non-existing.c"; sourceTree = ""; }; + A5814E352538171100CF4451 /* WriteDr4.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = WriteDr4.nasm; sourceTree = ""; }; + A5814E362538171100CF4451 /* FlushCacheLine.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = FlushCacheLine.nasm; sourceTree = ""; }; + A5814E372538171100CF4451 /* WriteMm6.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = WriteMm6.nasm; sourceTree = ""; }; + A5814E382538171100CF4451 /* ReadLdtr.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ReadLdtr.nasm; sourceTree = ""; }; + A5814E392538171100CF4451 /* WriteIdtr.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = WriteIdtr.nasm; sourceTree = ""; }; + A5814E3A2538171100CF4451 /* FxSave.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = FxSave.nasm; sourceTree = ""; }; + A5814E3B2538171100CF4451 /* Monitor.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = Monitor.nasm; sourceTree = ""; }; + A5814E3C2538171100CF4451 /* ReadDr4.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ReadDr4.nasm; sourceTree = ""; }; + A5814E3D2538171100CF4451 /* ReadMm6.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ReadMm6.nasm; sourceTree = ""; }; + A5814E3E2538171100CF4451 /* ReadMsr64.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ReadMsr64.nasm; sourceTree = ""; }; + A5814E3F2538171100CF4451 /* ReadMm7.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ReadMm7.nasm; sourceTree = ""; }; + A5814E402538171100CF4451 /* ReadDr5.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ReadDr5.nasm; sourceTree = ""; }; + A5814E412538171100CF4451 /* ReadSs.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ReadSs.nasm; sourceTree = ""; }; + A5814E422538171100CF4451 /* WriteMm7.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = WriteMm7.nasm; sourceTree = ""; }; + A5814E432538171100CF4451 /* CpuId.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = CpuId.nasm; sourceTree = ""; }; + A5814E442538171100CF4451 /* WriteDr5.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = WriteDr5.nasm; sourceTree = ""; }; + A5814E452538171100CF4451 /* ReadPmc.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ReadPmc.nasm; sourceTree = ""; }; + A5814E462538171100CF4451 /* ReadTsc.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ReadTsc.nasm; sourceTree = ""; }; + A5814E472538171100CF4451 /* X86Msr.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = X86Msr.c; sourceTree = ""; }; + A5814E482538171100CF4451 /* DivU64x64Remainder.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DivU64x64Remainder.c; sourceTree = ""; }; + A5814E492538171100CF4451 /* X86Thunk.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = X86Thunk.c; sourceTree = ""; }; + A5814E4A2538171100CF4451 /* CpuDeadLoop.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = CpuDeadLoop.c; sourceTree = ""; }; + A5814E4B2538171100CF4451 /* LowBitSet64.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = LowBitSet64.c; sourceTree = ""; }; + A5814E4C2538171100CF4451 /* LRotU64.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = LRotU64.c; sourceTree = ""; }; + A5814E4D2538171100CF4451 /* X86PatchInstruction.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = X86PatchInstruction.c; sourceTree = ""; }; + A5814E4E2538171100CF4451 /* X86FxSave.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = X86FxSave.c; sourceTree = ""; }; + A5814E4F2538171100CF4451 /* X86GetInterruptState.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = X86GetInterruptState.c; sourceTree = ""; }; + A5814E502538171100CF4451 /* CheckSum.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = CheckSum.c; sourceTree = ""; }; + A5814E512538171100CF4451 /* MultU64x32.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = MultU64x32.c; sourceTree = ""; }; + A5814E522538171100CF4451 /* String.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = String.c; sourceTree = ""; }; + A5814E532538171100CF4451 /* X86DisablePaging32.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = X86DisablePaging32.c; sourceTree = ""; }; + A5814E542538171100CF4451 /* BitField.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = BitField.c; sourceTree = ""; }; + A5814E552538171100CF4451 /* X86EnablePaging64.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = X86EnablePaging64.c; sourceTree = ""; }; + A5814E562538171100CF4451 /* HighBitSet64.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = HighBitSet64.c; sourceTree = ""; }; + A5814E572538171100CF4451 /* LShiftU64.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = LShiftU64.c; sourceTree = ""; }; + A5814E582538171100CF4451 /* SafeString.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SafeString.c; sourceTree = ""; }; + A5814E592538171100CF4451 /* MultS64x64.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = MultS64x64.c; sourceTree = ""; }; + A5814E5A2538171100CF4451 /* Unaligned.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Unaligned.c; sourceTree = ""; }; + A5814E5C2538171100CF4451 /* EnablePaging32.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = EnablePaging32.c; sourceTree = ""; }; + A5814E5D2538171100CF4451 /* WriteMm4.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = WriteMm4.nasm; sourceTree = ""; }; + A5814E5E2538171100CF4451 /* WriteDr3.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = WriteDr3.c; sourceTree = ""; }; + A5814E5F2538171100CF4451 /* ReadGdtr.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ReadGdtr.c; sourceTree = ""; }; + A5814E602538171100CF4451 /* WriteDr6.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = WriteDr6.nasm; sourceTree = ""; }; + A5814E612538171100CF4451 /* WriteTr.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = WriteTr.nasm; sourceTree = ""; }; + A5814E622538171100CF4451 /* WriteCr4.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = WriteCr4.nasm; sourceTree = ""; }; + A5814E632538171100CF4451 /* ReadDr2.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ReadDr2.c; sourceTree = ""; }; + A5814E642538171100CF4451 /* Mwait.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = Mwait.nasm; sourceTree = ""; }; + A5814E652538171100CF4451 /* ReadFs.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ReadFs.nasm; sourceTree = ""; }; + A5814E662538171100CF4451 /* ReadDs.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ReadDs.nasm; sourceTree = ""; }; + A5814E672538171100CF4451 /* FxRestore.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = FxRestore.nasm; sourceTree = ""; }; + A5814E682538171100CF4451 /* ReadSs.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ReadSs.c; sourceTree = ""; }; + A5814E692538171100CF4451 /* ReadMm4.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ReadMm4.nasm; sourceTree = ""; }; + A5814E6A2538171100CF4451 /* DivS64x64Remainder.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DivS64x64Remainder.c; sourceTree = ""; }; + A5814E6B2538171100CF4451 /* Monitor.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Monitor.c; sourceTree = ""; }; + A5814E6C2538171100CF4451 /* ReadDr6.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ReadDr6.nasm; sourceTree = ""; }; + A5814E6D2538171100CF4451 /* WriteGdtr.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = WriteGdtr.c; sourceTree = ""; }; + A5814E6E2538171100CF4451 /* CpuPause.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = CpuPause.nasm; sourceTree = ""; }; + A5814E6F2538171100CF4451 /* ReadDr6.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ReadDr6.c; sourceTree = ""; }; + A5814E702538171100CF4451 /* ReadPmc.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ReadPmc.c; sourceTree = ""; }; + A5814E712538171100CF4451 /* Wbinvd.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Wbinvd.c; sourceTree = ""; }; + A5814E722538171100CF4451 /* DisablePaging32.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DisablePaging32.c; sourceTree = ""; }; + A5814E732538171100CF4451 /* RShiftU64.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = RShiftU64.nasm; sourceTree = ""; }; + A5814E742538171100CF4451 /* ReadCr4.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ReadCr4.nasm; sourceTree = ""; }; + A5814E752538171100CF4451 /* Invd.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Invd.c; sourceTree = ""; }; + A5814E762538171100CF4451 /* WriteDr7.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = WriteDr7.c; sourceTree = ""; }; + A5814E772538171100CF4451 /* WriteMm7.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = WriteMm7.c; sourceTree = ""; }; + A5814E782538171100CF4451 /* RRotU64.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = RRotU64.c; sourceTree = ""; }; + A5814E792538171100CF4451 /* ReadCr2.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ReadCr2.c; sourceTree = ""; }; + A5814E7A2538171100CF4451 /* LShiftU64.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = LShiftU64.nasm; sourceTree = ""; }; + A5814E7B2538171100CF4451 /* ReadTr.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ReadTr.c; sourceTree = ""; }; + A5814E7C2538171100CF4451 /* ReadMm6.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ReadMm6.c; sourceTree = ""; }; + A5814E7D2538171100CF4451 /* WriteLdtr.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = WriteLdtr.nasm; sourceTree = ""; }; + A5814E7E2538171100CF4451 /* ReadDr7.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ReadDr7.nasm; sourceTree = ""; }; + A5814E7F2538171100CF4451 /* ReadMm5.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ReadMm5.nasm; sourceTree = ""; }; + A5814E802538171100CF4451 /* WriteCr3.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = WriteCr3.c; sourceTree = ""; }; + A5814E812538171100CF4451 /* WriteMsr64.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = WriteMsr64.nasm; sourceTree = ""; }; + A5814E822538171100CF4451 /* CpuPause.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = CpuPause.c; sourceTree = ""; }; + A5814E832538171100CF4451 /* ReadMm2.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ReadMm2.c; sourceTree = ""; }; + A5814E842538171100CF4451 /* ReadIdtr.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ReadIdtr.nasm; sourceTree = ""; }; + A5814E852538171100CF4451 /* WriteDr7.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = WriteDr7.nasm; sourceTree = ""; }; + A5814E862538171100CF4451 /* CpuIdEx.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = CpuIdEx.c; sourceTree = ""; }; + A5814E872538171100CF4451 /* WriteMm3.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = WriteMm3.c; sourceTree = ""; }; + A5814E882538171100CF4451 /* WriteMm5.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = WriteMm5.nasm; sourceTree = ""; }; + A5814E892538171100CF4451 /* ReadDr1.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ReadDr1.c; sourceTree = ""; }; + A5814E8A2538171100CF4451 /* ReadMm2.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ReadMm2.nasm; sourceTree = ""; }; + A5814E8B2538171100CF4451 /* ReadDr0.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ReadDr0.nasm; sourceTree = ""; }; + A5814E8C2538171100CF4451 /* ReadEs.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ReadEs.nasm; sourceTree = ""; }; + A5814E8D2538171100CF4451 /* ReadEs.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ReadEs.c; sourceTree = ""; }; + A5814E8E2538171100CF4451 /* FlushCacheLine.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = FlushCacheLine.c; sourceTree = ""; }; + A5814E8F2538171100CF4451 /* ReadCr2.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ReadCr2.nasm; sourceTree = ""; }; + A5814E902538171100CF4451 /* WriteDr0.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = WriteDr0.c; sourceTree = ""; }; + A5814E912538171100CF4451 /* DisableInterrupts.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DisableInterrupts.c; sourceTree = ""; }; + A5814E922538171100CF4451 /* EnableCache.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = EnableCache.nasm; sourceTree = ""; }; + A5814E932538171100CF4451 /* CpuIdEx.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = CpuIdEx.nasm; sourceTree = ""; }; + A5814E942538171100CF4451 /* SetJump.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = SetJump.nasm; sourceTree = ""; }; + A5814E952538171100CF4451 /* WriteMm2.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = WriteMm2.nasm; sourceTree = ""; }; + A5814E962538171100CF4451 /* EnableInterrupts.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = EnableInterrupts.nasm; sourceTree = ""; }; + A5814E972538171100CF4451 /* RdRand.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = RdRand.nasm; sourceTree = ""; }; + A5814E982538171100CF4451 /* WriteDr0.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = WriteDr0.nasm; sourceTree = ""; }; + A5814E992538171100CF4451 /* DisableCache.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = DisableCache.nasm; sourceTree = ""; }; + A5814E9A2538171100CF4451 /* LRotU64.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = LRotU64.c; sourceTree = ""; }; + A5814E9B2538171100CF4451 /* WriteDr4.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = WriteDr4.c; sourceTree = ""; }; + A5814E9C2538171100CF4451 /* WriteCr2.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = WriteCr2.nasm; sourceTree = ""; }; + A5814E9D2538171100CF4451 /* ReadGs.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ReadGs.nasm; sourceTree = ""; }; + A5814E9E2538171100CF4451 /* WriteGdtr.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = WriteGdtr.nasm; sourceTree = ""; }; + A5814E9F2538171100CF4451 /* ReadDr5.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ReadDr5.c; sourceTree = ""; }; + A5814EA02538171100CF4451 /* EnableCache.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = EnableCache.c; sourceTree = ""; }; + A5814EA12538171100CF4451 /* ReadMm5.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ReadMm5.c; sourceTree = ""; }; + A5814EA22538171100CF4451 /* ReadCs.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ReadCs.nasm; sourceTree = ""; }; + A5814EA32538171100CF4451 /* EnableInterrupts.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = EnableInterrupts.c; sourceTree = ""; }; + A5814EA42538171100CF4451 /* WriteCr0.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = WriteCr0.c; sourceTree = ""; }; + A5814EA52538171100CF4451 /* EnableDisableInterrupts.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = EnableDisableInterrupts.nasm; sourceTree = ""; }; + A5814EA62538171100CF4451 /* MultU64x32.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = MultU64x32.c; sourceTree = ""; }; + A5814EA72538171100CF4451 /* WriteCr3.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = WriteCr3.nasm; sourceTree = ""; }; + A5814EA82538171100CF4451 /* DivU64x64Remainder.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = DivU64x64Remainder.nasm; sourceTree = ""; }; + A5814EA92538171100CF4451 /* WriteMm4.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = WriteMm4.c; sourceTree = ""; }; + A5814EAA2538171100CF4451 /* WriteDr1.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = WriteDr1.nasm; sourceTree = ""; }; + A5814EAB2538171100CF4451 /* WriteLdtr.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = WriteLdtr.c; sourceTree = ""; }; + A5814EAC2538171100CF4451 /* ReadMsr64.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ReadMsr64.c; sourceTree = ""; }; + A5814EAD2538171100CF4451 /* WriteMm3.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = WriteMm3.nasm; sourceTree = ""; }; + A5814EAE2538171100CF4451 /* Thunk16.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = Thunk16.nasm; sourceTree = ""; }; + A5814EAF2538171100CF4451 /* ReadCr3.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ReadCr3.nasm; sourceTree = ""; }; + A5814EB02538171100CF4451 /* WriteMm0.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = WriteMm0.c; sourceTree = ""; }; + A5814EB12538171100CF4451 /* ReadDs.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ReadDs.c; sourceTree = ""; }; + A5814EB22538171100CF4451 /* FxSave.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = FxSave.c; sourceTree = ""; }; + A5814EB32538171100CF4451 /* WriteCr4.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = WriteCr4.c; sourceTree = ""; }; + A5814EB42538171100CF4451 /* ReadDr1.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ReadDr1.nasm; sourceTree = ""; }; + A5814EB52538171100CF4451 /* ReadMm1.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ReadMm1.c; sourceTree = ""; }; + A5814EB62538171100CF4451 /* ReadMm3.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ReadMm3.nasm; sourceTree = ""; }; + A5814EB72538171100CF4451 /* ReadLdtr.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ReadLdtr.c; sourceTree = ""; }; + A5814EB82538171100CF4451 /* ARShiftU64.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ARShiftU64.nasm; sourceTree = ""; }; + A5814EB92538171100CF4451 /* LShiftU64.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = LShiftU64.c; sourceTree = ""; }; + A5814EBA2538171100CF4451 /* ReadCr0.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ReadCr0.nasm; sourceTree = ""; }; + A5814EBB2538171100CF4451 /* ReadDr0.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ReadDr0.c; sourceTree = ""; }; + A5814EBC2538171100CF4451 /* DisableInterrupts.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = DisableInterrupts.nasm; sourceTree = ""; }; + A5814EBD2538171100CF4451 /* SwapBytes64.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = SwapBytes64.nasm; sourceTree = ""; }; + A5814EBE2538171100CF4451 /* ReadCs.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ReadCs.c; sourceTree = ""; }; + A5814EBF2538171100CF4451 /* ReadDr2.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ReadDr2.nasm; sourceTree = ""; }; + A5814EC02538171100CF4451 /* Lfence.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = Lfence.nasm; sourceTree = ""; }; + A5814EC12538171100CF4451 /* ReadMm0.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ReadMm0.nasm; sourceTree = ""; }; + A5814EC22538171100CF4451 /* WriteDr1.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = WriteDr1.c; sourceTree = ""; }; + A5814EC32538171100CF4451 /* MultU64x64.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = MultU64x64.nasm; sourceTree = ""; }; + A5814EC42538171100CF4451 /* WriteDr5.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = WriteDr5.c; sourceTree = ""; }; + A5814EC52538171100CF4451 /* LRotU64.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = LRotU64.nasm; sourceTree = ""; }; + A5814EC62538171100CF4451 /* Mwait.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Mwait.c; sourceTree = ""; }; + A5814EC72538171100CF4451 /* WriteCr0.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = WriteCr0.nasm; sourceTree = ""; }; + A5814EC82538171100CF4451 /* RRotU64.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = RRotU64.nasm; sourceTree = ""; }; + A5814EC92538171100CF4451 /* ReadDr4.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ReadDr4.c; sourceTree = ""; }; + A5814ECA2538171200CF4451 /* ReadGs.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ReadGs.c; sourceTree = ""; }; + A5814ECB2538171200CF4451 /* WriteDr2.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = WriteDr2.nasm; sourceTree = ""; }; + A5814ECC2538171200CF4451 /* WriteMm0.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = WriteMm0.nasm; sourceTree = ""; }; + A5814ECD2538171200CF4451 /* GccInline.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = GccInline.c; sourceTree = ""; }; + A5814ECE2538171200CF4451 /* CpuBreakpoint.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = CpuBreakpoint.c; sourceTree = ""; }; + A5814ECF2538171200CF4451 /* WriteMm1.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = WriteMm1.nasm; sourceTree = ""; }; + A5814ED02538171200CF4451 /* ReadTr.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ReadTr.nasm; sourceTree = ""; }; + A5814ED12538171200CF4451 /* InternalSwitchStack.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = InternalSwitchStack.c; sourceTree = ""; }; + A5814ED22538171200CF4451 /* DivU64x32.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DivU64x32.c; sourceTree = ""; }; + A5814ED32538171200CF4451 /* ReadMm4.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ReadMm4.c; sourceTree = ""; }; + A5814ED42538171200CF4451 /* DivU64x32Remainder.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DivU64x32Remainder.c; sourceTree = ""; }; + A5814ED52538171200CF4451 /* WriteDr3.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = WriteDr3.nasm; sourceTree = ""; }; + A5814ED62538171200CF4451 /* ReadFs.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ReadFs.c; sourceTree = ""; }; + A5814ED72538171200CF4451 /* ReadCr0.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ReadCr0.c; sourceTree = ""; }; + A5814ED82538171200CF4451 /* CpuId.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = CpuId.c; sourceTree = ""; }; + A5814ED92538171200CF4451 /* MultU64x32.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = MultU64x32.nasm; sourceTree = ""; }; + A5814EDA2538171200CF4451 /* WriteMm5.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = WriteMm5.c; sourceTree = ""; }; + A5814EDB2538171200CF4451 /* DisablePaging32.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = DisablePaging32.nasm; sourceTree = ""; }; + A5814EDC2538171200CF4451 /* SwapBytes64.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SwapBytes64.c; sourceTree = ""; }; + A5814EDD2538171200CF4451 /* RShiftU64.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = RShiftU64.c; sourceTree = ""; }; + A5814EDE2538171200CF4451 /* ReadMm1.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ReadMm1.nasm; sourceTree = ""; }; + A5814EDF2538171200CF4451 /* WriteMm1.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = WriteMm1.c; sourceTree = ""; }; + A5814EE02538171200CF4451 /* ReadDr3.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ReadDr3.nasm; sourceTree = ""; }; + A5814EE12538171200CF4451 /* ReadCr4.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ReadCr4.c; sourceTree = ""; }; + A5814EE22538171200CF4451 /* DivU64x32.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = DivU64x32.nasm; sourceTree = ""; }; + A5814EE32538171200CF4451 /* CpuBreakpoint.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = CpuBreakpoint.nasm; sourceTree = ""; }; + A5814EE42538171200CF4451 /* Invd.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = Invd.nasm; sourceTree = ""; }; + A5814EE52538171200CF4451 /* ReadMm0.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ReadMm0.c; sourceTree = ""; }; + A5814EE62538171200CF4451 /* LongJump.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = LongJump.nasm; sourceTree = ""; }; + A5814EE72538171200CF4451 /* DisableCache.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DisableCache.c; sourceTree = ""; }; + A5814EE82538171200CF4451 /* ReadGdtr.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ReadGdtr.nasm; sourceTree = ""; }; + A5814EE92538171200CF4451 /* Wbinvd.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = Wbinvd.nasm; sourceTree = ""; }; + A5814EEA2538171200CF4451 /* ReadEflags.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ReadEflags.nasm; sourceTree = ""; }; + A5814EEB2538171200CF4451 /* FxRestore.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = FxRestore.c; sourceTree = ""; }; + A5814EEC2538171200CF4451 /* WriteMsr64.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = WriteMsr64.c; sourceTree = ""; }; + A5814EED2538171200CF4451 /* Non-existing.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = "Non-existing.c"; sourceTree = ""; }; + A5814EEE2538171200CF4451 /* WriteDr2.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = WriteDr2.c; sourceTree = ""; }; + A5814EEF2538171200CF4451 /* EnablePaging64.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = EnablePaging64.nasm; sourceTree = ""; }; + A5814EF02538171200CF4451 /* WriteDr4.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = WriteDr4.nasm; sourceTree = ""; }; + A5814EF12538171200CF4451 /* FlushCacheLine.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = FlushCacheLine.nasm; sourceTree = ""; }; + A5814EF22538171200CF4451 /* WriteIdtr.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = WriteIdtr.c; sourceTree = ""; }; + A5814EF32538171200CF4451 /* ReadDr3.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ReadDr3.c; sourceTree = ""; }; + A5814EF42538171200CF4451 /* WriteMm6.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = WriteMm6.nasm; sourceTree = ""; }; + A5814EF52538171200CF4451 /* ReadLdtr.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ReadLdtr.nasm; sourceTree = ""; }; + A5814EF62538171200CF4451 /* ReadDr7.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ReadDr7.c; sourceTree = ""; }; + A5814EF72538171200CF4451 /* ReadEflags.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ReadEflags.c; sourceTree = ""; }; + A5814EF82538171200CF4451 /* WriteIdtr.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = WriteIdtr.nasm; sourceTree = ""; }; + A5814EF92538171200CF4451 /* MultU64x64.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = MultU64x64.c; sourceTree = ""; }; + A5814EFA2538171200CF4451 /* DivU64x32Remainder.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = DivU64x32Remainder.nasm; sourceTree = ""; }; + A5814EFB2538171200CF4451 /* FxSave.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = FxSave.nasm; sourceTree = ""; }; + A5814EFC2538171200CF4451 /* Monitor.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = Monitor.nasm; sourceTree = ""; }; + A5814EFD2538171200CF4451 /* WriteDr6.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = WriteDr6.c; sourceTree = ""; }; + A5814EFE2538171200CF4451 /* ReadDr4.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ReadDr4.nasm; sourceTree = ""; }; + A5814EFF2538171200CF4451 /* ReadMm6.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ReadMm6.nasm; sourceTree = ""; }; + A5814F002538171200CF4451 /* ReadMsr64.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ReadMsr64.nasm; sourceTree = ""; }; + A5814F012538171200CF4451 /* ReadIdtr.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ReadIdtr.c; sourceTree = ""; }; + A5814F022538171200CF4451 /* ARShiftU64.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ARShiftU64.c; sourceTree = ""; }; + A5814F032538171200CF4451 /* ReadCr3.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ReadCr3.c; sourceTree = ""; }; + A5814F042538171200CF4451 /* ReadMm7.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ReadMm7.nasm; sourceTree = ""; }; + A5814F052538171200CF4451 /* ReadDr5.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ReadDr5.nasm; sourceTree = ""; }; + A5814F062538171200CF4451 /* WriteMm6.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = WriteMm6.c; sourceTree = ""; }; + A5814F072538171200CF4451 /* ReadTsc.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ReadTsc.c; sourceTree = ""; }; + A5814F082538171200CF4451 /* WriteCr2.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = WriteCr2.c; sourceTree = ""; }; + A5814F092538171200CF4451 /* ModU64x32.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ModU64x32.c; sourceTree = ""; }; + A5814F0A2538171200CF4451 /* ReadSs.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ReadSs.nasm; sourceTree = ""; }; + A5814F0B2538171200CF4451 /* ReadMm7.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ReadMm7.c; sourceTree = ""; }; + A5814F0C2538171200CF4451 /* EnableDisableInterrupts.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = EnableDisableInterrupts.c; sourceTree = ""; }; + A5814F0D2538171200CF4451 /* WriteMm7.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = WriteMm7.nasm; sourceTree = ""; }; + A5814F0E2538171200CF4451 /* ReadMm3.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ReadMm3.c; sourceTree = ""; }; + A5814F0F2538171200CF4451 /* CpuId.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = CpuId.nasm; sourceTree = ""; }; + A5814F102538171200CF4451 /* InternalSwitchStack.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = InternalSwitchStack.nasm; sourceTree = ""; }; + A5814F112538171200CF4451 /* WriteDr5.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = WriteDr5.nasm; sourceTree = ""; }; + A5814F122538171200CF4451 /* ReadPmc.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ReadPmc.nasm; sourceTree = ""; }; + A5814F132538171200CF4451 /* WriteMm2.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = WriteMm2.c; sourceTree = ""; }; + A5814F142538171200CF4451 /* ModU64x32.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ModU64x32.nasm; sourceTree = ""; }; + A5814F152538171200CF4451 /* ReadTsc.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ReadTsc.nasm; sourceTree = ""; }; + A5814F162538171200CF4451 /* EnablePaging32.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = EnablePaging32.nasm; sourceTree = ""; }; + A5814F172538171200CF4451 /* GetPowerOfTwo32.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = GetPowerOfTwo32.c; sourceTree = ""; }; + A5814F182538171200CF4451 /* Math64.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Math64.c; sourceTree = ""; }; + A5814F192538171200CF4451 /* RRotU32.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = RRotU32.c; sourceTree = ""; }; + A5814F1A2538171200CF4451 /* DivU64x32.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DivU64x32.c; sourceTree = ""; }; + A5814F1B2538171200CF4451 /* DivU64x32Remainder.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DivU64x32Remainder.c; sourceTree = ""; }; + A5814F1C2538171200CF4451 /* X86MemoryFence.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = X86MemoryFence.c; sourceTree = ""; }; + A5814F1D2538171200CF4451 /* SwapBytes64.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SwapBytes64.c; sourceTree = ""; }; + A5814F1E2538171200CF4451 /* RShiftU64.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = RShiftU64.c; sourceTree = ""; }; + A5814F1F2538171200CF4451 /* SwitchStack.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SwitchStack.c; sourceTree = ""; }; + A5814F202538171200CF4451 /* ChkStkGcc.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ChkStkGcc.c; sourceTree = ""; }; + A5814F212538171200CF4451 /* SetJump.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SetJump.c; sourceTree = ""; }; + A5814F222538171200CF4451 /* X86EnablePaging32.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = X86EnablePaging32.c; sourceTree = ""; }; + A5814F232538171200CF4451 /* X86WriteGdtr.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = X86WriteGdtr.c; sourceTree = ""; }; + A5814F242538171200CF4451 /* SwapBytes16.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SwapBytes16.c; sourceTree = ""; }; + A5814F252538171200CF4451 /* HighBitSet32.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = HighBitSet32.c; sourceTree = ""; }; + A5814F262538171200CF4451 /* X86RdRand.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = X86RdRand.c; sourceTree = ""; }; + A5814F282538171200CF4451 /* Math64.S */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm; path = Math64.S; sourceTree = ""; }; + A5814F292538171200CF4451 /* CpuPause.asm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm.asm; path = CpuPause.asm; sourceTree = ""; }; + A5814F2A2538171200CF4451 /* EnableInterrupts.asm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm.asm; path = EnableInterrupts.asm; sourceTree = ""; }; + A5814F2B2538171200CF4451 /* SwitchStack.S */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm; path = SwitchStack.S; sourceTree = ""; }; + A5814F2C2538171200CF4451 /* CpuBreakpoint.S */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm; path = CpuBreakpoint.S; sourceTree = ""; }; + A5814F2D2538171200CF4451 /* SetJumpLongJump.asm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm.asm; path = SetJumpLongJump.asm; sourceTree = ""; }; + A5814F2E2538171200CF4451 /* CpuBreakpoint.asm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm.asm; path = CpuBreakpoint.asm; sourceTree = ""; }; + A5814F2F2538171200CF4451 /* GetInterruptsState.S */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm; path = GetInterruptsState.S; sourceTree = ""; }; + A5814F302538171200CF4451 /* MemoryFence.asm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm.asm; path = MemoryFence.asm; sourceTree = ""; }; + A5814F312538171200CF4451 /* SpeculationBarrier.S */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm; path = SpeculationBarrier.S; sourceTree = ""; }; + A5814F322538171200CF4451 /* DisableInterrupts.asm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm.asm; path = DisableInterrupts.asm; sourceTree = ""; }; + A5814F332538171200CF4451 /* SetJumpLongJump.S */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm; path = SetJumpLongJump.S; sourceTree = ""; }; + A5814F342538171200CF4451 /* GetInterruptsState.asm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm.asm; path = GetInterruptsState.asm; sourceTree = ""; }; + A5814F352538171200CF4451 /* Unaligned.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Unaligned.c; sourceTree = ""; }; + A5814F362538171200CF4451 /* InternalSwitchStack.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = InternalSwitchStack.c; sourceTree = ""; }; + A5814F372538171200CF4451 /* SpeculationBarrier.asm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm.asm; path = SpeculationBarrier.asm; sourceTree = ""; }; + A5814F382538171200CF4451 /* MemoryFence.S */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm; path = MemoryFence.S; sourceTree = ""; }; + A5814F392538171200CF4451 /* DisableInterrupts.S */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm; path = DisableInterrupts.S; sourceTree = ""; }; + A5814F3A2538171200CF4451 /* SwitchStack.asm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm.asm; path = SwitchStack.asm; sourceTree = ""; }; + A5814F3B2538171200CF4451 /* EnableInterrupts.S */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm; path = EnableInterrupts.S; sourceTree = ""; }; + A5814F3C2538171200CF4451 /* MultU64x64.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = MultU64x64.c; sourceTree = ""; }; + A5814F3D2538171200CF4451 /* X86DisablePaging64.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = X86DisablePaging64.c; sourceTree = ""; }; + A5814F3E2538171200CF4451 /* X86ReadGdtr.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = X86ReadGdtr.c; sourceTree = ""; }; + A5814F3F2538171200CF4451 /* ARShiftU64.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ARShiftU64.c; sourceTree = ""; }; + A5814F412538171200CF4451 /* EnableInterrupts.asm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm.asm; path = EnableInterrupts.asm; sourceTree = ""; }; + A5814F422538171200CF4451 /* SwitchStack.S */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm; path = SwitchStack.S; sourceTree = ""; }; + A5814F432538171200CF4451 /* CpuBreakpoint.S */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm; path = CpuBreakpoint.S; sourceTree = ""; }; + A5814F442538171200CF4451 /* SetJumpLongJump.asm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm.asm; path = SetJumpLongJump.asm; sourceTree = ""; }; + A5814F452538171200CF4451 /* CpuBreakpoint.asm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm.asm; path = CpuBreakpoint.asm; sourceTree = ""; }; + A5814F462538171200CF4451 /* GetInterruptsState.S */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm; path = GetInterruptsState.S; sourceTree = ""; }; + A5814F472538171200CF4451 /* MemoryFence.asm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm.asm; path = MemoryFence.asm; sourceTree = ""; }; + A5814F482538171200CF4451 /* SpeculationBarrier.S */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm; path = SpeculationBarrier.S; sourceTree = ""; }; + A5814F492538171200CF4451 /* DisableInterrupts.asm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm.asm; path = DisableInterrupts.asm; sourceTree = ""; }; + A5814F4A2538171200CF4451 /* SetJumpLongJump.S */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm; path = SetJumpLongJump.S; sourceTree = ""; }; + A5814F4B2538171200CF4451 /* GetInterruptsState.asm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm.asm; path = GetInterruptsState.asm; sourceTree = ""; }; + A5814F4C2538171200CF4451 /* SpeculationBarrier.asm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm.asm; path = SpeculationBarrier.asm; sourceTree = ""; }; + A5814F4D2538171200CF4451 /* MemoryFence.S */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm; path = MemoryFence.S; sourceTree = ""; }; + A5814F4E2538171200CF4451 /* DisableInterrupts.S */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm; path = DisableInterrupts.S; sourceTree = ""; }; + A5814F4F2538171200CF4451 /* SwitchStack.asm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm.asm; path = SwitchStack.asm; sourceTree = ""; }; + A5814F502538171200CF4451 /* EnableInterrupts.S */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm; path = EnableInterrupts.S; sourceTree = ""; }; + A5814F512538171200CF4451 /* LowBitSet32.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = LowBitSet32.c; sourceTree = ""; }; + A5814F522538171200CF4451 /* LRotU32.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = LRotU32.c; sourceTree = ""; }; + A5814F532538171200CF4451 /* ModU64x32.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ModU64x32.c; sourceTree = ""; }; + A5814F542538171200CF4451 /* LinkedList.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = LinkedList.c; sourceTree = ""; }; + A5814F552538171200CF4451 /* X86SpeculationBarrier.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = X86SpeculationBarrier.c; sourceTree = ""; }; + A5814F572538171200CF4451 /* SetMem64Wrapper.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SetMem64Wrapper.c; sourceTree = ""; }; + A5814F582538171200CF4451 /* ZeroMemWrapper.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ZeroMemWrapper.c; sourceTree = ""; }; + A5814F592538171200CF4451 /* CopyMemWrapper.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = CopyMemWrapper.c; sourceTree = ""; }; + A5814F5A2538171200CF4451 /* ScanMem64Wrapper.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ScanMem64Wrapper.c; sourceTree = ""; }; + A5814F5C2538171200CF4451 /* ZeroMem.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ZeroMem.nasm; sourceTree = ""; }; + A5814F5D2538171200CF4451 /* CompareMem.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = CompareMem.nasm; sourceTree = ""; }; + A5814F5E2538171200CF4451 /* SetMem16.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = SetMem16.nasm; sourceTree = ""; }; + A5814F5F2538171200CF4451 /* ScanMem64.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ScanMem64.nasm; sourceTree = ""; }; + A5814F602538171200CF4451 /* ScanMem32.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ScanMem32.nasm; sourceTree = ""; }; + A5814F612538171200CF4451 /* SetMem.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = SetMem.nasm; sourceTree = ""; }; + A5814F622538171200CF4451 /* IsZeroBuffer.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = IsZeroBuffer.nasm; sourceTree = ""; }; + A5814F632538171200CF4451 /* SetMem64.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = SetMem64.nasm; sourceTree = ""; }; + A5814F642538171200CF4451 /* ScanMem8.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ScanMem8.nasm; sourceTree = ""; }; + A5814F652538171200CF4451 /* SetMem32.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = SetMem32.nasm; sourceTree = ""; }; + A5814F662538171200CF4451 /* ScanMem16.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ScanMem16.nasm; sourceTree = ""; }; + A5814F672538171200CF4451 /* CopyMem.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = CopyMem.nasm; sourceTree = ""; }; + A5814F682538171200CF4451 /* ScanMem8Wrapper.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ScanMem8Wrapper.c; sourceTree = ""; }; + A5814F692538171200CF4451 /* SetMem32Wrapper.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SetMem32Wrapper.c; sourceTree = ""; }; + A5814F6B2538171200CF4451 /* ZeroMem.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ZeroMem.nasm; sourceTree = ""; }; + A5814F6C2538171200CF4451 /* CompareMem.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = CompareMem.nasm; sourceTree = ""; }; + A5814F6D2538171200CF4451 /* SetMem16.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = SetMem16.nasm; sourceTree = ""; }; + A5814F6E2538171200CF4451 /* ScanMem64.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ScanMem64.nasm; sourceTree = ""; }; + A5814F6F2538171200CF4451 /* ScanMem32.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ScanMem32.nasm; sourceTree = ""; }; + A5814F702538171200CF4451 /* SetMem.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = SetMem.nasm; sourceTree = ""; }; + A5814F712538171200CF4451 /* IsZeroBuffer.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = IsZeroBuffer.nasm; sourceTree = ""; }; + A5814F722538171200CF4451 /* SetMem64.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = SetMem64.nasm; sourceTree = ""; }; + A5814F732538171200CF4451 /* ScanMem8.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ScanMem8.nasm; sourceTree = ""; }; + A5814F742538171200CF4451 /* SetMem32.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = SetMem32.nasm; sourceTree = ""; }; + A5814F752538171200CF4451 /* ScanMem16.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ScanMem16.nasm; sourceTree = ""; }; + A5814F762538171200CF4451 /* CopyMem.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = CopyMem.nasm; sourceTree = ""; }; + A5814F772538171200CF4451 /* ScanMem32Wrapper.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ScanMem32Wrapper.c; sourceTree = ""; }; + A5814F782538171200CF4451 /* IsZeroBufferWrapper.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = IsZeroBufferWrapper.c; sourceTree = ""; }; + A5814F792538171200CF4451 /* SetMemWrapper.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SetMemWrapper.c; sourceTree = ""; }; + A5814F7A2538171200CF4451 /* CompareMemWrapper.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = CompareMemWrapper.c; sourceTree = ""; }; + A5814F7B2538171200CF4451 /* SetMem16Wrapper.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SetMem16Wrapper.c; sourceTree = ""; }; + A5814F7C2538171200CF4451 /* BaseMemoryLibRepStr.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = BaseMemoryLibRepStr.uni; sourceTree = ""; }; + A5814F7D2538171200CF4451 /* MemLibGuid.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = MemLibGuid.c; sourceTree = ""; }; + A5814F7E2538171200CF4451 /* MemLibInternals.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MemLibInternals.h; sourceTree = ""; }; + A5814F7F2538171200CF4451 /* ScanMem16Wrapper.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ScanMem16Wrapper.c; sourceTree = ""; }; + A5814F802538171200CF4451 /* BaseMemoryLibRepStr.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = BaseMemoryLibRepStr.inf; sourceTree = ""; }; + A5814F822538171200CF4451 /* BaseSynchronizationLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = BaseSynchronizationLib.uni; sourceTree = ""; }; + A5814F842538171200CF4451 /* Synchronization.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Synchronization.c; sourceTree = ""; }; + A5814F852538171200CF4451 /* BaseSynchronizationLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = BaseSynchronizationLib.inf; sourceTree = ""; }; + A5814F872538171200CF4451 /* InterlockedCompareExchange64.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = InterlockedCompareExchange64.c; sourceTree = ""; }; + A5814F882538171200CF4451 /* InterlockedIncrement.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = InterlockedIncrement.nasm; sourceTree = ""; }; + A5814F892538171200CF4451 /* InterlockedCompareExchange16.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = InterlockedCompareExchange16.nasm; sourceTree = ""; }; + A5814F8A2538171200CF4451 /* InterlockedCompareExchange16.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = InterlockedCompareExchange16.c; sourceTree = ""; }; + A5814F8B2538171200CF4451 /* GccInline.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = GccInline.c; sourceTree = ""; }; + A5814F8C2538171200CF4451 /* InterlockedCompareExchange32.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = InterlockedCompareExchange32.c; sourceTree = ""; }; + A5814F8D2538171200CF4451 /* InterlockedCompareExchange64.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = InterlockedCompareExchange64.nasm; sourceTree = ""; }; + A5814F8E2538171200CF4451 /* InterlockedCompareExchange32.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = InterlockedCompareExchange32.nasm; sourceTree = ""; }; + A5814F8F2538171200CF4451 /* InterlockedDecrement.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = InterlockedDecrement.nasm; sourceTree = ""; }; + A5814F902538171200CF4451 /* InterlockedIncrementMsc.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = InterlockedIncrementMsc.c; sourceTree = ""; }; + A5814F922538171200CF4451 /* InterlockedCompareExchange64.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = InterlockedCompareExchange64.c; sourceTree = ""; }; + A5814F932538171200CF4451 /* InternalGetSpinLockProperties.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = InternalGetSpinLockProperties.c; sourceTree = ""; }; + A5814F942538171200CF4451 /* InterlockedIncrement.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = InterlockedIncrement.nasm; sourceTree = ""; }; + A5814F952538171200CF4451 /* InterlockedCompareExchange16.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = InterlockedCompareExchange16.nasm; sourceTree = ""; }; + A5814F962538171200CF4451 /* InterlockedCompareExchange16.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = InterlockedCompareExchange16.c; sourceTree = ""; }; + A5814F972538171200CF4451 /* GccInline.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = GccInline.c; sourceTree = ""; }; + A5814F982538171200CF4451 /* InterlockedCompareExchange32.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = InterlockedCompareExchange32.c; sourceTree = ""; }; + A5814F992538171200CF4451 /* InterlockedCompareExchange64.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = InterlockedCompareExchange64.nasm; sourceTree = ""; }; + A5814F9A2538171200CF4451 /* InterlockedCompareExchange32.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = InterlockedCompareExchange32.nasm; sourceTree = ""; }; + A5814F9B2538171200CF4451 /* InterlockedDecrement.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = InterlockedDecrement.nasm; sourceTree = ""; }; + A5814F9C2538171200CF4451 /* BaseSynchronizationLibInternals.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = BaseSynchronizationLibInternals.h; sourceTree = ""; }; + A5814F9D2538171200CF4451 /* SynchronizationMsc.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SynchronizationMsc.c; sourceTree = ""; }; + A5814F9E2538171200CF4451 /* Synchronization.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Synchronization.c; sourceTree = ""; }; + A5814FA02538171200CF4451 /* Synchronization.S */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm; path = Synchronization.S; sourceTree = ""; }; + A5814FA12538171200CF4451 /* Synchronization.asm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm.asm; path = Synchronization.asm; sourceTree = ""; }; + A5814FA32538171200CF4451 /* Synchronization.S */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm; path = Synchronization.S; sourceTree = ""; }; + A5814FA42538171200CF4451 /* Synchronization.asm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm.asm; path = Synchronization.asm; sourceTree = ""; }; + A5814FA52538171200CF4451 /* SynchronizationGcc.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SynchronizationGcc.c; sourceTree = ""; }; + A5814FA62538171200CF4451 /* InterlockedDecrementMsc.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = InterlockedDecrementMsc.c; sourceTree = ""; }; + A5814FA82538171200CF4451 /* SetMem64Wrapper.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SetMem64Wrapper.c; sourceTree = ""; }; + A5814FA92538171200CF4451 /* ZeroMemWrapper.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ZeroMemWrapper.c; sourceTree = ""; }; + A5814FAA2538171200CF4451 /* CopyMemWrapper.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = CopyMemWrapper.c; sourceTree = ""; }; + A5814FAB2538171200CF4451 /* ScanMem64Wrapper.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ScanMem64Wrapper.c; sourceTree = ""; }; + A5814FAC2538171200CF4451 /* MemLibGeneric.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = MemLibGeneric.c; sourceTree = ""; }; + A5814FAD2538171200CF4451 /* ScanMem8Wrapper.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ScanMem8Wrapper.c; sourceTree = ""; }; + A5814FAE2538171200CF4451 /* SetMem32Wrapper.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SetMem32Wrapper.c; sourceTree = ""; }; + A5814FAF2538171200CF4451 /* ScanMem32Wrapper.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ScanMem32Wrapper.c; sourceTree = ""; }; + A5814FB02538171200CF4451 /* IsZeroBufferWrapper.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = IsZeroBufferWrapper.c; sourceTree = ""; }; + A5814FB12538171200CF4451 /* SetMemWrapper.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SetMemWrapper.c; sourceTree = ""; }; + A5814FB22538171200CF4451 /* MemLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = MemLib.c; sourceTree = ""; }; + A5814FB32538171200CF4451 /* CompareMemWrapper.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = CompareMemWrapper.c; sourceTree = ""; }; + A5814FB42538171200CF4451 /* UefiMemoryLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = UefiMemoryLib.inf; sourceTree = ""; }; + A5814FB52538171200CF4451 /* SetMem16Wrapper.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SetMem16Wrapper.c; sourceTree = ""; }; + A5814FB62538171200CF4451 /* MemLibGuid.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = MemLibGuid.c; sourceTree = ""; }; + A5814FB72538171200CF4451 /* UefiMemoryLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = UefiMemoryLib.uni; sourceTree = ""; }; + A5814FB82538171200CF4451 /* MemLibInternals.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MemLibInternals.h; sourceTree = ""; }; + A5814FB92538171200CF4451 /* ScanMem16Wrapper.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ScanMem16Wrapper.c; sourceTree = ""; }; + A5814FBB2538171200CF4451 /* PciSegmentLibCommon.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PciSegmentLibCommon.h; sourceTree = ""; }; + A5814FBC2538171200CF4451 /* DxeRuntimePciSegmentLibSegmentInfo.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = DxeRuntimePciSegmentLibSegmentInfo.inf; sourceTree = ""; }; + A5814FBD2538171200CF4451 /* BasePciSegmentLibSegmentInfo.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = BasePciSegmentLibSegmentInfo.inf; sourceTree = ""; }; + A5814FBE2538171200CF4451 /* DxeRuntimePciSegmentLibSegmentInfo.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = DxeRuntimePciSegmentLibSegmentInfo.uni; sourceTree = ""; }; + A5814FBF2538171200CF4451 /* BasePciSegmentLibSegmentInfo.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = BasePciSegmentLibSegmentInfo.uni; sourceTree = ""; }; + A5814FC02538171200CF4451 /* BasePciSegmentLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = BasePciSegmentLib.c; sourceTree = ""; }; + A5814FC12538171200CF4451 /* PciSegmentLibCommon.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PciSegmentLibCommon.c; sourceTree = ""; }; + A5814FC22538171200CF4451 /* DxeRuntimePciSegmentLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DxeRuntimePciSegmentLib.c; sourceTree = ""; }; + A5814FC52538171200CF4451 /* CpuSleepFlushTlb.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = CpuSleepFlushTlb.c; sourceTree = ""; }; + A5814FC72538171200CF4451 /* CpuSleep.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = CpuSleep.nasm; sourceTree = ""; }; + A5814FC82538171200CF4451 /* CpuFlushTlb.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = CpuFlushTlb.nasm; sourceTree = ""; }; + A5814FC92538171200CF4451 /* BaseCpuLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = BaseCpuLib.uni; sourceTree = ""; }; + A5814FCA2538171200CF4451 /* BaseCpuLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = BaseCpuLib.inf; sourceTree = ""; }; + A5814FCC2538171200CF4451 /* CpuSleep.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = CpuSleep.c; sourceTree = ""; }; + A5814FCD2538171200CF4451 /* CpuFlushTlbGcc.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = CpuFlushTlbGcc.c; sourceTree = ""; }; + A5814FCE2538171200CF4451 /* CpuFlushTlb.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = CpuFlushTlb.c; sourceTree = ""; }; + A5814FCF2538171200CF4451 /* CpuSleep.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = CpuSleep.nasm; sourceTree = ""; }; + A5814FD02538171200CF4451 /* CpuFlushTlb.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = CpuFlushTlb.nasm; sourceTree = ""; }; + A5814FD12538171200CF4451 /* CpuSleepGcc.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = CpuSleepGcc.c; sourceTree = ""; }; + A5814FD32538171200CF4451 /* CpuFlushTlb.S */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm; path = CpuFlushTlb.S; sourceTree = ""; }; + A5814FD42538171200CF4451 /* CpuFlushTlb.asm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm.asm; path = CpuFlushTlb.asm; sourceTree = ""; }; + A5814FD52538171200CF4451 /* CpuSleep.asm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm.asm; path = CpuSleep.asm; sourceTree = ""; }; + A5814FD62538171200CF4451 /* CpuSleep.S */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm; path = CpuSleep.S; sourceTree = ""; }; + A5814FD82538171200CF4451 /* CpuFlushTlb.S */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm; path = CpuFlushTlb.S; sourceTree = ""; }; + A5814FD92538171200CF4451 /* CpuFlushTlb.asm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm.asm; path = CpuFlushTlb.asm; sourceTree = ""; }; + A5814FDA2538171200CF4451 /* CpuSleep.asm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm.asm; path = CpuSleep.asm; sourceTree = ""; }; + A5814FDB2538171200CF4451 /* CpuSleep.S */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm; path = CpuSleep.S; sourceTree = ""; }; + A5814FDD2538171200CF4451 /* PeiExtractGuidedSectionLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PeiExtractGuidedSectionLib.c; sourceTree = ""; }; + A5814FDE2538171200CF4451 /* PeiExtractGuidedSectionLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = PeiExtractGuidedSectionLib.uni; sourceTree = ""; }; + A5814FDF2538171200CF4451 /* PeiExtractGuidedSectionLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = PeiExtractGuidedSectionLib.inf; sourceTree = ""; }; + A5814FE12538171200CF4451 /* DriverEntryPoint.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DriverEntryPoint.c; sourceTree = ""; }; + A5814FE22538171200CF4451 /* UefiDriverEntryPoint.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = UefiDriverEntryPoint.inf; sourceTree = ""; }; + A5814FE32538171200CF4451 /* UefiDriverEntryPoint.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = UefiDriverEntryPoint.uni; sourceTree = ""; }; + A5814FE52538171200CF4451 /* DebugLibConstructor.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DebugLibConstructor.c; sourceTree = ""; }; + A5814FE62538171200CF4451 /* DebugLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DebugLib.c; sourceTree = ""; }; + A5814FE72538171200CF4451 /* UefiDebugLibDebugPortProtocol.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = UefiDebugLibDebugPortProtocol.uni; sourceTree = ""; }; + A5814FE82538171200CF4451 /* UefiDebugLibDebugPortProtocol.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = UefiDebugLibDebugPortProtocol.inf; sourceTree = ""; }; + A5814FEA2538171200CF4451 /* SmmPciExpressLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = SmmPciExpressLib.inf; sourceTree = ""; }; + A5814FEB2538171200CF4451 /* PciExpressLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PciExpressLib.c; sourceTree = ""; }; + A5814FED2538171200CF4451 /* DxeRuntimePciExpressLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = DxeRuntimePciExpressLib.uni; sourceTree = ""; }; + A5814FEE2538171200CF4451 /* DxeRuntimePciExpressLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = DxeRuntimePciExpressLib.inf; sourceTree = ""; }; + A5814FEF2538171200CF4451 /* PciExpressLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PciExpressLib.c; sourceTree = ""; }; + A5814FF12538171200CF4451 /* SetMem64Wrapper.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SetMem64Wrapper.c; sourceTree = ""; }; + A5814FF22538171200CF4451 /* ZeroMemWrapper.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ZeroMemWrapper.c; sourceTree = ""; }; + A5814FF32538171200CF4451 /* CopyMemWrapper.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = CopyMemWrapper.c; sourceTree = ""; }; + A5814FF42538171200CF4451 /* ScanMem64Wrapper.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ScanMem64Wrapper.c; sourceTree = ""; }; + A5814FF62538171200CF4451 /* ZeroMem.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ZeroMem.nasm; sourceTree = ""; }; + A5814FF72538171200CF4451 /* CompareMem.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = CompareMem.nasm; sourceTree = ""; }; + A5814FF82538171200CF4451 /* SetMem16.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = SetMem16.nasm; sourceTree = ""; }; + A5814FF92538171200CF4451 /* ScanMem64.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ScanMem64.nasm; sourceTree = ""; }; + A5814FFA2538171200CF4451 /* ScanMem32.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ScanMem32.nasm; sourceTree = ""; }; + A5814FFB2538171200CF4451 /* SetMem.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = SetMem.nasm; sourceTree = ""; }; + A5814FFC2538171200CF4451 /* IsZeroBuffer.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = IsZeroBuffer.nasm; sourceTree = ""; }; + A5814FFD2538171200CF4451 /* SetMem64.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = SetMem64.nasm; sourceTree = ""; }; + A5814FFE2538171200CF4451 /* ScanMem8.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ScanMem8.nasm; sourceTree = ""; }; + A5814FFF2538171200CF4451 /* SetMem32.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = SetMem32.nasm; sourceTree = ""; }; + A58150002538171200CF4451 /* ScanMem16.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ScanMem16.nasm; sourceTree = ""; }; + A58150012538171200CF4451 /* CopyMem.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = CopyMem.nasm; sourceTree = ""; }; + A58150022538171200CF4451 /* ScanMem8Wrapper.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ScanMem8Wrapper.c; sourceTree = ""; }; + A58150032538171200CF4451 /* SetMem32Wrapper.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SetMem32Wrapper.c; sourceTree = ""; }; + A58150052538171200CF4451 /* ZeroMem.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ZeroMem.nasm; sourceTree = ""; }; + A58150062538171200CF4451 /* CompareMem.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = CompareMem.nasm; sourceTree = ""; }; + A58150072538171200CF4451 /* SetMem16.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = SetMem16.nasm; sourceTree = ""; }; + A58150082538171200CF4451 /* ScanMem64.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ScanMem64.nasm; sourceTree = ""; }; + A58150092538171200CF4451 /* ScanMem32.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ScanMem32.nasm; sourceTree = ""; }; + A581500A2538171200CF4451 /* SetMem.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = SetMem.nasm; sourceTree = ""; }; + A581500B2538171200CF4451 /* IsZeroBuffer.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = IsZeroBuffer.nasm; sourceTree = ""; }; + A581500C2538171200CF4451 /* SetMem64.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = SetMem64.nasm; sourceTree = ""; }; + A581500D2538171200CF4451 /* ScanMem8.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ScanMem8.nasm; sourceTree = ""; }; + A581500E2538171200CF4451 /* SetMem32.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = SetMem32.nasm; sourceTree = ""; }; + A581500F2538171200CF4451 /* ScanMem16.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ScanMem16.nasm; sourceTree = ""; }; + A58150102538171200CF4451 /* CopyMem.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = CopyMem.nasm; sourceTree = ""; }; + A58150112538171200CF4451 /* ScanMem32Wrapper.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ScanMem32Wrapper.c; sourceTree = ""; }; + A58150122538171200CF4451 /* IsZeroBufferWrapper.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = IsZeroBufferWrapper.c; sourceTree = ""; }; + A58150132538171200CF4451 /* SetMemWrapper.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SetMemWrapper.c; sourceTree = ""; }; + A58150142538171200CF4451 /* CompareMemWrapper.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = CompareMemWrapper.c; sourceTree = ""; }; + A58150162538171200CF4451 /* ScanMemGeneric.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ScanMemGeneric.c; sourceTree = ""; }; + A58150172538171200CF4451 /* CompareMem.asm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm.asm; path = CompareMem.asm; sourceTree = ""; }; + A58150182538171200CF4451 /* CopyMem.S */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm; path = CopyMem.S; sourceTree = ""; }; + A58150192538171200CF4451 /* SetMem.S */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm; path = SetMem.S; sourceTree = ""; }; + A581501A2538171200CF4451 /* ScanMem.asm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm.asm; path = ScanMem.asm; sourceTree = ""; }; + A581501B2538171200CF4451 /* CopyMem.asm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm.asm; path = CopyMem.asm; sourceTree = ""; }; + A581501C2538171200CF4451 /* CompareMem.S */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm; path = CompareMem.S; sourceTree = ""; }; + A581501D2538171200CF4451 /* MemLibGuid.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = MemLibGuid.c; sourceTree = ""; }; + A581501E2538171200CF4451 /* SetMem.asm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm.asm; path = SetMem.asm; sourceTree = ""; }; + A581501F2538171200CF4451 /* CompareGuid.asm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm.asm; path = CompareGuid.asm; sourceTree = ""; }; + A58150202538171200CF4451 /* CompareGuid.S */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm; path = CompareGuid.S; sourceTree = ""; }; + A58150212538171200CF4451 /* ScanMem.S */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm; path = ScanMem.S; sourceTree = ""; }; + A58150222538171200CF4451 /* BaseMemoryLibOptDxe.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = BaseMemoryLibOptDxe.uni; sourceTree = ""; }; + A58150232538171200CF4451 /* SetMem16Wrapper.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SetMem16Wrapper.c; sourceTree = ""; }; + A58150242538171200CF4451 /* MemLibGuid.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = MemLibGuid.c; sourceTree = ""; }; + A58150262538171200CF4451 /* CopyMem.S */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm; path = CopyMem.S; sourceTree = ""; }; + A58150272538171200CF4451 /* SetMem.S */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm; path = SetMem.S; sourceTree = ""; }; + A58150282538171200CF4451 /* CompareMem.S */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm; path = CompareMem.S; sourceTree = ""; }; + A58150292538171200CF4451 /* CompareGuid.S */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm; path = CompareGuid.S; sourceTree = ""; }; + A581502A2538171200CF4451 /* ScanMem.S */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm; path = ScanMem.S; sourceTree = ""; }; + A581502B2538171200CF4451 /* MemLibInternals.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MemLibInternals.h; sourceTree = ""; }; + A581502C2538171200CF4451 /* BaseMemoryLibOptDxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = BaseMemoryLibOptDxe.inf; sourceTree = ""; }; + A581502D2538171200CF4451 /* ScanMem16Wrapper.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ScanMem16Wrapper.c; sourceTree = ""; }; + A581502F2538171200CF4451 /* PerformanceLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PerformanceLib.c; sourceTree = ""; }; + A58150302538171200CF4451 /* BasePerformanceLibNull.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = BasePerformanceLibNull.inf; sourceTree = ""; }; + A58150312538171200CF4451 /* BasePerformanceLibNull.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = BasePerformanceLibNull.uni; sourceTree = ""; }; + A58150332538171200CF4451 /* BasePciSegmentLibPci.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = BasePciSegmentLibPci.inf; sourceTree = ""; }; + A58150342538171200CF4451 /* BasePciSegmentLibPci.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = BasePciSegmentLibPci.uni; sourceTree = ""; }; + A58150352538171200CF4451 /* PciSegmentLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PciSegmentLib.c; sourceTree = ""; }; + A58150372538171200CF4451 /* PostCode.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PostCode.c; sourceTree = ""; }; + A58150382538171200CF4451 /* PeiDxePostCodeLibReportStatusCode.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = PeiDxePostCodeLibReportStatusCode.inf; sourceTree = ""; }; + A58150392538171200CF4451 /* PeiDxePostCodeLibReportStatusCode.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = PeiDxePostCodeLibReportStatusCode.uni; sourceTree = ""; }; + A581503B2538171200CF4451 /* BasePcdLibNull.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = BasePcdLibNull.uni; sourceTree = ""; }; + A581503C2538171200CF4451 /* BasePcdLibNull.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = BasePcdLibNull.inf; sourceTree = ""; }; + A581503D2538171200CF4451 /* PcdLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PcdLib.c; sourceTree = ""; }; + A581503F2538171200CF4451 /* BaseStackCheckGcc.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = BaseStackCheckGcc.c; sourceTree = ""; }; + A58150402538171200CF4451 /* BaseStackCheckLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = BaseStackCheckLib.uni; sourceTree = ""; }; + A58150412538171200CF4451 /* BaseStackCheckNull.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = BaseStackCheckNull.c; sourceTree = ""; }; + A58150422538171200CF4451 /* BaseStackCheckLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = BaseStackCheckLib.inf; sourceTree = ""; }; + A58150442538171200CF4451 /* BaseRngLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = BaseRngLib.uni; sourceTree = ""; }; + A58150452538171200CF4451 /* BaseRngLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = BaseRngLib.inf; sourceTree = ""; }; + A58150462538171200CF4451 /* BaseRng.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = BaseRng.c; sourceTree = ""; }; + A58150482538171200CF4451 /* DxeCoreEntryPoint.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DxeCoreEntryPoint.c; sourceTree = ""; }; + A58150492538171200CF4451 /* DxeCoreEntryPoint.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = DxeCoreEntryPoint.uni; sourceTree = ""; }; + A581504A2538171200CF4451 /* DxeCoreEntryPoint.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = DxeCoreEntryPoint.inf; sourceTree = ""; }; + A581504C2538171200CF4451 /* PostCode.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PostCode.c; sourceTree = ""; }; + A581504D2538171200CF4451 /* BasePostCodeLibPort80.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = BasePostCodeLibPort80.inf; sourceTree = ""; }; + A581504E2538171200CF4451 /* BasePostCodeLibPort80.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = BasePostCodeLibPort80.uni; sourceTree = ""; }; + A58150502538171200CF4451 /* PeiCoreEntryPoint.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = PeiCoreEntryPoint.uni; sourceTree = ""; }; + A58150512538171200CF4451 /* PeiCoreEntryPoint.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = PeiCoreEntryPoint.inf; sourceTree = ""; }; + A58150522538171200CF4451 /* PeiCoreEntryPoint.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PeiCoreEntryPoint.c; sourceTree = ""; }; + A58150542538171200CF4451 /* BasePeCoffLibInternals.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = BasePeCoffLibInternals.h; sourceTree = ""; }; + A58150552538171200CF4451 /* BasePeCoff.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = BasePeCoff.c; sourceTree = ""; }; + A58150562538171200CF4451 /* PeCoffLoaderEx.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PeCoffLoaderEx.c; sourceTree = ""; }; + A58150582538171200CF4451 /* PeCoffLoaderEx.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PeCoffLoaderEx.c; sourceTree = ""; }; + A58150592538171200CF4451 /* BasePeCoffLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = BasePeCoffLib.uni; sourceTree = ""; }; + A581505A2538171200CF4451 /* BasePeCoffLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = BasePeCoffLib.inf; sourceTree = ""; }; + A581505C2538171200CF4451 /* SmmLibNull.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = SmmLibNull.uni; sourceTree = ""; }; + A581505D2538171200CF4451 /* SmmLibNull.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = SmmLibNull.inf; sourceTree = ""; }; + A581505E2538171200CF4451 /* SmmLibNull.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SmmLibNull.c; sourceTree = ""; }; + A58150602538171200CF4451 /* BasePciCf8Lib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = BasePciCf8Lib.uni; sourceTree = ""; }; + A58150612538171200CF4451 /* BasePciCf8Lib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = BasePciCf8Lib.inf; sourceTree = ""; }; + A58150622538171200CF4451 /* PciCf8Lib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PciCf8Lib.c; sourceTree = ""; }; + A58150642538171200CF4451 /* MmServicesTableLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = MmServicesTableLib.uni; sourceTree = ""; }; + A58150652538171200CF4451 /* MmServicesTableLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = MmServicesTableLib.inf; sourceTree = ""; }; + A58150662538171200CF4451 /* MmServicesTableLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = MmServicesTableLib.c; sourceTree = ""; }; + A58150682538171200CF4451 /* SafeIntLib64.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SafeIntLib64.c; sourceTree = ""; }; + A58150692538171200CF4451 /* SafeIntLibEbc.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SafeIntLibEbc.c; sourceTree = ""; }; + A581506A2538171200CF4451 /* BaseSafeIntLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = BaseSafeIntLib.inf; sourceTree = ""; }; + A581506B2538171200CF4451 /* SafeIntLib32.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SafeIntLib32.c; sourceTree = ""; }; + A581506C2538171200CF4451 /* SafeIntLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SafeIntLib.c; sourceTree = ""; }; + A581506E2538171200CF4451 /* SmmServicesTableLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SmmServicesTableLib.c; sourceTree = ""; }; + A581506F2538171200CF4451 /* SmmServicesTableLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = SmmServicesTableLib.inf; sourceTree = ""; }; + A58150702538171200CF4451 /* SmmServicesTableLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = SmmServicesTableLib.uni; sourceTree = ""; }; + A58150722538171200CF4451 /* DxeExtractGuidedSectionLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = DxeExtractGuidedSectionLib.uni; sourceTree = ""; }; + A58150732538171200CF4451 /* DxeExtractGuidedSectionLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = DxeExtractGuidedSectionLib.inf; sourceTree = ""; }; + A58150742538171200CF4451 /* DxeExtractGuidedSectionLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DxeExtractGuidedSectionLib.c; sourceTree = ""; }; + A58150762538171200CF4451 /* UefiApplicationEntryPoint.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = UefiApplicationEntryPoint.uni; sourceTree = ""; }; + A58150772538171200CF4451 /* UefiApplicationEntryPoint.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = UefiApplicationEntryPoint.inf; sourceTree = ""; }; + A58150782538171200CF4451 /* ApplicationEntryPoint.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ApplicationEntryPoint.c; sourceTree = ""; }; + A581507A2538171200CF4451 /* SetMem64Wrapper.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SetMem64Wrapper.c; sourceTree = ""; }; + A581507B2538171200CF4451 /* ZeroMemWrapper.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ZeroMemWrapper.c; sourceTree = ""; }; + A581507C2538171200CF4451 /* BaseMemoryLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = BaseMemoryLib.inf; sourceTree = ""; }; + A581507D2538171200CF4451 /* CopyMemWrapper.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = CopyMemWrapper.c; sourceTree = ""; }; + A581507E2538171200CF4451 /* ScanMem64Wrapper.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ScanMem64Wrapper.c; sourceTree = ""; }; + A581507F2538171200CF4451 /* BaseMemoryLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = BaseMemoryLib.uni; sourceTree = ""; }; + A58150802538171200CF4451 /* MemLibGeneric.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = MemLibGeneric.c; sourceTree = ""; }; + A58150812538171200CF4451 /* ScanMem8Wrapper.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ScanMem8Wrapper.c; sourceTree = ""; }; + A58150822538171200CF4451 /* SetMem32Wrapper.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SetMem32Wrapper.c; sourceTree = ""; }; + A58150832538171200CF4451 /* CopyMem.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = CopyMem.c; sourceTree = ""; }; + A58150842538171200CF4451 /* SetMem.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SetMem.c; sourceTree = ""; }; + A58150852538171200CF4451 /* ScanMem32Wrapper.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ScanMem32Wrapper.c; sourceTree = ""; }; + A58150862538171200CF4451 /* IsZeroBufferWrapper.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = IsZeroBufferWrapper.c; sourceTree = ""; }; + A58150872538171200CF4451 /* SetMemWrapper.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SetMemWrapper.c; sourceTree = ""; }; + A58150882538171200CF4451 /* CompareMemWrapper.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = CompareMemWrapper.c; sourceTree = ""; }; + A58150892538171200CF4451 /* SetMem16Wrapper.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SetMem16Wrapper.c; sourceTree = ""; }; + A581508A2538171200CF4451 /* MemLibGuid.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = MemLibGuid.c; sourceTree = ""; }; + A581508B2538171200CF4451 /* MemLibInternals.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MemLibInternals.h; sourceTree = ""; }; + A581508C2538171200CF4451 /* ScanMem16Wrapper.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ScanMem16Wrapper.c; sourceTree = ""; }; + A581508E2538171200CF4451 /* IoLibMmioBuffer.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = IoLibMmioBuffer.c; sourceTree = ""; }; + A581508F2538171200CF4451 /* IoLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = IoLib.c; sourceTree = ""; }; + A58150902538171200CF4451 /* IoHighLevel.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = IoHighLevel.c; sourceTree = ""; }; + A58150912538171200CF4451 /* SmmCpuIoLibInternal.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SmmCpuIoLibInternal.h; sourceTree = ""; }; + A58150922538171200CF4451 /* SmmIoLibSmmCpuIo2.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = SmmIoLibSmmCpuIo2.uni; sourceTree = ""; }; + A58150932538171200CF4451 /* SmmIoLibSmmCpuIo2.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = SmmIoLibSmmCpuIo2.inf; sourceTree = ""; }; + A58150952538171200CF4451 /* DxeSmbusLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DxeSmbusLib.c; sourceTree = ""; }; + A58150962538171200CF4451 /* SmbusLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SmbusLib.c; sourceTree = ""; }; + A58150972538171200CF4451 /* InternalSmbusLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = InternalSmbusLib.h; sourceTree = ""; }; + A58150982538171200CF4451 /* DxeSmbusLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = DxeSmbusLib.inf; sourceTree = ""; }; + A58150992538171200CF4451 /* DxeSmbusLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = DxeSmbusLib.uni; sourceTree = ""; }; + A581509B2538171200CF4451 /* BaseSmbusLibNull.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = BaseSmbusLibNull.c; sourceTree = ""; }; + A581509C2538171200CF4451 /* BaseSmbusLibNull.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = BaseSmbusLibNull.uni; sourceTree = ""; }; + A581509D2538171200CF4451 /* BaseSmbusLibNull.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = BaseSmbusLibNull.inf; sourceTree = ""; }; + A581509F2538171200CF4451 /* BaseTimerLibNullTemplate.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = BaseTimerLibNullTemplate.uni; sourceTree = ""; }; + A58150A02538171200CF4451 /* BaseTimerLibNullTemplate.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = BaseTimerLibNullTemplate.inf; sourceTree = ""; }; + A58150A12538171200CF4451 /* TimerLibNull.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = TimerLibNull.c; sourceTree = ""; }; + A58150A32538171200CF4451 /* BaseS3IoLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = BaseS3IoLib.inf; sourceTree = ""; }; + A58150A42538171200CF4451 /* BaseS3IoLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = BaseS3IoLib.uni; sourceTree = ""; }; + A58150A52538171200CF4451 /* S3IoLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = S3IoLib.c; sourceTree = ""; }; + A58150A72538171200CF4451 /* BaseDebugLibSerialPort.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = BaseDebugLibSerialPort.uni; sourceTree = ""; }; + A58150A82538171200CF4451 /* BaseDebugLibSerialPort.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = BaseDebugLibSerialPort.inf; sourceTree = ""; }; + A58150A92538171200CF4451 /* DebugLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DebugLib.c; sourceTree = ""; }; + A58150AB2538171200CF4451 /* SetMem64Wrapper.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SetMem64Wrapper.c; sourceTree = ""; }; + A58150AC2538171200CF4451 /* ZeroMemWrapper.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ZeroMemWrapper.c; sourceTree = ""; }; + A58150AD2538171200CF4451 /* CopyMemWrapper.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = CopyMemWrapper.c; sourceTree = ""; }; + A58150AE2538171200CF4451 /* ScanMem64Wrapper.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ScanMem64Wrapper.c; sourceTree = ""; }; + A58150B02538171200CF4451 /* ZeroMem.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ZeroMem.nasm; sourceTree = ""; }; + A58150B12538171200CF4451 /* CompareMem.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = CompareMem.nasm; sourceTree = ""; }; + A58150B22538171200CF4451 /* SetMem16.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = SetMem16.nasm; sourceTree = ""; }; + A58150B32538171200CF4451 /* ScanMem64.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ScanMem64.nasm; sourceTree = ""; }; + A58150B42538171200CF4451 /* ScanMem32.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ScanMem32.nasm; sourceTree = ""; }; + A58150B52538171200CF4451 /* SetMem.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = SetMem.nasm; sourceTree = ""; }; + A58150B62538171200CF4451 /* IsZeroBuffer.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = IsZeroBuffer.nasm; sourceTree = ""; }; + A58150B72538171200CF4451 /* SetMem64.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = SetMem64.nasm; sourceTree = ""; }; + A58150B82538171200CF4451 /* ScanMem8.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ScanMem8.nasm; sourceTree = ""; }; + A58150B92538171200CF4451 /* SetMem32.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = SetMem32.nasm; sourceTree = ""; }; + A58150BA2538171200CF4451 /* ScanMem16.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ScanMem16.nasm; sourceTree = ""; }; + A58150BB2538171200CF4451 /* CopyMem.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = CopyMem.nasm; sourceTree = ""; }; + A58150BC2538171200CF4451 /* BaseMemoryLibSse2.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = BaseMemoryLibSse2.uni; sourceTree = ""; }; + A58150BD2538171200CF4451 /* ScanMem8Wrapper.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ScanMem8Wrapper.c; sourceTree = ""; }; + A58150BE2538171200CF4451 /* BaseMemoryLibSse2.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = BaseMemoryLibSse2.inf; sourceTree = ""; }; + A58150BF2538171200CF4451 /* SetMem32Wrapper.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SetMem32Wrapper.c; sourceTree = ""; }; + A58150C12538171200CF4451 /* ZeroMem.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ZeroMem.nasm; sourceTree = ""; }; + A58150C22538171200CF4451 /* CompareMem.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = CompareMem.nasm; sourceTree = ""; }; + A58150C32538171200CF4451 /* SetMem16.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = SetMem16.nasm; sourceTree = ""; }; + A58150C42538171200CF4451 /* ScanMem64.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ScanMem64.nasm; sourceTree = ""; }; + A58150C52538171200CF4451 /* ScanMem32.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ScanMem32.nasm; sourceTree = ""; }; + A58150C62538171200CF4451 /* SetMem.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = SetMem.nasm; sourceTree = ""; }; + A58150C72538171200CF4451 /* IsZeroBuffer.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = IsZeroBuffer.nasm; sourceTree = ""; }; + A58150C82538171200CF4451 /* SetMem64.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = SetMem64.nasm; sourceTree = ""; }; + A58150C92538171200CF4451 /* ScanMem8.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ScanMem8.nasm; sourceTree = ""; }; + A58150CA2538171200CF4451 /* SetMem32.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = SetMem32.nasm; sourceTree = ""; }; + A58150CB2538171200CF4451 /* ScanMem16.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ScanMem16.nasm; sourceTree = ""; }; + A58150CC2538171200CF4451 /* CopyMem.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = CopyMem.nasm; sourceTree = ""; }; + A58150CD2538171200CF4451 /* ScanMem32Wrapper.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ScanMem32Wrapper.c; sourceTree = ""; }; + A58150CE2538171200CF4451 /* IsZeroBufferWrapper.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = IsZeroBufferWrapper.c; sourceTree = ""; }; + A58150CF2538171200CF4451 /* SetMemWrapper.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SetMemWrapper.c; sourceTree = ""; }; + A58150D02538171200CF4451 /* CompareMemWrapper.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = CompareMemWrapper.c; sourceTree = ""; }; + A58150D12538171200CF4451 /* SetMem16Wrapper.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SetMem16Wrapper.c; sourceTree = ""; }; + A58150D22538171200CF4451 /* MemLibGuid.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = MemLibGuid.c; sourceTree = ""; }; + A58150D32538171200CF4451 /* MemLibInternals.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MemLibInternals.h; sourceTree = ""; }; + A58150D42538171200CF4451 /* ScanMem16Wrapper.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ScanMem16Wrapper.c; sourceTree = ""; }; + A58150D62538171200CF4451 /* BaseUefiDecompressLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = BaseUefiDecompressLib.uni; sourceTree = ""; }; + A58150D72538171200CF4451 /* BaseUefiDecompressLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = BaseUefiDecompressLib.inf; sourceTree = ""; }; + A58150D82538171200CF4451 /* BaseUefiDecompressLibInternals.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = BaseUefiDecompressLibInternals.h; sourceTree = ""; }; + A58150D92538171200CF4451 /* BaseUefiTianoCustomDecompressLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = BaseUefiTianoCustomDecompressLib.inf; sourceTree = ""; }; + A58150DA2538171200CF4451 /* BaseUefiDecompressLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = BaseUefiDecompressLib.c; sourceTree = ""; }; + A58150DB2538171200CF4451 /* BaseUefiTianoCustomDecompressLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = BaseUefiTianoCustomDecompressLib.c; sourceTree = ""; }; + A58150DD2538171200CF4451 /* BaseSerialPortLibNull.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = BaseSerialPortLibNull.uni; sourceTree = ""; }; + A58150DE2538171200CF4451 /* BaseSerialPortLibNull.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = BaseSerialPortLibNull.inf; sourceTree = ""; }; + A58150DF2538171200CF4451 /* BaseSerialPortLibNull.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = BaseSerialPortLibNull.c; sourceTree = ""; }; + A58150E12538171200CF4451 /* BaseS3BootScriptLibNull.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = BaseS3BootScriptLibNull.inf; sourceTree = ""; }; + A58150E22538171200CF4451 /* BootScriptLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = BootScriptLib.c; sourceTree = ""; }; + A58150E32538171200CF4451 /* BaseS3BootScriptLibNull.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = BaseS3BootScriptLibNull.uni; sourceTree = ""; }; + A58150E52538171200CF4451 /* DxePcdLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DxePcdLib.c; sourceTree = ""; }; + A58150E62538171200CF4451 /* DxePcdLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = DxePcdLib.uni; sourceTree = ""; }; + A58150E72538171200CF4451 /* DxePcdLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = DxePcdLib.inf; sourceTree = ""; }; + A58150E92538171200CF4451 /* SmmPeriodicSmiLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = SmmPeriodicSmiLib.inf; sourceTree = ""; }; + A58150EA2538171200CF4451 /* SmmPeriodicSmiLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = SmmPeriodicSmiLib.uni; sourceTree = ""; }; + A58150EB2538171200CF4451 /* SmmPeriodicSmiLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SmmPeriodicSmiLib.c; sourceTree = ""; }; + A58150ED2538171200CF4451 /* UefiScsiLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = UefiScsiLib.c; sourceTree = ""; }; + A58150EE2538171200CF4451 /* UefiScsiLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = UefiScsiLib.uni; sourceTree = ""; }; + A58150EF2538171200CF4451 /* UefiScsiLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = UefiScsiLib.inf; sourceTree = ""; }; + A58150F12538171200CF4451 /* PeiResourcePublicationLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PeiResourcePublicationLib.c; sourceTree = ""; }; + A58150F22538171200CF4451 /* PeiResourcePublicationLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = PeiResourcePublicationLib.inf; sourceTree = ""; }; + A58150F32538171200CF4451 /* PeiResourcePublicationLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = PeiResourcePublicationLib.uni; sourceTree = ""; }; + A58150F52538171200CF4451 /* DxeHobLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = DxeHobLib.inf; sourceTree = ""; }; + A58150F62538171200CF4451 /* DxeHobLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = DxeHobLib.uni; sourceTree = ""; }; + A58150F72538171200CF4451 /* HobLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = HobLib.c; sourceTree = ""; }; + A58150F92538171200CF4451 /* S3PciSegmentLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = S3PciSegmentLib.c; sourceTree = ""; }; + A58150FA2538171200CF4451 /* BaseS3PciSegmentLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = BaseS3PciSegmentLib.uni; sourceTree = ""; }; + A58150FB2538171200CF4451 /* BaseS3PciSegmentLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = BaseS3PciSegmentLib.inf; sourceTree = ""; }; + A58150FD2538171200CF4451 /* BasePciSegmentInfoLibNull.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = BasePciSegmentInfoLibNull.inf; sourceTree = ""; }; + A58150FE2538171200CF4451 /* BasePciSegmentInfoLibNull.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = BasePciSegmentInfoLibNull.uni; sourceTree = ""; }; + A58150FF2538171200CF4451 /* PciSegmentInfoLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PciSegmentInfoLib.c; sourceTree = ""; }; + A58151012538171200CF4451 /* MemoryAllocationLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = MemoryAllocationLib.c; sourceTree = ""; }; + A58151022538171200CF4451 /* SmmMemoryAllocationLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = SmmMemoryAllocationLib.uni; sourceTree = ""; }; + A58151032538171200CF4451 /* SmmMemoryAllocationLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = SmmMemoryAllocationLib.inf; sourceTree = ""; }; + A58151052538171200CF4451 /* BaseExtractGuidedSectionLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = BaseExtractGuidedSectionLib.uni; sourceTree = ""; }; + A58151062538171300CF4451 /* BaseExtractGuidedSectionLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = BaseExtractGuidedSectionLib.inf; sourceTree = ""; }; + A58151072538171300CF4451 /* BaseExtractGuidedSectionLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = BaseExtractGuidedSectionLib.c; sourceTree = ""; }; + A58151092538171300CF4451 /* UefiBootServicesTableLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = UefiBootServicesTableLib.uni; sourceTree = ""; }; + A581510A2538171300CF4451 /* UefiBootServicesTableLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = UefiBootServicesTableLib.inf; sourceTree = ""; }; + A581510B2538171300CF4451 /* UefiBootServicesTableLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = UefiBootServicesTableLib.c; sourceTree = ""; }; + A581510D2538171300CF4451 /* DebugLibConstructor.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DebugLibConstructor.c; sourceTree = ""; }; + A581510E2538171300CF4451 /* UefiDebugLibStdErr.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = UefiDebugLibStdErr.uni; sourceTree = ""; }; + A581510F2538171300CF4451 /* UefiDebugLibStdErr.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = UefiDebugLibStdErr.inf; sourceTree = ""; }; + A58151102538171300CF4451 /* DebugLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DebugLib.c; sourceTree = ""; }; + A58151122538171300CF4451 /* MemoryAllocationLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = MemoryAllocationLib.c; sourceTree = ""; }; + A58151132538171300CF4451 /* PeiMemoryAllocationLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = PeiMemoryAllocationLib.uni; sourceTree = ""; }; + A58151142538171300CF4451 /* PeiMemoryAllocationLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = PeiMemoryAllocationLib.inf; sourceTree = ""; }; + A58151162538171300CF4451 /* DevicePathUtilities.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DevicePathUtilities.c; sourceTree = ""; }; + A58151172538171300CF4451 /* UefiDevicePathLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = UefiDevicePathLib.c; sourceTree = ""; }; + A58151182538171300CF4451 /* DevicePathFromText.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DevicePathFromText.c; sourceTree = ""; }; + A58151192538171300CF4451 /* UefiDevicePathLibOptionalDevicePathProtocol.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = UefiDevicePathLibOptionalDevicePathProtocol.uni; sourceTree = ""; }; + A581511A2538171300CF4451 /* DevicePathToText.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DevicePathToText.c; sourceTree = ""; }; + A581511B2538171300CF4451 /* UefiDevicePathLibOptionalDevicePathProtocol.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = UefiDevicePathLibOptionalDevicePathProtocol.c; sourceTree = ""; }; + A581511C2538171300CF4451 /* UefiDevicePathLibOptionalDevicePathProtocol.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = UefiDevicePathLibOptionalDevicePathProtocol.inf; sourceTree = ""; }; + A581511D2538171300CF4451 /* UefiDevicePathLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = UefiDevicePathLib.uni; sourceTree = ""; }; + A581511E2538171300CF4451 /* UefiDevicePathLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = UefiDevicePathLib.inf; sourceTree = ""; }; + A581511F2538171300CF4451 /* UefiDevicePathLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = UefiDevicePathLib.h; sourceTree = ""; }; + A58151212538171300CF4451 /* PeiHobLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = PeiHobLib.uni; sourceTree = ""; }; + A58151222538171300CF4451 /* PeiHobLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = PeiHobLib.inf; sourceTree = ""; }; + A58151232538171300CF4451 /* HobLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = HobLib.c; sourceTree = ""; }; + A58151252538171300CF4451 /* SetMem64Wrapper.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SetMem64Wrapper.c; sourceTree = ""; }; + A58151262538171300CF4451 /* ZeroMemWrapper.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ZeroMemWrapper.c; sourceTree = ""; }; + A58151272538171300CF4451 /* CopyMemWrapper.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = CopyMemWrapper.c; sourceTree = ""; }; + A58151282538171300CF4451 /* ScanMem64Wrapper.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ScanMem64Wrapper.c; sourceTree = ""; }; + A58151292538171300CF4451 /* MemLibGeneric.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = MemLibGeneric.c; sourceTree = ""; }; + A581512A2538171300CF4451 /* PeiMemoryLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = PeiMemoryLib.inf; sourceTree = ""; }; + A581512B2538171300CF4451 /* ScanMem8Wrapper.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ScanMem8Wrapper.c; sourceTree = ""; }; + A581512C2538171300CF4451 /* PeiMemoryLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = PeiMemoryLib.uni; sourceTree = ""; }; + A581512D2538171300CF4451 /* SetMem32Wrapper.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SetMem32Wrapper.c; sourceTree = ""; }; + A581512E2538171300CF4451 /* ScanMem32Wrapper.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ScanMem32Wrapper.c; sourceTree = ""; }; + A581512F2538171300CF4451 /* IsZeroBufferWrapper.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = IsZeroBufferWrapper.c; sourceTree = ""; }; + A58151302538171300CF4451 /* SetMemWrapper.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SetMemWrapper.c; sourceTree = ""; }; + A58151312538171300CF4451 /* MemLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = MemLib.c; sourceTree = ""; }; + A58151322538171300CF4451 /* CompareMemWrapper.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = CompareMemWrapper.c; sourceTree = ""; }; + A58151332538171300CF4451 /* SetMem16Wrapper.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SetMem16Wrapper.c; sourceTree = ""; }; + A58151342538171300CF4451 /* MemLibGuid.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = MemLibGuid.c; sourceTree = ""; }; + A58151352538171300CF4451 /* MemLibInternals.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MemLibInternals.h; sourceTree = ""; }; + A58151362538171300CF4451 /* ScanMem16Wrapper.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ScanMem16Wrapper.c; sourceTree = ""; }; + A58151382538171300CF4451 /* BaseIoLibIntrinsic.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = BaseIoLibIntrinsic.inf; sourceTree = ""; }; + A58151392538171300CF4451 /* IoLibEbc.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = IoLibEbc.c; sourceTree = ""; }; + A581513A2538171300CF4451 /* BaseIoLibIntrinsic.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = BaseIoLibIntrinsic.uni; sourceTree = ""; }; + A581513B2538171300CF4451 /* IoLibGcc.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = IoLibGcc.c; sourceTree = ""; }; + A581513C2538171300CF4451 /* BaseIoLibIntrinsicSev.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = BaseIoLibIntrinsicSev.inf; sourceTree = ""; }; + A581513D2538171300CF4451 /* BaseIoLibIntrinsicInternal.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = BaseIoLibIntrinsicInternal.h; sourceTree = ""; }; + A581513E2538171300CF4451 /* IoLibMmioBuffer.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = IoLibMmioBuffer.c; sourceTree = ""; }; + A58151402538171300CF4451 /* IoFifo.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = IoFifo.nasm; sourceTree = ""; }; + A58151412538171300CF4451 /* IoFifoSev.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = IoFifoSev.nasm; sourceTree = ""; }; + A58151422538171300CF4451 /* IoLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = IoLib.c; sourceTree = ""; }; + A58151432538171300CF4451 /* IoHighLevel.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = IoHighLevel.c; sourceTree = ""; }; + A58151442538171300CF4451 /* IoLibMsc.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = IoLibMsc.c; sourceTree = ""; }; + A58151462538171300CF4451 /* IoFifo.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = IoFifo.nasm; sourceTree = ""; }; + A58151472538171300CF4451 /* IoFifoSev.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = IoFifoSev.nasm; sourceTree = ""; }; + A58151482538171300CF4451 /* IoLibArm.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = IoLibArm.c; sourceTree = ""; }; + A581514A2538171300CF4451 /* ArmVirtMmio.S */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm; path = ArmVirtMmio.S; sourceTree = ""; }; + A581514B2538171300CF4451 /* ArmVirtMmio.asm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm.asm; path = ArmVirtMmio.asm; sourceTree = ""; }; + A581514C2538171300CF4451 /* BaseIoLibIntrinsicArmVirt.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = BaseIoLibIntrinsicArmVirt.inf; sourceTree = ""; }; + A581514E2538171300CF4451 /* ArmVirtMmio.S */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm; path = ArmVirtMmio.S; sourceTree = ""; }; + A581514F2538171300CF4451 /* ArmVirtMmio.asm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm.asm; path = ArmVirtMmio.asm; sourceTree = ""; }; + A58151502538171300CF4451 /* IoLibArmVirt.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = IoLibArmVirt.c; sourceTree = ""; }; + A58151512538171300CF4451 /* BaseIoLibIntrinsicArmVirt.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = BaseIoLibIntrinsicArmVirt.uni; sourceTree = ""; }; + A58151532538171300CF4451 /* PeiPciSegmentLibPciCfg2.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = PeiPciSegmentLibPciCfg2.inf; sourceTree = ""; }; + A58151542538171300CF4451 /* PeiPciSegmentLibPciCfg2.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = PeiPciSegmentLibPciCfg2.uni; sourceTree = ""; }; + A58151552538171300CF4451 /* PciSegmentLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PciSegmentLib.c; sourceTree = ""; }; + A58151572538171300CF4451 /* BasePeCoffGetEntryPointLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = BasePeCoffGetEntryPointLib.uni; sourceTree = ""; }; + A58151582538171300CF4451 /* BasePeCoffGetEntryPointLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = BasePeCoffGetEntryPointLib.inf; sourceTree = ""; }; + A58151592538171300CF4451 /* PeCoffGetEntryPoint.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PeCoffGetEntryPoint.c; sourceTree = ""; }; + A581515B2538171300CF4451 /* UefiDevicePathLibDevicePathProtocol.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = UefiDevicePathLibDevicePathProtocol.inf; sourceTree = ""; }; + A581515C2538171300CF4451 /* UefiDevicePathLibDevicePathProtocol.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = UefiDevicePathLibDevicePathProtocol.uni; sourceTree = ""; }; + A581515D2538171300CF4451 /* UefiDevicePathLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = UefiDevicePathLib.c; sourceTree = ""; }; + A581515F2538171300CF4451 /* SmmIoLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SmmIoLib.c; sourceTree = ""; }; + A58151602538171300CF4451 /* SmmIoLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = SmmIoLib.uni; sourceTree = ""; }; + A58151612538171300CF4451 /* SmmIoLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = SmmIoLib.inf; sourceTree = ""; }; + A58151632538171300CF4451 /* HobLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = HobLib.c; sourceTree = ""; }; + A58151642538171300CF4451 /* DxeCoreHobLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = DxeCoreHobLib.inf; sourceTree = ""; }; + A58151652538171300CF4451 /* DxeCoreHobLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = DxeCoreHobLib.uni; sourceTree = ""; }; + A58151672538171300CF4451 /* UefiRuntimeServicesTableLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = UefiRuntimeServicesTableLib.uni; sourceTree = ""; }; + A58151682538171300CF4451 /* UefiRuntimeServicesTableLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = UefiRuntimeServicesTableLib.inf; sourceTree = ""; }; + A58151692538171300CF4451 /* UefiRuntimeServicesTableLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = UefiRuntimeServicesTableLib.c; sourceTree = ""; }; + A581516B2538171300CF4451 /* PeiPcdLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PeiPcdLib.c; sourceTree = ""; }; + A581516C2538171300CF4451 /* PeiPcdLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = PeiPcdLib.inf; sourceTree = ""; }; + A581516D2538171300CF4451 /* PeiPcdLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = PeiPcdLib.uni; sourceTree = ""; }; + A581516F2538171300CF4451 /* SmmMemLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = SmmMemLib.uni; sourceTree = ""; }; + A58151702538171300CF4451 /* SmmMemLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SmmMemLib.c; sourceTree = ""; }; + A58151712538171300CF4451 /* SmmMemLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = SmmMemLib.inf; sourceTree = ""; }; + A58151732538171300CF4451 /* UefiFileHandleLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = UefiFileHandleLib.inf; sourceTree = ""; }; + A58151742538171300CF4451 /* UefiFileHandleLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = UefiFileHandleLib.uni; sourceTree = ""; }; + A58151752538171300CF4451 /* UefiFileHandleLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = UefiFileHandleLib.c; sourceTree = ""; }; + A58151772538171300CF4451 /* DebugLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DebugLib.c; sourceTree = ""; }; + A58151782538171300CF4451 /* DxeRuntimeDebugLibSerialPort.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = DxeRuntimeDebugLibSerialPort.inf; sourceTree = ""; }; + A58151792538171300CF4451 /* DxeRuntimeDebugLibSerialPort.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = DxeRuntimeDebugLibSerialPort.uni; sourceTree = ""; }; + A581517B2538171300CF4451 /* SetMem64Wrapper.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SetMem64Wrapper.c; sourceTree = ""; }; + A581517C2538171300CF4451 /* ZeroMemWrapper.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ZeroMemWrapper.c; sourceTree = ""; }; + A581517D2538171300CF4451 /* CopyMemWrapper.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = CopyMemWrapper.c; sourceTree = ""; }; + A581517E2538171300CF4451 /* ScanMem64Wrapper.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ScanMem64Wrapper.c; sourceTree = ""; }; + A58151802538171300CF4451 /* ZeroMem.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ZeroMem.nasm; sourceTree = ""; }; + A58151812538171300CF4451 /* CompareMem.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = CompareMem.nasm; sourceTree = ""; }; + A58151822538171300CF4451 /* SetMem16.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = SetMem16.nasm; sourceTree = ""; }; + A58151832538171300CF4451 /* ScanMem64.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ScanMem64.nasm; sourceTree = ""; }; + A58151842538171300CF4451 /* ScanMem32.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ScanMem32.nasm; sourceTree = ""; }; + A58151852538171300CF4451 /* SetMem.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = SetMem.nasm; sourceTree = ""; }; + A58151862538171300CF4451 /* IsZeroBuffer.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = IsZeroBuffer.nasm; sourceTree = ""; }; + A58151872538171300CF4451 /* SetMem64.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = SetMem64.nasm; sourceTree = ""; }; + A58151882538171300CF4451 /* ScanMem8.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ScanMem8.nasm; sourceTree = ""; }; + A58151892538171300CF4451 /* SetMem32.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = SetMem32.nasm; sourceTree = ""; }; + A581518A2538171300CF4451 /* ScanMem16.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ScanMem16.nasm; sourceTree = ""; }; + A581518B2538171300CF4451 /* CopyMem.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = CopyMem.nasm; sourceTree = ""; }; + A581518C2538171300CF4451 /* ScanMem8Wrapper.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ScanMem8Wrapper.c; sourceTree = ""; }; + A581518D2538171300CF4451 /* SetMem32Wrapper.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SetMem32Wrapper.c; sourceTree = ""; }; + A581518F2538171300CF4451 /* ZeroMem.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ZeroMem.nasm; sourceTree = ""; }; + A58151902538171300CF4451 /* CompareMem.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = CompareMem.nasm; sourceTree = ""; }; + A58151912538171300CF4451 /* SetMem16.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = SetMem16.nasm; sourceTree = ""; }; + A58151922538171300CF4451 /* ScanMem64.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ScanMem64.nasm; sourceTree = ""; }; + A58151932538171300CF4451 /* ScanMem32.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ScanMem32.nasm; sourceTree = ""; }; + A58151942538171300CF4451 /* SetMem.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = SetMem.nasm; sourceTree = ""; }; + A58151952538171300CF4451 /* IsZeroBuffer.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = IsZeroBuffer.nasm; sourceTree = ""; }; + A58151962538171300CF4451 /* SetMem64.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = SetMem64.nasm; sourceTree = ""; }; + A58151972538171300CF4451 /* ScanMem8.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ScanMem8.nasm; sourceTree = ""; }; + A58151982538171300CF4451 /* SetMem32.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = SetMem32.nasm; sourceTree = ""; }; + A58151992538171300CF4451 /* ScanMem16.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ScanMem16.nasm; sourceTree = ""; }; + A581519A2538171300CF4451 /* CopyMem.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = CopyMem.nasm; sourceTree = ""; }; + A581519B2538171300CF4451 /* ScanMem32Wrapper.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ScanMem32Wrapper.c; sourceTree = ""; }; + A581519C2538171300CF4451 /* IsZeroBufferWrapper.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = IsZeroBufferWrapper.c; sourceTree = ""; }; + A581519D2538171300CF4451 /* SetMemWrapper.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SetMemWrapper.c; sourceTree = ""; }; + A581519E2538171300CF4451 /* CompareMemWrapper.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = CompareMemWrapper.c; sourceTree = ""; }; + A581519F2538171300CF4451 /* SetMem16Wrapper.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SetMem16Wrapper.c; sourceTree = ""; }; + A58151A02538171300CF4451 /* MemLibGuid.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = MemLibGuid.c; sourceTree = ""; }; + A58151A12538171300CF4451 /* BaseMemoryLibMmx.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = BaseMemoryLibMmx.inf; sourceTree = ""; }; + A58151A22538171300CF4451 /* MemLibInternals.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MemLibInternals.h; sourceTree = ""; }; + A58151A32538171300CF4451 /* ScanMem16Wrapper.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ScanMem16Wrapper.c; sourceTree = ""; }; + A58151A42538171300CF4451 /* BaseMemoryLibMmx.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = BaseMemoryLibMmx.uni; sourceTree = ""; }; + A58151A62538171300CF4451 /* BaseOrderedCollectionRedBlackTreeLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = BaseOrderedCollectionRedBlackTreeLib.inf; sourceTree = ""; }; + A58151A72538171300CF4451 /* BaseOrderedCollectionRedBlackTreeLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = BaseOrderedCollectionRedBlackTreeLib.uni; sourceTree = ""; }; + A58151A82538171300CF4451 /* BaseOrderedCollectionRedBlackTreeLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = BaseOrderedCollectionRedBlackTreeLib.c; sourceTree = ""; }; + A58151AA2538171300CF4451 /* UefiMemoryAllocationLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = UefiMemoryAllocationLib.inf; sourceTree = ""; }; + A58151AB2538171300CF4451 /* MemoryAllocationLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = MemoryAllocationLib.c; sourceTree = ""; }; + A58151AC2538171300CF4451 /* UefiMemoryAllocationLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = UefiMemoryAllocationLib.uni; sourceTree = ""; }; + A58151AE2538171300CF4451 /* UefiRuntimeLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = UefiRuntimeLib.uni; sourceTree = ""; }; + A58151AF2538171300CF4451 /* UefiRuntimeLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = UefiRuntimeLib.inf; sourceTree = ""; }; + A58151B02538171300CF4451 /* RuntimeLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = RuntimeLib.c; sourceTree = ""; }; + A58151B22538171300CF4451 /* UefiDebugLibConOut.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = UefiDebugLibConOut.inf; sourceTree = ""; }; + A58151B32538171300CF4451 /* UefiDebugLibConOut.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = UefiDebugLibConOut.uni; sourceTree = ""; }; + A58151B42538171300CF4451 /* DebugLibConstructor.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DebugLibConstructor.c; sourceTree = ""; }; + A58151B52538171300CF4451 /* DebugLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DebugLib.c; sourceTree = ""; }; + A58151B72538171300CF4451 /* BasePciLibPciExpress.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = BasePciLibPciExpress.uni; sourceTree = ""; }; + A58151B82538171300CF4451 /* BasePciLibPciExpress.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = BasePciLibPciExpress.inf; sourceTree = ""; }; + A58151B92538171300CF4451 /* PciLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PciLib.c; sourceTree = ""; }; + A58151BB2538171300CF4451 /* UefiLibPrint.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = UefiLibPrint.c; sourceTree = ""; }; + A58151BC2538171300CF4451 /* UefiLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = UefiLib.uni; sourceTree = ""; }; + A58151BD2538171300CF4451 /* UefiLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = UefiLib.inf; sourceTree = ""; }; + A58151BE2538171300CF4451 /* UefiDriverModel.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = UefiDriverModel.c; sourceTree = ""; }; + A58151BF2538171300CF4451 /* UefiNotTiano.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = UefiNotTiano.c; sourceTree = ""; }; + A58151C02538171300CF4451 /* Console.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Console.c; sourceTree = ""; }; + A58151C12538171300CF4451 /* UefiLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = UefiLib.c; sourceTree = ""; }; + A58151C22538171300CF4451 /* UefiLibInternal.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = UefiLibInternal.h; sourceTree = ""; }; + A58151C32538171300CF4451 /* Acpi.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Acpi.c; sourceTree = ""; }; + A58151C52538171300CF4451 /* DxeHstiLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = DxeHstiLib.uni; sourceTree = ""; }; + A58151C62538171300CF4451 /* HstiDxe.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = HstiDxe.c; sourceTree = ""; }; + A58151C72538171300CF4451 /* DxeHstiLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = DxeHstiLib.inf; sourceTree = ""; }; + A58151C82538171300CF4451 /* HstiAip.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = HstiAip.c; sourceTree = ""; }; + A58151C92538171300CF4451 /* HstiDxe.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HstiDxe.h; sourceTree = ""; }; + A58151CB2538171300CF4451 /* PostCode.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PostCode.c; sourceTree = ""; }; + A58151CC2538171300CF4451 /* BasePostCodeLibDebug.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = BasePostCodeLibDebug.uni; sourceTree = ""; }; + A58151CD2538171300CF4451 /* BasePostCodeLibDebug.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = BasePostCodeLibDebug.inf; sourceTree = ""; }; + A58151CF2538171300CF4451 /* BaseS3StallLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = BaseS3StallLib.inf; sourceTree = ""; }; + A58151D02538171300CF4451 /* BaseS3StallLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = BaseS3StallLib.uni; sourceTree = ""; }; + A58151D12538171300CF4451 /* S3StallLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = S3StallLib.c; sourceTree = ""; }; + A58151D32538171300CF4451 /* SetMem64Wrapper.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SetMem64Wrapper.c; sourceTree = ""; }; + A58151D42538171300CF4451 /* ZeroMemWrapper.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ZeroMemWrapper.c; sourceTree = ""; }; + A58151D52538171300CF4451 /* BaseMemoryLibOptPei.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = BaseMemoryLibOptPei.uni; sourceTree = ""; }; + A58151D62538171300CF4451 /* CopyMemWrapper.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = CopyMemWrapper.c; sourceTree = ""; }; + A58151D72538171300CF4451 /* ScanMem64Wrapper.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ScanMem64Wrapper.c; sourceTree = ""; }; + A58151D82538171300CF4451 /* BaseMemoryLibOptPei.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = BaseMemoryLibOptPei.inf; sourceTree = ""; }; + A58151DA2538171300CF4451 /* ZeroMem.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ZeroMem.nasm; sourceTree = ""; }; + A58151DB2538171300CF4451 /* CompareMem.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = CompareMem.nasm; sourceTree = ""; }; + A58151DC2538171300CF4451 /* SetMem16.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = SetMem16.nasm; sourceTree = ""; }; + A58151DD2538171300CF4451 /* ScanMem64.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ScanMem64.nasm; sourceTree = ""; }; + A58151DE2538171300CF4451 /* ScanMem32.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ScanMem32.nasm; sourceTree = ""; }; + A58151DF2538171300CF4451 /* SetMem.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = SetMem.nasm; sourceTree = ""; }; + A58151E02538171300CF4451 /* IsZeroBuffer.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = IsZeroBuffer.nasm; sourceTree = ""; }; + A58151E12538171300CF4451 /* SetMem64.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = SetMem64.nasm; sourceTree = ""; }; + A58151E22538171300CF4451 /* ScanMem8.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ScanMem8.nasm; sourceTree = ""; }; + A58151E32538171300CF4451 /* SetMem32.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = SetMem32.nasm; sourceTree = ""; }; + A58151E42538171300CF4451 /* ScanMem16.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ScanMem16.nasm; sourceTree = ""; }; + A58151E52538171300CF4451 /* CopyMem.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = CopyMem.nasm; sourceTree = ""; }; + A58151E62538171300CF4451 /* ScanMem8Wrapper.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ScanMem8Wrapper.c; sourceTree = ""; }; + A58151E72538171300CF4451 /* SetMem32Wrapper.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SetMem32Wrapper.c; sourceTree = ""; }; + A58151E92538171300CF4451 /* ZeroMem.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ZeroMem.nasm; sourceTree = ""; }; + A58151EA2538171300CF4451 /* CompareMem.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = CompareMem.nasm; sourceTree = ""; }; + A58151EB2538171300CF4451 /* SetMem16.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = SetMem16.nasm; sourceTree = ""; }; + A58151EC2538171300CF4451 /* ScanMem64.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ScanMem64.nasm; sourceTree = ""; }; + A58151ED2538171300CF4451 /* ScanMem32.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ScanMem32.nasm; sourceTree = ""; }; + A58151EE2538171300CF4451 /* SetMem.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = SetMem.nasm; sourceTree = ""; }; + A58151EF2538171300CF4451 /* IsZeroBuffer.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = IsZeroBuffer.nasm; sourceTree = ""; }; + A58151F02538171300CF4451 /* SetMem64.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = SetMem64.nasm; sourceTree = ""; }; + A58151F12538171300CF4451 /* ScanMem8.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ScanMem8.nasm; sourceTree = ""; }; + A58151F22538171300CF4451 /* SetMem32.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = SetMem32.nasm; sourceTree = ""; }; + A58151F32538171300CF4451 /* ScanMem16.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ScanMem16.nasm; sourceTree = ""; }; + A58151F42538171300CF4451 /* CopyMem.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = CopyMem.nasm; sourceTree = ""; }; + A58151F52538171300CF4451 /* ScanMem32Wrapper.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ScanMem32Wrapper.c; sourceTree = ""; }; + A58151F62538171300CF4451 /* IsZeroBufferWrapper.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = IsZeroBufferWrapper.c; sourceTree = ""; }; + A58151F72538171300CF4451 /* SetMemWrapper.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SetMemWrapper.c; sourceTree = ""; }; + A58151F82538171300CF4451 /* CompareMemWrapper.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = CompareMemWrapper.c; sourceTree = ""; }; + A58151F92538171300CF4451 /* SetMem16Wrapper.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SetMem16Wrapper.c; sourceTree = ""; }; + A58151FA2538171300CF4451 /* MemLibGuid.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = MemLibGuid.c; sourceTree = ""; }; + A58151FB2538171300CF4451 /* MemLibInternals.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MemLibInternals.h; sourceTree = ""; }; + A58151FC2538171300CF4451 /* ScanMem16Wrapper.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ScanMem16Wrapper.c; sourceTree = ""; }; + A58151FE2538171300CF4451 /* UefiPciLibPciRootBridgeIo.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = UefiPciLibPciRootBridgeIo.uni; sourceTree = ""; }; + A58151FF2538171300CF4451 /* UefiPciLibPciRootBridgeIo.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = UefiPciLibPciRootBridgeIo.inf; sourceTree = ""; }; + A58152002538171300CF4451 /* PciLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PciLib.c; sourceTree = ""; }; + A58152022538171300CF4451 /* PeimEntryPoint.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PeimEntryPoint.c; sourceTree = ""; }; + A58152032538171300CF4451 /* PeimEntryPoint.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = PeimEntryPoint.uni; sourceTree = ""; }; + A58152042538171300CF4451 /* PeimEntryPoint.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = PeimEntryPoint.inf; sourceTree = ""; }; + A58152062538171300CF4451 /* SmiHandlerProfileLibNull.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SmiHandlerProfileLibNull.c; sourceTree = ""; }; + A58152072538171300CF4451 /* SmiHandlerProfileLibNull.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = SmiHandlerProfileLibNull.inf; sourceTree = ""; }; + A58152082538171300CF4451 /* SmiHandlerProfileLibNull.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = SmiHandlerProfileLibNull.uni; sourceTree = ""; }; + A581520A2538171300CF4451 /* S3PciLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = S3PciLib.c; sourceTree = ""; }; + A581520B2538171300CF4451 /* BaseS3PciLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = BaseS3PciLib.uni; sourceTree = ""; }; + A581520C2538171300CF4451 /* BaseS3PciLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = BaseS3PciLib.inf; sourceTree = ""; }; + A581520E2538171300CF4451 /* PrintLibInternal.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PrintLibInternal.h; sourceTree = ""; }; + A581520F2538171300CF4451 /* PrintLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PrintLib.c; sourceTree = ""; }; + A58152102538171300CF4451 /* BasePrintLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = BasePrintLib.inf; sourceTree = ""; }; + A58152112538171300CF4451 /* BasePrintLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = BasePrintLib.uni; sourceTree = ""; }; + A58152122538171300CF4451 /* PrintLibInternal.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PrintLibInternal.c; sourceTree = ""; }; + A58152142538171300CF4451 /* IoLibMmioBuffer.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = IoLibMmioBuffer.c; sourceTree = ""; }; + A58152152538171300CF4451 /* IoLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = IoLib.c; sourceTree = ""; }; + A58152162538171300CF4451 /* IoHighLevel.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = IoHighLevel.c; sourceTree = ""; }; + A58152172538171300CF4451 /* PeiIoLibCpuIo.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = PeiIoLibCpuIo.uni; sourceTree = ""; }; + A58152182538171300CF4451 /* PeiIoLibCpuIo.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = PeiIoLibCpuIo.inf; sourceTree = ""; }; + A581521A2538171300CF4451 /* BaseReportStatusCodeLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = BaseReportStatusCodeLib.c; sourceTree = ""; }; + A581521B2538171300CF4451 /* BaseReportStatusCodeLibNull.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = BaseReportStatusCodeLibNull.uni; sourceTree = ""; }; + A581521C2538171300CF4451 /* BaseReportStatusCodeLibNull.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = BaseReportStatusCodeLibNull.inf; sourceTree = ""; }; + A581521E2538171300CF4451 /* DxeServicesTableLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DxeServicesTableLib.c; sourceTree = ""; }; + A581521F2538171300CF4451 /* DxeServicesTableLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = DxeServicesTableLib.inf; sourceTree = ""; }; + A58152202538171300CF4451 /* DxeServicesTableLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = DxeServicesTableLib.uni; sourceTree = ""; }; + A58152222538171300CF4451 /* BasePeCoffExtraActionLibNull.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = BasePeCoffExtraActionLibNull.inf; sourceTree = ""; }; + A58152232538171300CF4451 /* PeCoffExtraActionLibNull.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = PeCoffExtraActionLibNull.uni; sourceTree = ""; }; + A58152242538171300CF4451 /* PeCoffExtraActionLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PeCoffExtraActionLib.c; sourceTree = ""; }; + A58152262538171300CF4451 /* UsbDxeLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = UsbDxeLib.c; sourceTree = ""; }; + A58152272538171300CF4451 /* UefiUsbLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = UefiUsbLib.inf; sourceTree = ""; }; + A58152282538171300CF4451 /* UefiUsbLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = UefiUsbLib.uni; sourceTree = ""; }; + A58152292538171300CF4451 /* Hid.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Hid.c; sourceTree = ""; }; + A581522A2538171300CF4451 /* UefiUsbLibInternal.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = UefiUsbLibInternal.h; sourceTree = ""; }; + A581522B2538171300CF4451 /* MdePkg.dec */ = {isa = PBXFileReference; lastKnownFileType = text; path = MdePkg.dec; sourceTree = ""; }; + A581522C2538171300CF4451 /* MdePkg.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = MdePkg.uni; sourceTree = ""; }; + A581522D2538171300CF4451 /* MdePkgExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = MdePkgExtra.uni; sourceTree = ""; }; + A581522E2538171300CF4451 /* MdePkg.dsc */ = {isa = PBXFileReference; lastKnownFileType = text; path = MdePkg.dsc; sourceTree = ""; }; + A58152312538172600CF4451 /* HttpBootClient.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HttpBootClient.h; sourceTree = ""; }; + A58152322538172600CF4451 /* HttpBootDhcp6.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HttpBootDhcp6.h; sourceTree = ""; }; + A58152332538172600CF4451 /* HttpBootDhcp4.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = HttpBootDhcp4.c; sourceTree = ""; }; + A58152342538172600CF4451 /* HttpBootSupport.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HttpBootSupport.h; sourceTree = ""; }; + A58152352538172600CF4451 /* HttpBootImpl.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = HttpBootImpl.c; sourceTree = ""; }; + A58152362538172600CF4451 /* HttpBootDxe.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HttpBootDxe.h; sourceTree = ""; }; + A58152372538172600CF4451 /* HttpBootConfig.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HttpBootConfig.h; sourceTree = ""; }; + A58152382538172600CF4451 /* HttpBootComponentName.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = HttpBootComponentName.c; sourceTree = ""; }; + A58152392538172600CF4451 /* HttpBootConfigVfr.vfr */ = {isa = PBXFileReference; lastKnownFileType = text; path = HttpBootConfigVfr.vfr; sourceTree = ""; }; + A581523A2538172600CF4451 /* HttpBootConfigNVDataStruc.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HttpBootConfigNVDataStruc.h; sourceTree = ""; }; + A581523B2538172600CF4451 /* HttpBootDhcp4.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HttpBootDhcp4.h; sourceTree = ""; }; + A581523C2538172600CF4451 /* HttpBootSupport.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = HttpBootSupport.c; sourceTree = ""; }; + A581523D2538172600CF4451 /* HttpBootDhcp6.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = HttpBootDhcp6.c; sourceTree = ""; }; + A581523E2538172600CF4451 /* HttpBootClient.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = HttpBootClient.c; sourceTree = ""; }; + A581523F2538172600CF4451 /* HttpBootDxeExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = HttpBootDxeExtra.uni; sourceTree = ""; }; + A58152402538172600CF4451 /* HttpBootComponentName.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HttpBootComponentName.h; sourceTree = ""; }; + A58152412538172600CF4451 /* HttpBootConfigStrings.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = HttpBootConfigStrings.uni; sourceTree = ""; }; + A58152422538172600CF4451 /* HttpBootConfig.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = HttpBootConfig.c; sourceTree = ""; }; + A58152432538172600CF4451 /* HttpBootDxe.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = HttpBootDxe.c; sourceTree = ""; }; + A58152442538172600CF4451 /* HttpBootImpl.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HttpBootImpl.h; sourceTree = ""; }; + A58152452538172600CF4451 /* HttpBootDxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = HttpBootDxe.inf; sourceTree = ""; }; + A58152462538172600CF4451 /* HttpBootDxe.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = HttpBootDxe.uni; sourceTree = ""; }; + A58152472538172600CF4451 /* NetworkPkg.dsc */ = {isa = PBXFileReference; lastKnownFileType = text; path = NetworkPkg.dsc; sourceTree = ""; }; + A58152492538172600CF4451 /* WifiConnectionMgrImpl.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = WifiConnectionMgrImpl.h; sourceTree = ""; }; + A581524A2538172600CF4451 /* WifiConnectionMgrComponentName.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = WifiConnectionMgrComponentName.c; sourceTree = ""; }; + A581524B2538172600CF4451 /* WifiConnectionMgrMisc.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = WifiConnectionMgrMisc.c; sourceTree = ""; }; + A581524C2538172600CF4451 /* WifiConnectionMgrDriverBinding.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = WifiConnectionMgrDriverBinding.h; sourceTree = ""; }; + A581524D2538172600CF4451 /* WifiConnectionMgrConfigNVDataStruct.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = WifiConnectionMgrConfigNVDataStruct.h; sourceTree = ""; }; + A581524E2538172600CF4451 /* WifiConnectionMgrHiiConfigAccess.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = WifiConnectionMgrHiiConfigAccess.h; sourceTree = ""; }; + A581524F2538172600CF4451 /* WifiConnectionManagerDxe.vfr */ = {isa = PBXFileReference; lastKnownFileType = text; path = WifiConnectionManagerDxe.vfr; sourceTree = ""; }; + A58152502538172600CF4451 /* EapContext.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = EapContext.h; sourceTree = ""; }; + A58152512538172600CF4451 /* WifiConnectionMgrFileUtil.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = WifiConnectionMgrFileUtil.h; sourceTree = ""; }; + A58152522538172600CF4451 /* WifiConnectionMgrConfig.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = WifiConnectionMgrConfig.h; sourceTree = ""; }; + A58152532538172600CF4451 /* WifiConnectionMgrDxe.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = WifiConnectionMgrDxe.h; sourceTree = ""; }; + A58152542538172600CF4451 /* WifiConnectionMgrConfigHii.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = WifiConnectionMgrConfigHii.h; sourceTree = ""; }; + A58152552538172600CF4451 /* WifiConnectionMgrDriver.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = WifiConnectionMgrDriver.c; sourceTree = ""; }; + A58152562538172600CF4451 /* WifiConnectionMgrComponentName.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = WifiConnectionMgrComponentName.h; sourceTree = ""; }; + A58152572538172600CF4451 /* WifiConnectionMgrImpl.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = WifiConnectionMgrImpl.c; sourceTree = ""; }; + A58152582538172600CF4451 /* WifiConnectionMgrMisc.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = WifiConnectionMgrMisc.h; sourceTree = ""; }; + A58152592538172600CF4451 /* WifiConnectionManagerDxeStrings.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = WifiConnectionManagerDxeStrings.uni; sourceTree = ""; }; + A581525A2538172600CF4451 /* WifiConnectionManagerDxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = WifiConnectionManagerDxe.inf; sourceTree = ""; }; + A581525B2538172600CF4451 /* WifiConnectionMgrHiiConfigAccess.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = WifiConnectionMgrHiiConfigAccess.c; sourceTree = ""; }; + A581525C2538172600CF4451 /* WifiConnectionMgrFileUtil.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = WifiConnectionMgrFileUtil.c; sourceTree = ""; }; + A581525E2538172600CF4451 /* Udp4Driver.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Udp4Driver.h; sourceTree = ""; }; + A581525F2538172600CF4451 /* Udp4Impl.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Udp4Impl.h; sourceTree = ""; }; + A58152602538172600CF4451 /* ComponentName.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ComponentName.c; sourceTree = ""; }; + A58152612538172600CF4451 /* Udp4Main.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Udp4Main.c; sourceTree = ""; }; + A58152622538172600CF4451 /* Udp4Driver.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Udp4Driver.c; sourceTree = ""; }; + A58152632538172600CF4451 /* Udp4Impl.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Udp4Impl.c; sourceTree = ""; }; + A58152642538172600CF4451 /* Udp4DxeExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = Udp4DxeExtra.uni; sourceTree = ""; }; + A58152652538172600CF4451 /* Udp4Dxe.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = Udp4Dxe.uni; sourceTree = ""; }; + A58152662538172600CF4451 /* Udp4Dxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = Udp4Dxe.inf; sourceTree = ""; }; + A58152682538172600CF4451 /* Dpc.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Dpc.c; sourceTree = ""; }; + A58152692538172600CF4451 /* DpcDxeExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = DpcDxeExtra.uni; sourceTree = ""; }; + A581526A2538172600CF4451 /* DpcDxe.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = DpcDxe.uni; sourceTree = ""; }; + A581526B2538172600CF4451 /* DpcDxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = DpcDxe.inf; sourceTree = ""; }; + A581526C2538172600CF4451 /* Dpc.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Dpc.h; sourceTree = ""; }; + A581526E2538172600CF4451 /* MnpDxeExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = MnpDxeExtra.uni; sourceTree = ""; }; + A581526F2538172600CF4451 /* MnpVlan.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = MnpVlan.c; sourceTree = ""; }; + A58152702538172600CF4451 /* MnpDriver.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = MnpDriver.c; sourceTree = ""; }; + A58152712538172600CF4451 /* MnpConfig.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = MnpConfig.c; sourceTree = ""; }; + A58152722538172600CF4451 /* ComponentName.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ComponentName.c; sourceTree = ""; }; + A58152732538172600CF4451 /* MnpDxe.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = MnpDxe.uni; sourceTree = ""; }; + A58152742538172600CF4451 /* MnpMain.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = MnpMain.c; sourceTree = ""; }; + A58152752538172600CF4451 /* MnpDriver.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MnpDriver.h; sourceTree = ""; }; + A58152762538172600CF4451 /* MnpVlan.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MnpVlan.h; sourceTree = ""; }; + A58152772538172600CF4451 /* MnpDxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = MnpDxe.inf; sourceTree = ""; }; + A58152782538172600CF4451 /* MnpIo.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = MnpIo.c; sourceTree = ""; }; + A58152792538172600CF4451 /* MnpImpl.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MnpImpl.h; sourceTree = ""; }; + A581527A2538172600CF4451 /* ComponentName.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ComponentName.h; sourceTree = ""; }; + A581527B2538172600CF4451 /* Network.dsc.inc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.pascal; path = Network.dsc.inc; sourceTree = ""; }; + A581527D2538172600CF4451 /* Mtftp4Option.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Mtftp4Option.c; sourceTree = ""; }; + A581527E2538172600CF4451 /* Mtftp4Impl.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Mtftp4Impl.c; sourceTree = ""; }; + A581527F2538172600CF4451 /* Mtftp4Driver.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Mtftp4Driver.h; sourceTree = ""; }; + A58152802538172600CF4451 /* Mtftp4Support.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Mtftp4Support.h; sourceTree = ""; }; + A58152812538172600CF4451 /* ComponentName.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ComponentName.c; sourceTree = ""; }; + A58152822538172600CF4451 /* Mtftp4Option.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Mtftp4Option.h; sourceTree = ""; }; + A58152832538172600CF4451 /* Mtftp4Wrq.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Mtftp4Wrq.c; sourceTree = ""; }; + A58152842538172600CF4451 /* Mtftp4Impl.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Mtftp4Impl.h; sourceTree = ""; }; + A58152852538172600CF4451 /* Mtftp4Rrq.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Mtftp4Rrq.c; sourceTree = ""; }; + A58152862538172600CF4451 /* Mtftp4Dxe.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = Mtftp4Dxe.uni; sourceTree = ""; }; + A58152872538172600CF4451 /* Mtftp4Dxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = Mtftp4Dxe.inf; sourceTree = ""; }; + A58152882538172600CF4451 /* Mtftp4Support.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Mtftp4Support.c; sourceTree = ""; }; + A58152892538172600CF4451 /* Mtftp4DxeExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = Mtftp4DxeExtra.uni; sourceTree = ""; }; + A581528A2538172600CF4451 /* Mtftp4Driver.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Mtftp4Driver.c; sourceTree = ""; }; + A581528B2538172600CF4451 /* NetworkDefines.dsc.inc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.pascal; path = NetworkDefines.dsc.inc; sourceTree = ""; }; + A581528D2538172600CF4451 /* Ip4Driver.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Ip4Driver.h; sourceTree = ""; }; + A581528E2538172600CF4451 /* Ip4Input.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Ip4Input.h; sourceTree = ""; }; + A581528F2538172600CF4451 /* Ip4NvData.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Ip4NvData.h; sourceTree = ""; }; + A58152902538172600CF4451 /* Ip4Dxe.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = Ip4Dxe.uni; sourceTree = ""; }; + A58152912538172600CF4451 /* Ip4Igmp.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Ip4Igmp.c; sourceTree = ""; }; + A58152922538172600CF4451 /* Ip4Output.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Ip4Output.h; sourceTree = ""; }; + A58152932538172600CF4451 /* Ip4Icmp.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Ip4Icmp.c; sourceTree = ""; }; + A58152942538172600CF4451 /* Ip4Config2Impl.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Ip4Config2Impl.h; sourceTree = ""; }; + A58152952538172600CF4451 /* Ip4Dxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = Ip4Dxe.inf; sourceTree = ""; }; + A58152962538172600CF4451 /* Ip4DxeStrings.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = Ip4DxeStrings.uni; sourceTree = ""; }; + A58152972538172600CF4451 /* Ip4Config2.vfr */ = {isa = PBXFileReference; lastKnownFileType = text; path = Ip4Config2.vfr; sourceTree = ""; }; + A58152982538172600CF4451 /* Ip4Impl.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Ip4Impl.h; sourceTree = ""; }; + A58152992538172600CF4451 /* Ip4Config2Nv.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Ip4Config2Nv.c; sourceTree = ""; }; + A581529A2538172600CF4451 /* Ip4Route.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Ip4Route.h; sourceTree = ""; }; + A581529B2538172600CF4451 /* Ip4If.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Ip4If.h; sourceTree = ""; }; + A581529C2538172600CF4451 /* Ip4Common.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Ip4Common.c; sourceTree = ""; }; + A581529D2538172600CF4451 /* Ip4DxeExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = Ip4DxeExtra.uni; sourceTree = ""; }; + A581529E2538172600CF4451 /* ComponentName.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ComponentName.c; sourceTree = ""; }; + A581529F2538172600CF4451 /* Ip4Option.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Ip4Option.c; sourceTree = ""; }; + A58152A02538172600CF4451 /* Ip4Igmp.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Ip4Igmp.h; sourceTree = ""; }; + A58152A12538172600CF4451 /* Ip4Output.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Ip4Output.c; sourceTree = ""; }; + A58152A22538172600CF4451 /* Ip4Driver.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Ip4Driver.c; sourceTree = ""; }; + A58152A32538172600CF4451 /* Ip4Input.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Ip4Input.c; sourceTree = ""; }; + A58152A42538172600CF4451 /* Ip4Config2Impl.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Ip4Config2Impl.c; sourceTree = ""; }; + A58152A52538172600CF4451 /* Ip4Icmp.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Ip4Icmp.h; sourceTree = ""; }; + A58152A62538172600CF4451 /* Ip4Route.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Ip4Route.c; sourceTree = ""; }; + A58152A72538172600CF4451 /* Ip4Config2Nv.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Ip4Config2Nv.h; sourceTree = ""; }; + A58152A82538172600CF4451 /* Ip4Impl.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Ip4Impl.c; sourceTree = ""; }; + A58152A92538172600CF4451 /* Ip4Option.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Ip4Option.h; sourceTree = ""; }; + A58152AA2538172600CF4451 /* Ip4If.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Ip4If.c; sourceTree = ""; }; + A58152AB2538172600CF4451 /* Ip4Common.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Ip4Common.h; sourceTree = ""; }; + A58152AC2538172600CF4451 /* NetworkPcds.dsc.inc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.pascal; path = NetworkPcds.dsc.inc; sourceTree = ""; }; + A58152AD2538172600CF4451 /* NetworkPkg.dec */ = {isa = PBXFileReference; lastKnownFileType = text; path = NetworkPkg.dec; sourceTree = ""; }; + A58152AF2538172600CF4451 /* DnsImpl.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DnsImpl.c; sourceTree = ""; }; + A58152B02538172600CF4451 /* DnsDxeExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = DnsDxeExtra.uni; sourceTree = ""; }; + A58152B12538172600CF4451 /* DnsProtocol.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DnsProtocol.c; sourceTree = ""; }; + A58152B22538172600CF4451 /* DnsDriver.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DnsDriver.h; sourceTree = ""; }; + A58152B32538172600CF4451 /* DnsDhcp.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DnsDhcp.c; sourceTree = ""; }; + A58152B42538172600CF4451 /* ComponentName.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ComponentName.c; sourceTree = ""; }; + A58152B52538172600CF4451 /* DnsImpl.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DnsImpl.h; sourceTree = ""; }; + A58152B62538172600CF4451 /* DnsDxe.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = DnsDxe.uni; sourceTree = ""; }; + A58152B72538172600CF4451 /* DnsDxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = DnsDxe.inf; sourceTree = ""; }; + A58152B82538172600CF4451 /* DnsDhcp.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DnsDhcp.h; sourceTree = ""; }; + A58152B92538172600CF4451 /* DnsDriver.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DnsDriver.c; sourceTree = ""; }; + A58152BA2538172600CF4451 /* NetworkPkgExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = NetworkPkgExtra.uni; sourceTree = ""; }; + A58152BD2538172600CF4451 /* HttpLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HttpLib.h; sourceTree = ""; }; + A58152BE2538172600CF4451 /* IpIoLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = IpIoLib.h; sourceTree = ""; }; + A58152BF2538172600CF4451 /* UdpIoLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = UdpIoLib.h; sourceTree = ""; }; + A58152C02538172600CF4451 /* NetLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = NetLib.h; sourceTree = ""; }; + A58152C12538172600CF4451 /* TcpIoLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = TcpIoLib.h; sourceTree = ""; }; + A58152C22538172600CF4451 /* DpcLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DpcLib.h; sourceTree = ""; }; + A58152C42538172600CF4451 /* Dpc.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Dpc.h; sourceTree = ""; }; + A58152C62538172600CF4451 /* WifiConnectionManagerConfigHii.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = WifiConnectionManagerConfigHii.h; sourceTree = ""; }; + A58152C72538172600CF4451 /* TlsAuthConfigHii.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = TlsAuthConfigHii.h; sourceTree = ""; }; + A58152C82538172600CF4451 /* IScsiConfigHii.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = IScsiConfigHii.h; sourceTree = ""; }; + A58152C92538172600CF4451 /* HttpBootConfigHii.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HttpBootConfigHii.h; sourceTree = ""; }; + A58152CA2538172600CF4451 /* HttpTlsCipherList.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HttpTlsCipherList.h; sourceTree = ""; }; + A58152CB2538172600CF4451 /* Ip6ConfigHii.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Ip6ConfigHii.h; sourceTree = ""; }; + A58152CC2538172600CF4451 /* TlsAuthentication.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = TlsAuthentication.h; sourceTree = ""; }; + A58152CD2538172600CF4451 /* NetworkPkg.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = NetworkPkg.uni; sourceTree = ""; }; + A58152CF2538172600CF4451 /* Dhcp4Option.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Dhcp4Option.h; sourceTree = ""; }; + A58152D02538172600CF4451 /* Dhcp4Dxe.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = Dhcp4Dxe.uni; sourceTree = ""; }; + A58152D12538172600CF4451 /* Dhcp4Dxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = Dhcp4Dxe.inf; sourceTree = ""; }; + A58152D22538172600CF4451 /* Dhcp4Impl.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Dhcp4Impl.h; sourceTree = ""; }; + A58152D32538172600CF4451 /* Dhcp4Io.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Dhcp4Io.c; sourceTree = ""; }; + A58152D42538172600CF4451 /* ComponentName.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ComponentName.c; sourceTree = ""; }; + A58152D52538172600CF4451 /* Dhcp4Driver.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Dhcp4Driver.c; sourceTree = ""; }; + A58152D62538172600CF4451 /* Dhcp4Option.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Dhcp4Option.c; sourceTree = ""; }; + A58152D72538172600CF4451 /* Dhcp4Impl.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Dhcp4Impl.c; sourceTree = ""; }; + A58152D82538172600CF4451 /* Dhcp4DxeExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = Dhcp4DxeExtra.uni; sourceTree = ""; }; + A58152D92538172600CF4451 /* Dhcp4Io.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Dhcp4Io.h; sourceTree = ""; }; + A58152DA2538172600CF4451 /* Dhcp4Driver.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Dhcp4Driver.h; sourceTree = ""; }; + A58152DB2538172600CF4451 /* NetworkLibs.dsc.inc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.pascal; path = NetworkLibs.dsc.inc; sourceTree = ""; }; + A58152DD2538172600CF4451 /* Snp.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Snp.c; sourceTree = ""; }; + A58152DE2538172600CF4451 /* Receive_filters.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Receive_filters.c; sourceTree = ""; }; + A58152DF2538172600CF4451 /* Initialize.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Initialize.c; sourceTree = ""; }; + A58152E02538172600CF4451 /* Statistics.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Statistics.c; sourceTree = ""; }; + A58152E12538172600CF4451 /* Station_address.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Station_address.c; sourceTree = ""; }; + A58152E22538172600CF4451 /* WaitForPacket.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = WaitForPacket.c; sourceTree = ""; }; + A58152E32538172600CF4451 /* ComponentName.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ComponentName.c; sourceTree = ""; }; + A58152E42538172600CF4451 /* Mcast_ip_to_mac.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Mcast_ip_to_mac.c; sourceTree = ""; }; + A58152E52538172600CF4451 /* Reset.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Reset.c; sourceTree = ""; }; + A58152E62538172600CF4451 /* Callback.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Callback.c; sourceTree = ""; }; + A58152E72538172600CF4451 /* Stop.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Stop.c; sourceTree = ""; }; + A58152E82538172600CF4451 /* SnpDxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = SnpDxe.inf; sourceTree = ""; }; + A58152E92538172600CF4451 /* Snp.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Snp.h; sourceTree = ""; }; + A58152EA2538172600CF4451 /* Transmit.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Transmit.c; sourceTree = ""; }; + A58152EB2538172600CF4451 /* Get_status.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Get_status.c; sourceTree = ""; }; + A58152EC2538172600CF4451 /* Shutdown.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Shutdown.c; sourceTree = ""; }; + A58152ED2538172600CF4451 /* SnpDxe.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = SnpDxe.uni; sourceTree = ""; }; + A58152EE2538172600CF4451 /* Receive.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Receive.c; sourceTree = ""; }; + A58152EF2538172600CF4451 /* SnpDxeExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = SnpDxeExtra.uni; sourceTree = ""; }; + A58152F02538172600CF4451 /* Start.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Start.c; sourceTree = ""; }; + A58152F12538172600CF4451 /* Nvdata.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Nvdata.c; sourceTree = ""; }; + A58152F42538172600CF4451 /* DxeUdpIoLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = DxeUdpIoLib.inf; sourceTree = ""; }; + A58152F52538172600CF4451 /* DxeUpdIoLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = DxeUpdIoLib.uni; sourceTree = ""; }; + A58152F62538172600CF4451 /* DxeUdpIoLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DxeUdpIoLib.c; sourceTree = ""; }; + A58152F82538172600CF4451 /* DxeNetLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = DxeNetLib.inf; sourceTree = ""; }; + A58152F92538172600CF4451 /* DxeNetLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = DxeNetLib.uni; sourceTree = ""; }; + A58152FA2538172600CF4451 /* NetBuffer.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = NetBuffer.c; sourceTree = ""; }; + A58152FB2538172600CF4451 /* DxeNetLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DxeNetLib.c; sourceTree = ""; }; + A58152FD2538172600CF4451 /* DxeIpIoLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DxeIpIoLib.c; sourceTree = ""; }; + A58152FE2538172600CF4451 /* DxeIpIoLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = DxeIpIoLib.uni; sourceTree = ""; }; + A58152FF2538172600CF4451 /* DxeIpIoLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = DxeIpIoLib.inf; sourceTree = ""; }; + A58153012538172600CF4451 /* DpcLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DpcLib.c; sourceTree = ""; }; + A58153022538172600CF4451 /* DxeDpcLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = DxeDpcLib.uni; sourceTree = ""; }; + A58153032538172600CF4451 /* DxeDpcLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = DxeDpcLib.inf; sourceTree = ""; }; + A58153052538172600CF4451 /* DxeHttpLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DxeHttpLib.c; sourceTree = ""; }; + A58153062538172600CF4451 /* DxeHttpLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = DxeHttpLib.inf; sourceTree = ""; }; + A58153072538172600CF4451 /* DxeHttpLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = DxeHttpLib.uni; sourceTree = ""; }; + A58153082538172600CF4451 /* DxeHttpLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DxeHttpLib.h; sourceTree = ""; }; + A581530A2538172600CF4451 /* DxeTcpIoLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = DxeTcpIoLib.inf; sourceTree = ""; }; + A581530B2538172600CF4451 /* DxeTcpIoLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = DxeTcpIoLib.uni; sourceTree = ""; }; + A581530C2538172600CF4451 /* DxeTcpIoLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DxeTcpIoLib.c; sourceTree = ""; }; + A581530E2538172600CF4451 /* VlanConfigDxe.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = VlanConfigDxe.uni; sourceTree = ""; }; + A581530F2538172600CF4451 /* VlanConfigNvData.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = VlanConfigNvData.h; sourceTree = ""; }; + A58153102538172600CF4451 /* VlanConfigDxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = VlanConfigDxe.inf; sourceTree = ""; }; + A58153112538172600CF4451 /* VlanConfigDxeExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = VlanConfigDxeExtra.uni; sourceTree = ""; }; + A58153122538172600CF4451 /* VlanConfigImpl.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = VlanConfigImpl.c; sourceTree = ""; }; + A58153132538172600CF4451 /* VlanConfigStrings.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = VlanConfigStrings.uni; sourceTree = ""; }; + A58153142538172600CF4451 /* ComponentName.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ComponentName.c; sourceTree = ""; }; + A58153152538172600CF4451 /* VlanConfig.vfr */ = {isa = PBXFileReference; lastKnownFileType = text; path = VlanConfig.vfr; sourceTree = ""; }; + A58153162538172600CF4451 /* VlanConfigDriver.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = VlanConfigDriver.c; sourceTree = ""; }; + A58153172538172600CF4451 /* VlanConfigImpl.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = VlanConfigImpl.h; sourceTree = ""; }; + A58153182538172600CF4451 /* NetworkComponents.dsc.inc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.pascal; path = NetworkComponents.dsc.inc; sourceTree = ""; }; + A581531A2538172600CF4451 /* IScsiCHAP.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = IScsiCHAP.c; sourceTree = ""; }; + A581531B2538172600CF4451 /* IScsiDxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = IScsiDxe.inf; sourceTree = ""; }; + A581531C2538172600CF4451 /* IScsiProto.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = IScsiProto.h; sourceTree = ""; }; + A581531D2538172600CF4451 /* IScsiDriver.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = IScsiDriver.h; sourceTree = ""; }; + A581531E2538172600CF4451 /* IScsiDhcp.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = IScsiDhcp.h; sourceTree = ""; }; + A581531F2538172600CF4451 /* IScsiDns.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = IScsiDns.h; sourceTree = ""; }; + A58153202538172600CF4451 /* IScsiConfigStrings.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = IScsiConfigStrings.uni; sourceTree = ""; }; + A58153212538172600CF4451 /* IScsiDxe.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = IScsiDxe.uni; sourceTree = ""; }; + A58153222538172600CF4451 /* IScsiDhcp6.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = IScsiDhcp6.c; sourceTree = ""; }; + A58153232538172600CF4451 /* ComponentName.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ComponentName.c; sourceTree = ""; }; + A58153242538172600CF4451 /* IScsiImpl.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = IScsiImpl.h; sourceTree = ""; }; + A58153252538172600CF4451 /* IScsiMisc.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = IScsiMisc.c; sourceTree = ""; }; + A58153262538172600CF4451 /* IScsiConfig.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = IScsiConfig.h; sourceTree = ""; }; + A58153272538172600CF4451 /* IScsiDxeExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = IScsiDxeExtra.uni; sourceTree = ""; }; + A58153282538172600CF4451 /* IScsiIbft.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = IScsiIbft.c; sourceTree = ""; }; + A58153292538172600CF4451 /* IScsiExtScsiPassThru.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = IScsiExtScsiPassThru.c; sourceTree = ""; }; + A581532A2538172600CF4451 /* IScsiProto.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = IScsiProto.c; sourceTree = ""; }; + A581532B2538172600CF4451 /* IScsiCHAP.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = IScsiCHAP.h; sourceTree = ""; }; + A581532C2538172600CF4451 /* IScsiConfigNVDataStruc.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = IScsiConfigNVDataStruc.h; sourceTree = ""; }; + A581532D2538172600CF4451 /* IScsiAuthenticationInfo.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = IScsiAuthenticationInfo.c; sourceTree = ""; }; + A581532E2538172600CF4451 /* IScsiDns.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = IScsiDns.c; sourceTree = ""; }; + A581532F2538172600CF4451 /* IScsiDhcp.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = IScsiDhcp.c; sourceTree = ""; }; + A58153302538172600CF4451 /* IScsiDriver.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = IScsiDriver.c; sourceTree = ""; }; + A58153312538172600CF4451 /* IScsiDhcp6.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = IScsiDhcp6.h; sourceTree = ""; }; + A58153322538172600CF4451 /* IScsiConfigVfr.vfr */ = {isa = PBXFileReference; lastKnownFileType = text; path = IScsiConfigVfr.vfr; sourceTree = ""; }; + A58153332538172600CF4451 /* IScsiConfig.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = IScsiConfig.c; sourceTree = ""; }; + A58153342538172600CF4451 /* IScsiIbft.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = IScsiIbft.h; sourceTree = ""; }; + A58153352538172600CF4451 /* IScsiMisc.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = IScsiMisc.h; sourceTree = ""; }; + A58153362538172600CF4451 /* IScsiInitiatorName.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = IScsiInitiatorName.c; sourceTree = ""; }; + A58153382538172600CF4451 /* Dhcp6Dxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = Dhcp6Dxe.inf; sourceTree = ""; }; + A58153392538172600CF4451 /* Dhcp6Driver.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Dhcp6Driver.c; sourceTree = ""; }; + A581533A2538172600CF4451 /* Dhcp6Dxe.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = Dhcp6Dxe.uni; sourceTree = ""; }; + A581533B2538172600CF4451 /* Dhcp6Impl.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Dhcp6Impl.h; sourceTree = ""; }; + A581533C2538172600CF4451 /* Dhcp6Utility.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Dhcp6Utility.c; sourceTree = ""; }; + A581533D2538172600CF4451 /* Dhcp6Io.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Dhcp6Io.c; sourceTree = ""; }; + A581533E2538172600CF4451 /* ComponentName.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ComponentName.c; sourceTree = ""; }; + A581533F2538172600CF4451 /* Dhcp6DxeExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = Dhcp6DxeExtra.uni; sourceTree = ""; }; + A58153402538172600CF4451 /* Dhcp6Driver.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Dhcp6Driver.h; sourceTree = ""; }; + A58153412538172600CF4451 /* Dhcp6Impl.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Dhcp6Impl.c; sourceTree = ""; }; + A58153422538172600CF4451 /* Dhcp6Io.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Dhcp6Io.h; sourceTree = ""; }; + A58153432538172600CF4451 /* Dhcp6Utility.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Dhcp6Utility.h; sourceTree = ""; }; + A58153452538172600CF4451 /* HttpUtilitiesDxe.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HttpUtilitiesDxe.h; sourceTree = ""; }; + A58153462538172600CF4451 /* HttpUtilitiesProtocol.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = HttpUtilitiesProtocol.c; sourceTree = ""; }; + A58153472538172600CF4451 /* HttpUtilitiesDxe.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = HttpUtilitiesDxe.c; sourceTree = ""; }; + A58153482538172600CF4451 /* HttpUtilitiesDxe.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = HttpUtilitiesDxe.uni; sourceTree = ""; }; + A58153492538172600CF4451 /* HttpUtilitiesDxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = HttpUtilitiesDxe.inf; sourceTree = ""; }; + A581534A2538172600CF4451 /* HttpUtilitiesDxeExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = HttpUtilitiesDxeExtra.uni; sourceTree = ""; }; + A581534C2538172600CF4451 /* Udp6Impl.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Udp6Impl.h; sourceTree = ""; }; + A581534D2538172600CF4451 /* Udp6Main.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Udp6Main.c; sourceTree = ""; }; + A581534E2538172600CF4451 /* ComponentName.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ComponentName.c; sourceTree = ""; }; + A581534F2538172600CF4451 /* Udp6DxeExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = Udp6DxeExtra.uni; sourceTree = ""; }; + A58153502538172600CF4451 /* Udp6Driver.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Udp6Driver.h; sourceTree = ""; }; + A58153512538172600CF4451 /* Udp6Impl.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Udp6Impl.c; sourceTree = ""; }; + A58153522538172600CF4451 /* Udp6Dxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = Udp6Dxe.inf; sourceTree = ""; }; + A58153532538172600CF4451 /* Udp6Driver.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Udp6Driver.c; sourceTree = ""; }; + A58153542538172600CF4451 /* Udp6Dxe.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = Udp6Dxe.uni; sourceTree = ""; }; + A58153552538172600CF4451 /* Network.fdf.inc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.pascal; path = Network.fdf.inc; sourceTree = ""; }; + A58153582538172600CF4451 /* VConfig.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = VConfig.c; sourceTree = ""; }; + A58153592538172600CF4451 /* VConfigExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = VConfigExtra.uni; sourceTree = ""; }; + A581535A2538172600CF4451 /* VConfig.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = VConfig.uni; sourceTree = ""; }; + A581535B2538172600CF4451 /* VConfigStrings.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = VConfigStrings.uni; sourceTree = ""; }; + A581535C2538172600CF4451 /* VConfig.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = VConfig.inf; sourceTree = ""; }; + A581535E2538172600CF4451 /* ArpMain.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ArpMain.c; sourceTree = ""; }; + A581535F2538172600CF4451 /* ArpDxeExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = ArpDxeExtra.uni; sourceTree = ""; }; + A58153602538172600CF4451 /* ArpImpl.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ArpImpl.h; sourceTree = ""; }; + A58153612538172600CF4451 /* ComponentName.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ComponentName.c; sourceTree = ""; }; + A58153622538172600CF4451 /* ArpDriver.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ArpDriver.h; sourceTree = ""; }; + A58153632538172600CF4451 /* ArpImpl.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ArpImpl.c; sourceTree = ""; }; + A58153642538172600CF4451 /* ArpDxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = ArpDxe.inf; sourceTree = ""; }; + A58153652538172600CF4451 /* ArpDriver.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ArpDriver.c; sourceTree = ""; }; + A58153662538172600CF4451 /* ArpDxe.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = ArpDxe.uni; sourceTree = ""; }; + A58153682538172600CF4451 /* HttpProto.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HttpProto.h; sourceTree = ""; }; + A58153692538172600CF4451 /* HttpDxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = HttpDxe.inf; sourceTree = ""; }; + A581536A2538172600CF4451 /* HttpImpl.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HttpImpl.h; sourceTree = ""; }; + A581536B2538172600CF4451 /* HttpDxeExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = HttpDxeExtra.uni; sourceTree = ""; }; + A581536C2538172600CF4451 /* HttpsSupport.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = HttpsSupport.c; sourceTree = ""; }; + A581536D2538172600CF4451 /* HttpDxe.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = HttpDxe.uni; sourceTree = ""; }; + A581536E2538172600CF4451 /* HttpDns.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HttpDns.h; sourceTree = ""; }; + A581536F2538172600CF4451 /* HttpDriver.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = HttpDriver.c; sourceTree = ""; }; + A58153702538172600CF4451 /* ComponentName.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ComponentName.c; sourceTree = ""; }; + A58153712538172600CF4451 /* HttpProto.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = HttpProto.c; sourceTree = ""; }; + A58153722538172600CF4451 /* HttpsSupport.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HttpsSupport.h; sourceTree = ""; }; + A58153732538172600CF4451 /* HttpImpl.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = HttpImpl.c; sourceTree = ""; }; + A58153742538172600CF4451 /* HttpDns.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = HttpDns.c; sourceTree = ""; }; + A58153752538172600CF4451 /* ComponentName.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ComponentName.h; sourceTree = ""; }; + A58153762538172600CF4451 /* HttpDriver.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HttpDriver.h; sourceTree = ""; }; + A58153782538172600CF4451 /* TlsAuthConfigDxe.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = TlsAuthConfigDxe.c; sourceTree = ""; }; + A58153792538172600CF4451 /* TlsAuthConfigImpl.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = TlsAuthConfigImpl.c; sourceTree = ""; }; + A581537A2538172600CF4451 /* TlsAuthConfigDxeStrings.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = TlsAuthConfigDxeStrings.uni; sourceTree = ""; }; + A581537B2538172600CF4451 /* TlsAuthConfigImpl.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = TlsAuthConfigImpl.h; sourceTree = ""; }; + A581537C2538172600CF4451 /* TlsAuthConfigVfr.vfr */ = {isa = PBXFileReference; lastKnownFileType = text; path = TlsAuthConfigVfr.vfr; sourceTree = ""; }; + A581537D2538172600CF4451 /* TlsAuthConfigDxeExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = TlsAuthConfigDxeExtra.uni; sourceTree = ""; }; + A581537E2538172600CF4451 /* TlsAuthConfigDxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = TlsAuthConfigDxe.inf; sourceTree = ""; }; + A581537F2538172600CF4451 /* TlsAuthConfigNvData.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = TlsAuthConfigNvData.h; sourceTree = ""; }; + A58153802538172600CF4451 /* TlsAuthConfigDxe.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = TlsAuthConfigDxe.uni; sourceTree = ""; }; + A58153822538172600CF4451 /* Ip6Nd.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Ip6Nd.h; sourceTree = ""; }; + A58153832538172600CF4451 /* Ip6Common.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Ip6Common.c; sourceTree = ""; }; + A58153842538172600CF4451 /* Ip6Dxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = Ip6Dxe.inf; sourceTree = ""; }; + A58153852538172600CF4451 /* Ip6Config.vfr */ = {isa = PBXFileReference; lastKnownFileType = text; path = Ip6Config.vfr; sourceTree = ""; }; + A58153862538172600CF4451 /* Ip6Mld.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Ip6Mld.h; sourceTree = ""; }; + A58153872538172600CF4451 /* Ip6ConfigNv.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Ip6ConfigNv.c; sourceTree = ""; }; + A58153882538172600CF4451 /* Ip6Option.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Ip6Option.c; sourceTree = ""; }; + A58153892538172600CF4451 /* Ip6Dxe.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = Ip6Dxe.uni; sourceTree = ""; }; + A581538A2538172600CF4451 /* Ip6Input.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Ip6Input.h; sourceTree = ""; }; + A581538B2538172600CF4451 /* Ip6Icmp.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Ip6Icmp.c; sourceTree = ""; }; + A581538C2538172600CF4451 /* Ip6Impl.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Ip6Impl.h; sourceTree = ""; }; + A581538D2538172600CF4451 /* Ip6ConfigImpl.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Ip6ConfigImpl.h; sourceTree = ""; }; + A581538E2538172600CF4451 /* Ip6Driver.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Ip6Driver.h; sourceTree = ""; }; + A581538F2538172600CF4451 /* Ip6NvData.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Ip6NvData.h; sourceTree = ""; }; + A58153902538172600CF4451 /* ComponentName.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ComponentName.c; sourceTree = ""; }; + A58153912538172600CF4451 /* Ip6Route.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Ip6Route.h; sourceTree = ""; }; + A58153922538172600CF4451 /* Ip6Output.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Ip6Output.h; sourceTree = ""; }; + A58153932538172600CF4451 /* Ip6If.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Ip6If.h; sourceTree = ""; }; + A58153942538172600CF4451 /* Ip6ConfigNv.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Ip6ConfigNv.h; sourceTree = ""; }; + A58153952538172600CF4451 /* Ip6Option.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Ip6Option.h; sourceTree = ""; }; + A58153962538172600CF4451 /* Ip6Mld.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Ip6Mld.c; sourceTree = ""; }; + A58153972538172600CF4451 /* Ip6Common.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Ip6Common.h; sourceTree = ""; }; + A58153982538172600CF4451 /* Ip6Nd.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Ip6Nd.c; sourceTree = ""; }; + A58153992538172600CF4451 /* Ip6DxeStrings.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = Ip6DxeStrings.uni; sourceTree = ""; }; + A581539A2538172600CF4451 /* Ip6Icmp.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Ip6Icmp.h; sourceTree = ""; }; + A581539B2538172600CF4451 /* Ip6Input.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Ip6Input.c; sourceTree = ""; }; + A581539C2538172600CF4451 /* Ip6DxeExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = Ip6DxeExtra.uni; sourceTree = ""; }; + A581539D2538172600CF4451 /* Ip6ConfigImpl.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Ip6ConfigImpl.c; sourceTree = ""; }; + A581539E2538172600CF4451 /* Ip6Impl.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Ip6Impl.c; sourceTree = ""; }; + A581539F2538172600CF4451 /* Ip6Output.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Ip6Output.c; sourceTree = ""; }; + A58153A02538172600CF4451 /* Ip6If.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Ip6If.c; sourceTree = ""; }; + A58153A12538172600CF4451 /* Ip6Route.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Ip6Route.c; sourceTree = ""; }; + A58153A22538172600CF4451 /* Ip6Driver.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Ip6Driver.c; sourceTree = ""; }; + A58153A42538172600CF4451 /* PxeBcBoot.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PxeBcBoot.h; sourceTree = ""; }; + A58153A52538172600CF4451 /* PxeBcImpl.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PxeBcImpl.c; sourceTree = ""; }; + A58153A62538172600CF4451 /* PxeBcDriver.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PxeBcDriver.h; sourceTree = ""; }; + A58153A72538172600CF4451 /* UefiPxeBcDxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = UefiPxeBcDxe.inf; sourceTree = ""; }; + A58153A82538172600CF4451 /* PxeBcSupport.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PxeBcSupport.h; sourceTree = ""; }; + A58153A92538172600CF4451 /* UefiPxeBcDxeExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = UefiPxeBcDxeExtra.uni; sourceTree = ""; }; + A58153AA2538172600CF4451 /* UefiPxeBcDxe.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = UefiPxeBcDxe.uni; sourceTree = ""; }; + A58153AB2538172600CF4451 /* PxeBcMtftp.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PxeBcMtftp.h; sourceTree = ""; }; + A58153AC2538172600CF4451 /* PxeBcDhcp6.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PxeBcDhcp6.h; sourceTree = ""; }; + A58153AD2538172600CF4451 /* ComponentName.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ComponentName.c; sourceTree = ""; }; + A58153AE2538172600CF4451 /* PxeBcDhcp4.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PxeBcDhcp4.c; sourceTree = ""; }; + A58153AF2538172600CF4451 /* PxeBcBoot.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PxeBcBoot.c; sourceTree = ""; }; + A58153B02538172600CF4451 /* PxeBcDriver.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PxeBcDriver.c; sourceTree = ""; }; + A58153B12538172600CF4451 /* PxeBcImpl.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PxeBcImpl.h; sourceTree = ""; }; + A58153B22538172600CF4451 /* PxeBcSupport.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PxeBcSupport.c; sourceTree = ""; }; + A58153B32538172600CF4451 /* PxeBcDhcp4.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PxeBcDhcp4.h; sourceTree = ""; }; + A58153B42538172600CF4451 /* PxeBcDhcp6.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PxeBcDhcp6.c; sourceTree = ""; }; + A58153B52538172600CF4451 /* PxeBcMtftp.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PxeBcMtftp.c; sourceTree = ""; }; + A58153B72538172600CF4451 /* TlsDxe.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = TlsDxe.uni; sourceTree = ""; }; + A58153B82538172600CF4451 /* TlsDxeExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = TlsDxeExtra.uni; sourceTree = ""; }; + A58153B92538172600CF4451 /* TlsDriver.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = TlsDriver.h; sourceTree = ""; }; + A58153BA2538172600CF4451 /* TlsDxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = TlsDxe.inf; sourceTree = ""; }; + A58153BB2538172600CF4451 /* TlsImpl.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = TlsImpl.h; sourceTree = ""; }; + A58153BC2538172600CF4451 /* TlsProtocol.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = TlsProtocol.c; sourceTree = ""; }; + A58153BD2538172600CF4451 /* TlsDriver.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = TlsDriver.c; sourceTree = ""; }; + A58153BE2538172600CF4451 /* TlsConfigProtocol.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = TlsConfigProtocol.c; sourceTree = ""; }; + A58153BF2538172600CF4451 /* TlsImpl.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = TlsImpl.c; sourceTree = ""; }; + A58153C12538172600CF4451 /* TcpTimer.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = TcpTimer.c; sourceTree = ""; }; + A58153C22538172600CF4451 /* TcpOutput.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = TcpOutput.c; sourceTree = ""; }; + A58153C32538172600CF4451 /* TcpDriver.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = TcpDriver.c; sourceTree = ""; }; + A58153C42538172600CF4451 /* TcpDxe.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = TcpDxe.uni; sourceTree = ""; }; + A58153C52538172600CF4451 /* TcpDxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = TcpDxe.inf; sourceTree = ""; }; + A58153C62538172600CF4451 /* TcpProto.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = TcpProto.h; sourceTree = ""; }; + A58153C72538172600CF4451 /* TcpOption.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = TcpOption.h; sourceTree = ""; }; + A58153C82538172600CF4451 /* ComponentName.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ComponentName.c; sourceTree = ""; }; + A58153C92538172600CF4451 /* SockImpl.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SockImpl.c; sourceTree = ""; }; + A58153CA2538172600CF4451 /* TcpMain.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = TcpMain.h; sourceTree = ""; }; + A58153CB2538172600CF4451 /* TcpDriver.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = TcpDriver.h; sourceTree = ""; }; + A58153CC2538172600CF4451 /* SockInterface.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SockInterface.c; sourceTree = ""; }; + A58153CD2538172600CF4451 /* TcpInput.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = TcpInput.c; sourceTree = ""; }; + A58153CE2538172600CF4451 /* TcpMisc.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = TcpMisc.c; sourceTree = ""; }; + A58153CF2538172600CF4451 /* TcpFunc.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = TcpFunc.h; sourceTree = ""; }; + A58153D02538172600CF4451 /* TcpDispatcher.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = TcpDispatcher.c; sourceTree = ""; }; + A58153D12538172600CF4451 /* TcpMain.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = TcpMain.c; sourceTree = ""; }; + A58153D22538172600CF4451 /* SockImpl.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SockImpl.h; sourceTree = ""; }; + A58153D32538172600CF4451 /* Socket.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Socket.h; sourceTree = ""; }; + A58153D42538172600CF4451 /* TcpDxeExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = TcpDxeExtra.uni; sourceTree = ""; }; + A58153D52538172600CF4451 /* TcpOption.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = TcpOption.c; sourceTree = ""; }; + A58153D62538172600CF4451 /* TcpIo.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = TcpIo.c; sourceTree = ""; }; + A58153D82538172600CF4451 /* Mtftp6Driver.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Mtftp6Driver.h; sourceTree = ""; }; + A58153D92538172600CF4451 /* Mtftp6Impl.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Mtftp6Impl.c; sourceTree = ""; }; + A58153DA2538172600CF4451 /* Mtftp6DxeExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = Mtftp6DxeExtra.uni; sourceTree = ""; }; + A58153DB2538172600CF4451 /* Mtftp6Support.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Mtftp6Support.c; sourceTree = ""; }; + A58153DC2538172600CF4451 /* Mtftp6Wrq.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Mtftp6Wrq.c; sourceTree = ""; }; + A58153DD2538172600CF4451 /* ComponentName.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ComponentName.c; sourceTree = ""; }; + A58153DE2538172600CF4451 /* Mtftp6Rrq.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Mtftp6Rrq.c; sourceTree = ""; }; + A58153DF2538172600CF4451 /* Mtftp6Option.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Mtftp6Option.c; sourceTree = ""; }; + A58153E02538172600CF4451 /* Mtftp6Driver.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Mtftp6Driver.c; sourceTree = ""; }; + A58153E12538172600CF4451 /* Mtftp6Impl.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Mtftp6Impl.h; sourceTree = ""; }; + A58153E22538172600CF4451 /* Mtftp6Dxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = Mtftp6Dxe.inf; sourceTree = ""; }; + A58153E32538172600CF4451 /* Mtftp6Support.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Mtftp6Support.h; sourceTree = ""; }; + A58153E42538172600CF4451 /* Mtftp6Option.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Mtftp6Option.h; sourceTree = ""; }; + A58153E52538172600CF4451 /* Mtftp6Dxe.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = Mtftp6Dxe.uni; sourceTree = ""; }; + A58153E72538173200CF4451 /* PcAtChipsetPkg.dec */ = {isa = PBXFileReference; lastKnownFileType = text; path = PcAtChipsetPkg.dec; sourceTree = ""; }; + A58153E82538173200CF4451 /* PcAtChipsetPkg.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = PcAtChipsetPkg.uni; sourceTree = ""; }; + A58153EA2538173200CF4451 /* IsaAcpi.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = IsaAcpi.c; sourceTree = ""; }; + A58153EB2538173200CF4451 /* IsaAcpiExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = IsaAcpiExtra.uni; sourceTree = ""; }; + A58153EC2538173200CF4451 /* PcatIsaAcpi.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PcatIsaAcpi.h; sourceTree = ""; }; + A58153ED2538173200CF4451 /* ComponentName.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ComponentName.c; sourceTree = ""; }; + A58153EE2538173200CF4451 /* IsaAcpi.c.bak */ = {isa = PBXFileReference; lastKnownFileType = text; path = IsaAcpi.c.bak; sourceTree = ""; }; + A58153EF2538173200CF4451 /* PcatIsaAcpi.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PcatIsaAcpi.c; sourceTree = ""; }; + A58153F02538173200CF4451 /* IsaAcpi.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = IsaAcpi.inf; sourceTree = ""; }; + A58153F12538173200CF4451 /* IsaAcpi.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = IsaAcpi.uni; sourceTree = ""; }; + A58153F32538173200CF4451 /* HpetTimerDxe.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = HpetTimerDxe.uni; sourceTree = ""; }; + A58153F42538173200CF4451 /* HpetTimer.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = HpetTimer.c; sourceTree = ""; }; + A58153F52538173200CF4451 /* HpetTimerDxeExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = HpetTimerDxeExtra.uni; sourceTree = ""; }; + A58153F62538173200CF4451 /* HpetTimerDxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = HpetTimerDxe.inf; sourceTree = ""; }; + A58153F72538173200CF4451 /* PcAtChipsetPkg.dsc */ = {isa = PBXFileReference; lastKnownFileType = text; path = PcAtChipsetPkg.dsc; sourceTree = ""; }; + A58153FA2538173200CF4451 /* IoApicLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = IoApicLib.h; sourceTree = ""; }; + A58153FC2538173200CF4451 /* IoApic.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = IoApic.h; sourceTree = ""; }; + A58153FD2538173200CF4451 /* Hpet.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Hpet.h; sourceTree = ""; }; + A58153FF2538173200CF4451 /* PcAtChipsetTokenSpace.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PcAtChipsetTokenSpace.h; sourceTree = ""; }; + A58154032538173200CF4451 /* IdeController.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = IdeController.c; sourceTree = ""; }; + A58154042538173200CF4451 /* IdeControllerExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = IdeControllerExtra.uni; sourceTree = ""; }; + A58154052538173200CF4451 /* IdeControllerDxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = IdeControllerDxe.inf; sourceTree = ""; }; + A58154062538173200CF4451 /* ComponentName.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ComponentName.c; sourceTree = ""; }; + A58154072538173200CF4451 /* IdeController.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = IdeController.uni; sourceTree = ""; }; + A58154082538173200CF4451 /* IdeController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = IdeController.h; sourceTree = ""; }; + A581540B2538173200CF4451 /* DxeAcpiTimerLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = DxeAcpiTimerLib.uni; sourceTree = ""; }; + A581540C2538173200CF4451 /* DxeAcpiTimerLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = DxeAcpiTimerLib.inf; sourceTree = ""; }; + A581540D2538173200CF4451 /* BaseAcpiTimerLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = BaseAcpiTimerLib.uni; sourceTree = ""; }; + A581540E2538173200CF4451 /* BaseAcpiTimerLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = BaseAcpiTimerLib.inf; sourceTree = ""; }; + A581540F2538173200CF4451 /* BaseAcpiTimerLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = BaseAcpiTimerLib.c; sourceTree = ""; }; + A58154102538173200CF4451 /* PeiAcpiTimerLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = PeiAcpiTimerLib.inf; sourceTree = ""; }; + A58154112538173200CF4451 /* PeiAcpiTimerLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = PeiAcpiTimerLib.uni; sourceTree = ""; }; + A58154122538173200CF4451 /* DxeAcpiTimerLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DxeAcpiTimerLib.c; sourceTree = ""; }; + A58154132538173200CF4451 /* PeiAcpiTimerLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PeiAcpiTimerLib.c; sourceTree = ""; }; + A58154142538173200CF4451 /* AcpiTimerLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = AcpiTimerLib.c; sourceTree = ""; }; + A58154162538173200CF4451 /* BaseIoApicLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = BaseIoApicLib.uni; sourceTree = ""; }; + A58154172538173200CF4451 /* BaseIoApicLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = BaseIoApicLib.inf; sourceTree = ""; }; + A58154182538173200CF4451 /* IoApicLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = IoApicLib.c; sourceTree = ""; }; + A581541A2538173200CF4451 /* ResetSystemLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ResetSystemLib.c; sourceTree = ""; }; + A581541B2538173200CF4451 /* ResetSystemLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = ResetSystemLib.uni; sourceTree = ""; }; + A581541C2538173200CF4451 /* ResetSystemLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = ResetSystemLib.inf; sourceTree = ""; }; + A581541E2538173200CF4451 /* SerialPortLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SerialPortLib.c; sourceTree = ""; }; + A581541F2538173200CF4451 /* SerialIoLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = SerialIoLib.inf; sourceTree = ""; }; + A58154202538173200CF4451 /* PcAtSerialPortLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = PcAtSerialPortLib.uni; sourceTree = ""; }; + A58154222538173200CF4451 /* Legacy8259Extra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = Legacy8259Extra.uni; sourceTree = ""; }; + A58154232538173200CF4451 /* 8259.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = 8259.c; sourceTree = ""; }; + A58154242538173200CF4451 /* 8259.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = 8259.inf; sourceTree = ""; }; + A58154252538173200CF4451 /* Legacy8259.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = Legacy8259.uni; sourceTree = ""; }; + A58154262538173200CF4451 /* 8259.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = 8259.h; sourceTree = ""; }; + A58154272538173200CF4451 /* PcAtChipsetPkgExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = PcAtChipsetPkgExtra.uni; sourceTree = ""; }; + A58154292538173200CF4451 /* Timer.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Timer.c; sourceTree = ""; }; + A581542A2538173200CF4451 /* Timer.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = Timer.uni; sourceTree = ""; }; + A581542B2538173200CF4451 /* 8254Timer.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = 8254Timer.inf; sourceTree = ""; }; + A581542C2538173200CF4451 /* Timer.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Timer.h; sourceTree = ""; }; + A581542D2538173200CF4451 /* TimerExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = TimerExtra.uni; sourceTree = ""; }; + A581542F2538173200CF4451 /* PcatRealTimeClockRuntimeDxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = PcatRealTimeClockRuntimeDxe.inf; sourceTree = ""; }; + A58154302538173200CF4451 /* PcRtc.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = PcRtc.uni; sourceTree = ""; }; + A58154312538173200CF4451 /* PcRtc.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PcRtc.c; sourceTree = ""; }; + A58154322538173200CF4451 /* PcRtcEntry.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PcRtcEntry.c; sourceTree = ""; }; + A58154332538173200CF4451 /* PcRtcExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = PcRtcExtra.uni; sourceTree = ""; }; + A58154342538173200CF4451 /* PcRtc.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PcRtc.h; sourceTree = ""; }; + A58154362538173A00CF4451 /* UefiCpuPkgExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = UefiCpuPkgExtra.uni; sourceTree = ""; }; + A58154372538173A00CF4451 /* UefiCpuPkg.dsc */ = {isa = PBXFileReference; lastKnownFileType = text; path = UefiCpuPkg.dsc; sourceTree = ""; }; + A58154392538173A00CF4451 /* CpuMpPei.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = CpuMpPei.inf; sourceTree = ""; }; + A581543A2538173A00CF4451 /* CpuMpPei.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = CpuMpPei.uni; sourceTree = ""; }; + A581543B2538173A00CF4451 /* CpuMpPeiExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = CpuMpPeiExtra.uni; sourceTree = ""; }; + A581543C2538173A00CF4451 /* CpuBist.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = CpuBist.c; sourceTree = ""; }; + A581543D2538173A00CF4451 /* CpuMpPei.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = CpuMpPei.c; sourceTree = ""; }; + A581543E2538173A00CF4451 /* CpuMp2Pei.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = CpuMp2Pei.c; sourceTree = ""; }; + A581543F2538173A00CF4451 /* CpuMpPei.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = CpuMpPei.h; sourceTree = ""; }; + A58154402538173A00CF4451 /* CpuPaging.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = CpuPaging.c; sourceTree = ""; }; + A58154422538173A00CF4451 /* CpuMp.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = CpuMp.c; sourceTree = ""; }; + A58154432538173A00CF4451 /* CpuGdt.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = CpuGdt.c; sourceTree = ""; }; + A58154442538173A00CF4451 /* CpuPageTable.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = CpuPageTable.h; sourceTree = ""; }; + A58154462538173A00CF4451 /* PagingAttribute.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PagingAttribute.c; sourceTree = ""; }; + A58154472538173A00CF4451 /* CpuAsm.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = CpuAsm.nasm; sourceTree = ""; }; + A58154482538173A00CF4451 /* CpuDxeExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = CpuDxeExtra.uni; sourceTree = ""; }; + A58154492538173A00CF4451 /* CpuDxe.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = CpuDxe.c; sourceTree = ""; }; + A581544A2538173A00CF4451 /* CpuGdt.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = CpuGdt.h; sourceTree = ""; }; + A581544C2538173A00CF4451 /* PagingAttribute.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PagingAttribute.c; sourceTree = ""; }; + A581544D2538173A00CF4451 /* CpuAsm.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = CpuAsm.nasm; sourceTree = ""; }; + A581544E2538173A00CF4451 /* CpuMp.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = CpuMp.h; sourceTree = ""; }; + A581544F2538173A00CF4451 /* CpuPageTable.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = CpuPageTable.c; sourceTree = ""; }; + A58154502538173A00CF4451 /* CpuDxe.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = CpuDxe.uni; sourceTree = ""; }; + A58154512538173A00CF4451 /* CpuDxe.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = CpuDxe.h; sourceTree = ""; }; + A58154522538173A00CF4451 /* CpuDxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = CpuDxe.inf; sourceTree = ""; }; + A58154542538173A00CF4451 /* CpuS3.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = CpuS3.c; sourceTree = ""; }; + A58154552538173A00CF4451 /* SmramSaveState.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SmramSaveState.c; sourceTree = ""; }; + A58154562538173A00CF4451 /* PiSmmCpuDxeSmm.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PiSmmCpuDxeSmm.c; sourceTree = ""; }; + A58154572538173A00CF4451 /* SmmProfile.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SmmProfile.c; sourceTree = ""; }; + A58154592538173A00CF4451 /* SmmProfileArch.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SmmProfileArch.h; sourceTree = ""; }; + A581545A2538173A00CF4451 /* PageTbl.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PageTbl.c; sourceTree = ""; }; + A581545B2538173A00CF4451 /* Cet.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = Cet.nasm; sourceTree = ""; }; + A581545C2538173A00CF4451 /* Semaphore.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Semaphore.c; sourceTree = ""; }; + A581545D2538173A00CF4451 /* SmmInit.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = SmmInit.nasm; sourceTree = ""; }; + A581545E2538173A00CF4451 /* SmmProfileArch.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SmmProfileArch.c; sourceTree = ""; }; + A581545F2538173A00CF4451 /* MpFuncs.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = MpFuncs.nasm; sourceTree = ""; }; + A58154602538173A00CF4451 /* SmmFuncsArch.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SmmFuncsArch.c; sourceTree = ""; }; + A58154612538173A00CF4451 /* SmiEntry.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = SmiEntry.nasm; sourceTree = ""; }; + A58154622538173A00CF4451 /* SmiException.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = SmiException.nasm; sourceTree = ""; }; + A58154632538173A00CF4451 /* SmmProfileInternal.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SmmProfileInternal.h; sourceTree = ""; }; + A58154642538173A00CF4451 /* SmmCpuMemoryManagement.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SmmCpuMemoryManagement.c; sourceTree = ""; }; + A58154652538173A00CF4451 /* SmmMp.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SmmMp.h; sourceTree = ""; }; + A58154662538173A00CF4451 /* CpuService.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = CpuService.c; sourceTree = ""; }; + A58154672538173A00CF4451 /* MpService.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = MpService.c; sourceTree = ""; }; + A58154692538173A00CF4451 /* SmmProfileArch.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SmmProfileArch.h; sourceTree = ""; }; + A581546A2538173A00CF4451 /* PageTbl.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PageTbl.c; sourceTree = ""; }; + A581546B2538173A00CF4451 /* Cet.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = Cet.nasm; sourceTree = ""; }; + A581546C2538173A00CF4451 /* Semaphore.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Semaphore.c; sourceTree = ""; }; + A581546D2538173A00CF4451 /* SmmInit.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = SmmInit.nasm; sourceTree = ""; }; + A581546E2538173A00CF4451 /* SmmProfileArch.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SmmProfileArch.c; sourceTree = ""; }; + A581546F2538173A00CF4451 /* MpFuncs.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = MpFuncs.nasm; sourceTree = ""; }; + A58154702538173A00CF4451 /* SmmFuncsArch.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SmmFuncsArch.c; sourceTree = ""; }; + A58154712538173A00CF4451 /* SmiEntry.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = SmiEntry.nasm; sourceTree = ""; }; + A58154722538173A00CF4451 /* SmiException.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = SmiException.nasm; sourceTree = ""; }; + A58154732538173B00CF4451 /* PiSmmCpuDxeSmmExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = PiSmmCpuDxeSmmExtra.uni; sourceTree = ""; }; + A58154742538173B00CF4451 /* SmmProfile.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SmmProfile.h; sourceTree = ""; }; + A58154752538173B00CF4451 /* PiSmmCpuDxeSmm.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PiSmmCpuDxeSmm.h; sourceTree = ""; }; + A58154762538173B00CF4451 /* PiSmmCpuDxeSmm.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = PiSmmCpuDxeSmm.inf; sourceTree = ""; }; + A58154772538173B00CF4451 /* PiSmmCpuDxeSmm.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = PiSmmCpuDxeSmm.uni; sourceTree = ""; }; + A58154782538173B00CF4451 /* SmmMp.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SmmMp.c; sourceTree = ""; }; + A58154792538173B00CF4451 /* CpuService.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = CpuService.h; sourceTree = ""; }; + A581547A2538173B00CF4451 /* SyncTimer.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SyncTimer.c; sourceTree = ""; }; + A581547F2538173B00CF4451 /* AsmFuncs.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = AsmFuncs.nasm; sourceTree = ""; }; + A58154802538173B00CF4451 /* S3Resume2PeiExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = S3Resume2PeiExtra.uni; sourceTree = ""; }; + A58154822538173B00CF4451 /* AsmFuncs.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = AsmFuncs.nasm; sourceTree = ""; }; + A58154832538173B00CF4451 /* S3Resume2Pei.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = S3Resume2Pei.inf; sourceTree = ""; }; + A58154842538173B00CF4451 /* S3Resume.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = S3Resume.c; sourceTree = ""; }; + A58154852538173B00CF4451 /* S3Resume2Pei.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = S3Resume2Pei.uni; sourceTree = ""; }; + A58154872538173B00CF4451 /* CpuIo2Smm.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = CpuIo2Smm.inf; sourceTree = ""; }; + A58154882538173B00CF4451 /* CpuIo2SmmExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = CpuIo2SmmExtra.uni; sourceTree = ""; }; + A58154892538173B00CF4451 /* CpuIo2Smm.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = CpuIo2Smm.uni; sourceTree = ""; }; + A581548A2538173B00CF4451 /* CpuIo2Smm.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = CpuIo2Smm.c; sourceTree = ""; }; + A581548B2538173B00CF4451 /* CpuIo2Smm.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = CpuIo2Smm.h; sourceTree = ""; }; + A581548C2538173B00CF4451 /* UefiCpuPkg.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = UefiCpuPkg.uni; sourceTree = ""; }; + A581548F2538173B00CF4451 /* MtrrLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MtrrLib.h; sourceTree = ""; }; + A58154902538173B00CF4451 /* LocalApicLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = LocalApicLib.h; sourceTree = ""; }; + A58154912538173B00CF4451 /* SmmCpuPlatformHookLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SmmCpuPlatformHookLib.h; sourceTree = ""; }; + A58154922538173B00CF4451 /* PlatformSecLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PlatformSecLib.h; sourceTree = ""; }; + A58154932538173B00CF4451 /* SmmCpuFeaturesLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SmmCpuFeaturesLib.h; sourceTree = ""; }; + A58154942538173B00CF4451 /* MpInitLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MpInitLib.h; sourceTree = ""; }; + A58154952538173B00CF4451 /* RegisterCpuFeaturesLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = RegisterCpuFeaturesLib.h; sourceTree = ""; }; + A58154962538173B00CF4451 /* UefiCpuLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = UefiCpuLib.h; sourceTree = ""; }; + A58154982538173B00CF4451 /* SmmCpuService.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SmmCpuService.h; sourceTree = ""; }; + A58154992538173B00CF4451 /* SmMonitorInit.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SmMonitorInit.h; sourceTree = ""; }; + A581549A2538173B00CF4451 /* StuffRsbNasm.inc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.pascal; path = StuffRsbNasm.inc; sourceTree = ""; }; + A581549C2538173B00CF4451 /* Microcode.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Microcode.h; sourceTree = ""; }; + A581549D2538173B00CF4451 /* SmramSaveStateMap.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SmramSaveStateMap.h; sourceTree = ""; }; + A581549E2538173B00CF4451 /* Cpuid.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Cpuid.h; sourceTree = ""; }; + A581549F2538173B00CF4451 /* LocalApic.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = LocalApic.h; sourceTree = ""; }; + A58154A02538173B00CF4451 /* StmApi.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = StmApi.h; sourceTree = ""; }; + A58154A12538173B00CF4451 /* ArchitecturalMsr.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ArchitecturalMsr.h; sourceTree = ""; }; + A58154A22538173B00CF4451 /* Msr.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Msr.h; sourceTree = ""; }; + A58154A42538173B00CF4451 /* CpuFeaturesSetDone.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = CpuFeaturesSetDone.h; sourceTree = ""; }; + A58154A52538173B00CF4451 /* CpuFeaturesInitDone.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = CpuFeaturesInitDone.h; sourceTree = ""; }; + A58154A62538173B00CF4451 /* MsegSmram.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MsegSmram.h; sourceTree = ""; }; + A58154A72538173B00CF4451 /* MicrocodePatchHob.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MicrocodePatchHob.h; sourceTree = ""; }; + A58154A82538173B00CF4451 /* CpuHotPlugData.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = CpuHotPlugData.h; sourceTree = ""; }; + A58154AA2538173B00CF4451 /* MpServices2.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MpServices2.h; sourceTree = ""; }; + A58154AB2538173B00CF4451 /* ShadowMicrocode.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ShadowMicrocode.h; sourceTree = ""; }; + A58154AC2538173B00CF4451 /* AcpiCpuData.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AcpiCpuData.h; sourceTree = ""; }; + A58154AD2538173B00CF4451 /* UefiCpuPkg.dec */ = {isa = PBXFileReference; lastKnownFileType = text; path = UefiCpuPkg.dec; sourceTree = ""; }; + A58154B02538173B00CF4451 /* SmmCpuExceptionHandlerLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = SmmCpuExceptionHandlerLib.inf; sourceTree = ""; }; + A58154B12538173B00CF4451 /* CpuExceptionCommon.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = CpuExceptionCommon.h; sourceTree = ""; }; + A58154B22538173B00CF4451 /* SmmCpuExceptionHandlerLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = SmmCpuExceptionHandlerLib.uni; sourceTree = ""; }; + A58154B32538173B00CF4451 /* PeiDxeSmmCpuException.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PeiDxeSmmCpuException.c; sourceTree = ""; }; + A58154B52538173B00CF4451 /* ExceptionHandlerAsm.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ExceptionHandlerAsm.nasm; sourceTree = ""; }; + A58154B62538173B00CF4451 /* ArchExceptionHandler.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ArchExceptionHandler.c; sourceTree = ""; }; + A58154B72538173B00CF4451 /* Xcode5ExceptionHandlerAsm.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = Xcode5ExceptionHandlerAsm.nasm; sourceTree = ""; }; + A58154B82538173B00CF4451 /* ArchInterruptDefs.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ArchInterruptDefs.h; sourceTree = ""; }; + A58154B92538173B00CF4451 /* SecPeiCpuExceptionHandlerLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = SecPeiCpuExceptionHandlerLib.inf; sourceTree = ""; }; + A58154BA2538173B00CF4451 /* SecPeiCpuException.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SecPeiCpuException.c; sourceTree = ""; }; + A58154BB2538173B00CF4451 /* SmmException.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SmmException.c; sourceTree = ""; }; + A58154BC2538173B00CF4451 /* SecPeiCpuExceptionHandlerLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = SecPeiCpuExceptionHandlerLib.uni; sourceTree = ""; }; + A58154BD2538173B00CF4451 /* CpuExceptionCommon.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = CpuExceptionCommon.c; sourceTree = ""; }; + A58154BF2538173B00CF4451 /* ExceptionHandlerAsm.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ExceptionHandlerAsm.nasm; sourceTree = ""; }; + A58154C02538173B00CF4451 /* ArchExceptionHandler.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ArchExceptionHandler.c; sourceTree = ""; }; + A58154C12538173B00CF4451 /* ExceptionTssEntryAsm.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ExceptionTssEntryAsm.nasm; sourceTree = ""; }; + A58154C22538173B00CF4451 /* ArchInterruptDefs.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ArchInterruptDefs.h; sourceTree = ""; }; + A58154C32538173B00CF4451 /* PeiCpuException.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PeiCpuException.c; sourceTree = ""; }; + A58154C42538173B00CF4451 /* DxeException.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DxeException.c; sourceTree = ""; }; + A58154C52538173B00CF4451 /* Xcode5SecPeiCpuExceptionHandlerLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = Xcode5SecPeiCpuExceptionHandlerLib.uni; sourceTree = ""; }; + A58154C62538173B00CF4451 /* DxeCpuExceptionHandlerLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = DxeCpuExceptionHandlerLib.inf; sourceTree = ""; }; + A58154C72538173B00CF4451 /* PeiCpuExceptionHandlerLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = PeiCpuExceptionHandlerLib.uni; sourceTree = ""; }; + A58154C82538173B00CF4451 /* Xcode5SecPeiCpuExceptionHandlerLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = Xcode5SecPeiCpuExceptionHandlerLib.inf; sourceTree = ""; }; + A58154C92538173B00CF4451 /* DxeCpuExceptionHandlerLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = DxeCpuExceptionHandlerLib.uni; sourceTree = ""; }; + A58154CA2538173B00CF4451 /* PeiCpuExceptionHandlerLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = PeiCpuExceptionHandlerLib.inf; sourceTree = ""; }; + A58154CC2538173B00CF4451 /* BaseXApicLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = BaseXApicLib.c; sourceTree = ""; }; + A58154CD2538173B00CF4451 /* BaseXApicLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = BaseXApicLib.uni; sourceTree = ""; }; + A58154CE2538173B00CF4451 /* BaseXApicLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = BaseXApicLib.inf; sourceTree = ""; }; + A58154D02538173B00CF4451 /* X86TimerLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = X86TimerLib.c; sourceTree = ""; }; + A58154D12538173B00CF4451 /* SecPeiDxeTimerLibUefiCpu.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = SecPeiDxeTimerLibUefiCpu.inf; sourceTree = ""; }; + A58154D22538173B00CF4451 /* SecPeiDxeTimerLibUefiCpu.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = SecPeiDxeTimerLibUefiCpu.uni; sourceTree = ""; }; + A58154D42538173B00CF4451 /* PeiMpInitLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = PeiMpInitLib.uni; sourceTree = ""; }; + A58154D52538173B00CF4451 /* DxeMpInitLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = DxeMpInitLib.uni; sourceTree = ""; }; + A58154D62538173B00CF4451 /* PeiMpInitLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = PeiMpInitLib.inf; sourceTree = ""; }; + A58154D72538173B00CF4451 /* MpLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = MpLib.c; sourceTree = ""; }; + A58154D82538173B00CF4451 /* DxeMpInitLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = DxeMpInitLib.inf; sourceTree = ""; }; + A58154DA2538173B00CF4451 /* MpEqu.inc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.pascal; path = MpEqu.inc; sourceTree = ""; }; + A58154DB2538173B00CF4451 /* MpFuncs.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = MpFuncs.nasm; sourceTree = ""; }; + A58154DC2538173B00CF4451 /* Microcode.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Microcode.c; sourceTree = ""; }; + A58154DE2538173B00CF4451 /* MpEqu.inc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.pascal; path = MpEqu.inc; sourceTree = ""; }; + A58154DF2538173B00CF4451 /* MpFuncs.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = MpFuncs.nasm; sourceTree = ""; }; + A58154E02538173B00CF4451 /* MpLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MpLib.h; sourceTree = ""; }; + A58154E12538173B00CF4451 /* DxeMpLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DxeMpLib.c; sourceTree = ""; }; + A58154E22538173B00CF4451 /* PeiMpLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PeiMpLib.c; sourceTree = ""; }; + A58154E42538173B00CF4451 /* DxeCpuTimerLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = DxeCpuTimerLib.inf; sourceTree = ""; }; + A58154E52538173B00CF4451 /* BaseCpuTimerLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = BaseCpuTimerLib.c; sourceTree = ""; }; + A58154E62538173B00CF4451 /* DxeCpuTimerLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = DxeCpuTimerLib.uni; sourceTree = ""; }; + A58154E72538173B00CF4451 /* BaseCpuTimerLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = BaseCpuTimerLib.uni; sourceTree = ""; }; + A58154E82538173B00CF4451 /* PeiCpuTimerLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = PeiCpuTimerLib.uni; sourceTree = ""; }; + A58154E92538173B00CF4451 /* PeiCpuTimerLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PeiCpuTimerLib.c; sourceTree = ""; }; + A58154EA2538173B00CF4451 /* BaseCpuTimerLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = BaseCpuTimerLib.inf; sourceTree = ""; }; + A58154EB2538173B00CF4451 /* PeiCpuTimerLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = PeiCpuTimerLib.inf; sourceTree = ""; }; + A58154EC2538173B00CF4451 /* DxeCpuTimerLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DxeCpuTimerLib.c; sourceTree = ""; }; + A58154ED2538173B00CF4451 /* CpuTimerLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = CpuTimerLib.c; sourceTree = ""; }; + A58154F02538173B00CF4451 /* InitializeFpu.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = InitializeFpu.nasm; sourceTree = ""; }; + A58154F12538173B00CF4451 /* BaseUefiCpuLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = BaseUefiCpuLib.inf; sourceTree = ""; }; + A58154F22538173B00CF4451 /* BaseUefiCpuLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = BaseUefiCpuLib.uni; sourceTree = ""; }; + A58154F42538173B00CF4451 /* InitializeFpu.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = InitializeFpu.nasm; sourceTree = ""; }; + A58154F62538173B00CF4451 /* PendingBreak.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PendingBreak.c; sourceTree = ""; }; + A58154F72538173B00CF4451 /* ProcTrace.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ProcTrace.c; sourceTree = ""; }; + A58154F82538173B00CF4451 /* CpuCommonFeatures.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = CpuCommonFeatures.h; sourceTree = ""; }; + A58154F92538173B00CF4451 /* Ppin.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Ppin.c; sourceTree = ""; }; + A58154FA2538173B00CF4451 /* Aesni.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Aesni.c; sourceTree = ""; }; + A58154FB2538173B00CF4451 /* CpuCommonFeaturesLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = CpuCommonFeaturesLib.c; sourceTree = ""; }; + A58154FC2538173B00CF4451 /* MachineCheck.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = MachineCheck.c; sourceTree = ""; }; + A58154FD2538173B00CF4451 /* MonitorMwait.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = MonitorMwait.c; sourceTree = ""; }; + A58154FE2538173B00CF4451 /* CpuCommonFeaturesLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = CpuCommonFeaturesLib.inf; sourceTree = ""; }; + A58154FF2538173B00CF4451 /* LimitCpuIdMaxval.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = LimitCpuIdMaxval.c; sourceTree = ""; }; + A58155002538173B00CF4451 /* Eist.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Eist.c; sourceTree = ""; }; + A58155012538173B00CF4451 /* CpuCommonFeaturesLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = CpuCommonFeaturesLib.uni; sourceTree = ""; }; + A58155022538173B00CF4451 /* C1e.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = C1e.c; sourceTree = ""; }; + A58155032538173B00CF4451 /* FeatureControl.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = FeatureControl.c; sourceTree = ""; }; + A58155042538173B00CF4451 /* X2Apic.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = X2Apic.c; sourceTree = ""; }; + A58155052538173B00CF4451 /* ClockModulation.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ClockModulation.c; sourceTree = ""; }; + A58155062538173B00CF4451 /* FastStrings.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = FastStrings.c; sourceTree = ""; }; + A58155082538173B00CF4451 /* BaseXApicX2ApicLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = BaseXApicX2ApicLib.uni; sourceTree = ""; }; + A58155092538173B00CF4451 /* BaseXApicX2ApicLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = BaseXApicX2ApicLib.inf; sourceTree = ""; }; + A581550A2538173B00CF4451 /* BaseXApicX2ApicLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = BaseXApicX2ApicLib.c; sourceTree = ""; }; + A581550C2538173B00CF4451 /* SmmStm.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SmmStm.c; sourceTree = ""; }; + A581550E2538173B00CF4451 /* SmmStmSupport.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SmmStmSupport.c; sourceTree = ""; }; + A581550F2538173B00CF4451 /* SmiEntry.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = SmiEntry.nasm; sourceTree = ""; }; + A58155102538173B00CF4451 /* SmiException.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = SmiException.nasm; sourceTree = ""; }; + A58155112538173B00CF4451 /* SmmCpuFeaturesLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = SmmCpuFeaturesLib.inf; sourceTree = ""; }; + A58155122538173B00CF4451 /* SmmCpuFeaturesLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = SmmCpuFeaturesLib.uni; sourceTree = ""; }; + A58155132538173B00CF4451 /* SmmStm.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SmmStm.h; sourceTree = ""; }; + A58155152538173B00CF4451 /* SmmStmSupport.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SmmStmSupport.c; sourceTree = ""; }; + A58155162538173B00CF4451 /* SmiEntry.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = SmiEntry.nasm; sourceTree = ""; }; + A58155172538173B00CF4451 /* SmiException.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = SmiException.nasm; sourceTree = ""; }; + A58155182538173B00CF4451 /* SmmCpuFeaturesLibNoStm.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SmmCpuFeaturesLibNoStm.c; sourceTree = ""; }; + A58155192538173B00CF4451 /* SmmCpuFeaturesLibStm.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = SmmCpuFeaturesLibStm.inf; sourceTree = ""; }; + A581551A2538173B00CF4451 /* SmmCpuFeaturesLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SmmCpuFeaturesLib.c; sourceTree = ""; }; + A581551C2538173B00CF4451 /* RegisterCpuFeaturesLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = RegisterCpuFeaturesLib.c; sourceTree = ""; }; + A581551D2538173B00CF4451 /* CpuFeaturesInitialize.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = CpuFeaturesInitialize.c; sourceTree = ""; }; + A581551E2538173B00CF4451 /* RegisterCpuFeatures.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = RegisterCpuFeatures.h; sourceTree = ""; }; + A581551F2538173B00CF4451 /* RegisterCpuFeaturesLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = RegisterCpuFeaturesLib.uni; sourceTree = ""; }; + A58155202538173B00CF4451 /* PeiRegisterCpuFeaturesLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PeiRegisterCpuFeaturesLib.c; sourceTree = ""; }; + A58155212538173B00CF4451 /* PeiRegisterCpuFeaturesLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = PeiRegisterCpuFeaturesLib.inf; sourceTree = ""; }; + A58155222538173B00CF4451 /* DxeRegisterCpuFeaturesLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DxeRegisterCpuFeaturesLib.c; sourceTree = ""; }; + A58155232538173B00CF4451 /* DxeRegisterCpuFeaturesLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = DxeRegisterCpuFeaturesLib.inf; sourceTree = ""; }; + A58155252538173B00CF4451 /* MpInitLibUp.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = MpInitLibUp.c; sourceTree = ""; }; + A58155262538173B00CF4451 /* MpInitLibUp.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = MpInitLibUp.inf; sourceTree = ""; }; + A58155272538173B00CF4451 /* MpInitLibUp.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = MpInitLibUp.uni; sourceTree = ""; }; + A58155292538173B00CF4451 /* SmmCpuPlatformHookLibNull.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SmmCpuPlatformHookLibNull.c; sourceTree = ""; }; + A581552A2538173B00CF4451 /* SmmCpuPlatformHookLibNull.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = SmmCpuPlatformHookLibNull.uni; sourceTree = ""; }; + A581552B2538173B00CF4451 /* SmmCpuPlatformHookLibNull.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = SmmCpuPlatformHookLibNull.inf; sourceTree = ""; }; + A581552D2538173B00CF4451 /* PlatformSecLibNull.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PlatformSecLibNull.c; sourceTree = ""; }; + A581552E2538173B00CF4451 /* PlatformSecLibNull.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = PlatformSecLibNull.uni; sourceTree = ""; }; + A581552F2538173B00CF4451 /* PlatformSecLibNull.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = PlatformSecLibNull.inf; sourceTree = ""; }; + A58155312538173B00CF4451 /* MtrrLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = MtrrLib.inf; sourceTree = ""; }; + A58155322538173B00CF4451 /* MtrrLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = MtrrLib.uni; sourceTree = ""; }; + A58155332538173B00CF4451 /* MtrrLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = MtrrLib.c; sourceTree = ""; }; + A58155352538173B00CF4451 /* CpuIo2Dxe.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = CpuIo2Dxe.uni; sourceTree = ""; }; + A58155362538173B00CF4451 /* CpuIo2DxeExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = CpuIo2DxeExtra.uni; sourceTree = ""; }; + A58155372538173B00CF4451 /* CpuIo2Dxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = CpuIo2Dxe.inf; sourceTree = ""; }; + A58155382538173B00CF4451 /* CpuIo2Dxe.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = CpuIo2Dxe.c; sourceTree = ""; }; + A58155392538173B00CF4451 /* CpuIo2Dxe.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = CpuIo2Dxe.h; sourceTree = ""; }; + A581553B2538173B00CF4451 /* CpuFeaturesDxe.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = CpuFeaturesDxe.c; sourceTree = ""; }; + A581553C2538173B00CF4451 /* CpuFeaturesDxeExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = CpuFeaturesDxeExtra.uni; sourceTree = ""; }; + A581553D2538173B00CF4451 /* CpuFeaturesDxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = CpuFeaturesDxe.inf; sourceTree = ""; }; + A581553E2538173B00CF4451 /* CpuFeaturesDxe.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = CpuFeaturesDxe.uni; sourceTree = ""; }; + A581553F2538173B00CF4451 /* CpuFeaturesPei.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = CpuFeaturesPei.c; sourceTree = ""; }; + A58155402538173B00CF4451 /* CpuFeaturesPei.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = CpuFeaturesPei.inf; sourceTree = ""; }; + A58155412538173B00CF4451 /* CpuFeaturesPei.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = CpuFeaturesPei.uni; sourceTree = ""; }; + A58155422538173B00CF4451 /* CpuFeaturesPeiExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = CpuFeaturesPeiExtra.uni; sourceTree = ""; }; + A58155432538173B00CF4451 /* UefiCpuPkg.ci.yaml */ = {isa = PBXFileReference; lastKnownFileType = text.yaml; path = UefiCpuPkg.ci.yaml; sourceTree = ""; }; + A58155462538173B00CF4451 /* CpuidExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = CpuidExtra.uni; sourceTree = ""; }; + A58155472538173B00CF4451 /* Cpuid.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Cpuid.c; sourceTree = ""; }; + A58155482538173B00CF4451 /* Cpuid.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = Cpuid.inf; sourceTree = ""; }; + A58155492538173B00CF4451 /* Cpuid.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = Cpuid.uni; sourceTree = ""; }; + A581554B2538173B00CF4451 /* PiSmmCommunicationPei.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PiSmmCommunicationPei.c; sourceTree = ""; }; + A581554C2538173B00CF4451 /* PiSmmCommunicationPei.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = PiSmmCommunicationPei.uni; sourceTree = ""; }; + A581554D2538173B00CF4451 /* PiSmmCommunicationPei.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = PiSmmCommunicationPei.inf; sourceTree = ""; }; + A581554E2538173B00CF4451 /* PiSmmCommunicationSmmExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = PiSmmCommunicationSmmExtra.uni; sourceTree = ""; }; + A581554F2538173B00CF4451 /* PiSmmCommunicationPeiExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = PiSmmCommunicationPeiExtra.uni; sourceTree = ""; }; + A58155502538173B00CF4451 /* PiSmmCommunicationSmm.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PiSmmCommunicationSmm.c; sourceTree = ""; }; + A58155512538173B00CF4451 /* PiSmmCommunicationPrivate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PiSmmCommunicationPrivate.h; sourceTree = ""; }; + A58155522538173B00CF4451 /* PiSmmCommunicationSmm.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = PiSmmCommunicationSmm.inf; sourceTree = ""; }; + A58155532538173B00CF4451 /* PiSmmCommunicationSmm.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = PiSmmCommunicationSmm.uni; sourceTree = ""; }; + A58155562538173B00CF4451 /* Vtf.nasmb */ = {isa = PBXFileReference; lastKnownFileType = text; path = Vtf.nasmb; sourceTree = ""; }; + A58155572538173B00CF4451 /* Vtf.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = Vtf.inf; sourceTree = ""; }; + A58155582538173B00CF4451 /* ResetVector.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = ResetVector.uni; sourceTree = ""; }; + A58155592538173B00CF4451 /* ResetVectorExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = ResetVectorExtra.uni; sourceTree = ""; }; + A581555B2538173B00CF4451 /* CommonMacros.inc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.pascal; path = CommonMacros.inc; sourceTree = ""; }; + A581555C2538173B00CF4451 /* Build.py */ = {isa = PBXFileReference; lastKnownFileType = text.script.python; path = Build.py; sourceTree = ""; }; + A581555E2538173B00CF4451 /* FixupForRawSection.py */ = {isa = PBXFileReference; lastKnownFileType = text.script.python; path = FixupForRawSection.py; sourceTree = ""; }; + A58155602538173B00CF4451 /* ResetVector.x64.port80.raw */ = {isa = PBXFileReference; lastKnownFileType = file; path = ResetVector.x64.port80.raw; sourceTree = ""; }; + A58155612538173B00CF4451 /* ResetVector.ia32.port80.raw */ = {isa = PBXFileReference; lastKnownFileType = file; path = ResetVector.ia32.port80.raw; sourceTree = ""; }; + A58155622538173B00CF4451 /* ResetVector.x64.raw */ = {isa = PBXFileReference; lastKnownFileType = file; path = ResetVector.x64.raw; sourceTree = ""; }; + A58155632538173B00CF4451 /* ResetVector.ia32.serial.raw */ = {isa = PBXFileReference; lastKnownFileType = file; path = ResetVector.ia32.serial.raw; sourceTree = ""; }; + A58155642538173B00CF4451 /* ResetVector.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = ResetVector.uni; sourceTree = ""; }; + A58155652538173B00CF4451 /* ResetVector.x64.serial.raw */ = {isa = PBXFileReference; lastKnownFileType = file; path = ResetVector.x64.serial.raw; sourceTree = ""; }; + A58155662538173B00CF4451 /* ResetVector.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = ResetVector.inf; sourceTree = ""; }; + A58155672538173B00CF4451 /* ResetVectorExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = ResetVectorExtra.uni; sourceTree = ""; }; + A58155682538173B00CF4451 /* ResetVector.ia32.raw */ = {isa = PBXFileReference; lastKnownFileType = file; path = ResetVector.ia32.raw; sourceTree = ""; }; + A581556A2538173B00CF4451 /* PageTables.asm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm.asm; path = PageTables.asm; sourceTree = ""; }; + A581556B2538173B00CF4451 /* PostCodes.inc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.pascal; path = PostCodes.inc; sourceTree = ""; }; + A581556C2538173B00CF4451 /* Main.asm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm.asm; path = Main.asm; sourceTree = ""; }; + A581556D2538173B00CF4451 /* SerialDebug.asm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm.asm; path = SerialDebug.asm; sourceTree = ""; }; + A581556F2538173B00CF4451 /* SearchForSecEntry.asm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm.asm; path = SearchForSecEntry.asm; sourceTree = ""; }; + A58155702538173B00CF4451 /* PageTables64.asm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm.asm; path = PageTables64.asm; sourceTree = ""; }; + A58155712538173B00CF4451 /* SearchForBfvBase.asm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm.asm; path = SearchForBfvBase.asm; sourceTree = ""; }; + A58155722538173B00CF4451 /* Flat32ToFlat64.asm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm.asm; path = Flat32ToFlat64.asm; sourceTree = ""; }; + A58155732538173B00CF4451 /* Port80Debug.asm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm.asm; path = Port80Debug.asm; sourceTree = ""; }; + A58155742538173B00CF4451 /* Vtf0.nasmb */ = {isa = PBXFileReference; lastKnownFileType = text; path = Vtf0.nasmb; sourceTree = ""; }; + A58155752538173B00CF4451 /* Vtf0.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = Vtf0.inf; sourceTree = ""; }; + A58155762538173B00CF4451 /* ReadMe.txt */ = {isa = PBXFileReference; lastKnownFileType = text; path = ReadMe.txt; sourceTree = ""; }; + A58155772538173B00CF4451 /* ResetVector.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = ResetVector.uni; sourceTree = ""; }; + A58155792538173B00CF4451 /* Real16ToFlat32.asm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm.asm; path = Real16ToFlat32.asm; sourceTree = ""; }; + A581557A2538173B00CF4451 /* Init16.asm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm.asm; path = Init16.asm; sourceTree = ""; }; + A581557B2538173B00CF4451 /* ResetVectorVtf0.asm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm.asm; path = ResetVectorVtf0.asm; sourceTree = ""; }; + A581557C2538173B00CF4451 /* DebugDisabled.asm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm.asm; path = DebugDisabled.asm; sourceTree = ""; }; + A581557D2538173B00CF4451 /* ResetVectorExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = ResetVectorExtra.uni; sourceTree = ""; }; + A581557F2538173B00CF4451 /* CpuIoPei.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = CpuIoPei.inf; sourceTree = ""; }; + A58155802538173B00CF4451 /* CpuIoPei.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = CpuIoPei.c; sourceTree = ""; }; + A58155812538173B00CF4451 /* CpuIoPei.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = CpuIoPei.uni; sourceTree = ""; }; + A58155822538173B00CF4451 /* CpuIoPei.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = CpuIoPei.h; sourceTree = ""; }; + A58155832538173B00CF4451 /* CpuIoPeiExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = CpuIoPeiExtra.uni; sourceTree = ""; }; + A58155852538173B00CF4451 /* SecCore.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = SecCore.inf; sourceTree = ""; }; + A58155862538173B00CF4451 /* SecCore.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = SecCore.uni; sourceTree = ""; }; + A58155872538173B00CF4451 /* SecMain.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SecMain.h; sourceTree = ""; }; + A58155892538173B00CF4451 /* ResetVec.nasmb */ = {isa = PBXFileReference; lastKnownFileType = text; path = ResetVec.nasmb; sourceTree = ""; }; + A581558A2538173B00CF4451 /* FindPeiCore.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = FindPeiCore.c; sourceTree = ""; }; + A581558B2538173B00CF4451 /* SecBist.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SecBist.c; sourceTree = ""; }; + A581558C2538173B00CF4451 /* SecCoreExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = SecCoreExtra.uni; sourceTree = ""; }; + A581558D2538173B00CF4451 /* SecMain.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SecMain.c; sourceTree = ""; }; + A581558F2538173B00CF4451 /* CpuS3DataDxeExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = CpuS3DataDxeExtra.uni; sourceTree = ""; }; + A58155902538173B00CF4451 /* CpuS3DataDxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = CpuS3DataDxe.inf; sourceTree = ""; }; + A58155912538173B00CF4451 /* CpuS3DataDxe.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = CpuS3DataDxe.uni; sourceTree = ""; }; + A58155922538173B00CF4451 /* CpuS3Data.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = CpuS3Data.c; sourceTree = ""; }; A5816DEE24180F81003BA66C /* global_test.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = global_test.cpp; sourceTree = ""; }; A5816DEF24180F82003BA66C /* global_test.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = global_test.h; sourceTree = ""; }; A5816DF52418103A003BA66C /* menu_items.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = menu_items.cpp; sourceTree = ""; }; @@ -3586,3407 +6159,6 @@ A59F76E622AEB6CD009DF043 /* ApfsDriverLoader.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = ApfsDriverLoader.inf; sourceTree = ""; }; A59F76E722AEB6CD009DF043 /* EfiComponentName.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = EfiComponentName.c; sourceTree = ""; }; A59F76E822AEB6CD009DF043 /* EfiComponentName.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = EfiComponentName.h; sourceTree = ""; }; - A5AA0000237F13BE009CD413 /* BaseLibInternals.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BaseLibInternals.h; sourceTree = ""; }; - A5AA0001237F13BE009CD413 /* DivS64x64Remainder.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = DivS64x64Remainder.c; sourceTree = ""; }; - A5AA0002237F13BE009CD413 /* X86WriteIdtr.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = X86WriteIdtr.c; sourceTree = ""; }; - A5AA0003237F13BE009CD413 /* FilePaths.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = FilePaths.c; sourceTree = ""; }; - A5AA0004237F13BE009CD413 /* BaseLib.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = BaseLib.uni; sourceTree = ""; }; - A5AA0005237F13BE009CD413 /* X86FxRestore.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = X86FxRestore.c; sourceTree = ""; }; - A5AA0006237F13BE009CD413 /* RRotU64.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = RRotU64.c; sourceTree = ""; }; - A5AA0007237F13BE009CD413 /* LongJump.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = LongJump.c; sourceTree = ""; }; - A5AA0008237F13BE009CD413 /* Cpu.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = Cpu.c; sourceTree = ""; }; - A5AA0009237F13BE009CD413 /* BaseLib.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = BaseLib.inf; sourceTree = ""; }; - A5AA000A237F13BE009CD413 /* GetPowerOfTwo64.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = GetPowerOfTwo64.c; sourceTree = ""; }; - A5AA000C237F13BE009CD413 /* WriteMm4.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = WriteMm4.nasm; sourceTree = ""; }; - A5AA000D237F13BE009CD413 /* WriteDr6.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = WriteDr6.nasm; sourceTree = ""; }; - A5AA000E237F13BE009CD413 /* Nasm.inc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.pascal; path = Nasm.inc; sourceTree = ""; }; - A5AA000F237F13BE009CD413 /* WriteTr.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = WriteTr.nasm; sourceTree = ""; }; - A5AA0010237F13BE009CD413 /* WriteCr4.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = WriteCr4.nasm; sourceTree = ""; }; - A5AA0011237F13BE009CD413 /* Mwait.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = Mwait.nasm; sourceTree = ""; }; - A5AA0012237F13BE009CD413 /* ReadFs.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = ReadFs.nasm; sourceTree = ""; }; - A5AA0013237F13BE009CD413 /* ReadDs.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = ReadDs.nasm; sourceTree = ""; }; - A5AA0014237F13BE009CD413 /* FxRestore.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = FxRestore.nasm; sourceTree = ""; }; - A5AA0015237F13BE009CD413 /* ReadMm4.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = ReadMm4.nasm; sourceTree = ""; }; - A5AA0016237F13BE009CD413 /* ReadDr6.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = ReadDr6.nasm; sourceTree = ""; }; - A5AA0017237F13BE009CD413 /* CpuPause.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = CpuPause.nasm; sourceTree = ""; }; - A5AA0018237F13BE009CD413 /* ReadCr4.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = ReadCr4.nasm; sourceTree = ""; }; - A5AA0019237F13BE009CD413 /* WriteLdtr.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = WriteLdtr.nasm; sourceTree = ""; }; - A5AA001A237F13BE009CD413 /* ReadDr7.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = ReadDr7.nasm; sourceTree = ""; }; - A5AA001B237F13BE009CD413 /* SwitchStack.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = SwitchStack.nasm; sourceTree = ""; }; - A5AA001C237F13BE009CD413 /* ReadMm5.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = ReadMm5.nasm; sourceTree = ""; }; - A5AA001D237F13BE009CD413 /* WriteMsr64.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = WriteMsr64.nasm; sourceTree = ""; }; - A5AA001E237F13BE009CD413 /* ReadIdtr.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = ReadIdtr.nasm; sourceTree = ""; }; - A5AA001F237F13BE009CD413 /* WriteDr7.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = WriteDr7.nasm; sourceTree = ""; }; - A5AA0020237F13BE009CD413 /* WriteMm5.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = WriteMm5.nasm; sourceTree = ""; }; - A5AA0021237F13BE009CD413 /* ReadMm2.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = ReadMm2.nasm; sourceTree = ""; }; - A5AA0022237F13BE009CD413 /* ReadDr0.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = ReadDr0.nasm; sourceTree = ""; }; - A5AA0023237F13BE009CD413 /* ReadEs.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = ReadEs.nasm; sourceTree = ""; }; - A5AA0024237F13BE009CD413 /* ReadCr2.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = ReadCr2.nasm; sourceTree = ""; }; - A5AA0025237F13BE009CD413 /* EnableCache.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = EnableCache.nasm; sourceTree = ""; }; - A5AA0026237F13BE009CD413 /* CpuIdEx.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = CpuIdEx.nasm; sourceTree = ""; }; - A5AA0027237F13BE009CD413 /* SetJump.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = SetJump.nasm; sourceTree = ""; }; - A5AA0028237F13BE009CD413 /* WriteMm2.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = WriteMm2.nasm; sourceTree = ""; }; - A5AA0029237F13BE009CD413 /* EnableInterrupts.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = EnableInterrupts.nasm; sourceTree = ""; }; - A5AA002A237F13BE009CD413 /* RdRand.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = RdRand.nasm; sourceTree = ""; }; - A5AA002B237F13BE009CD413 /* WriteDr0.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = WriteDr0.nasm; sourceTree = ""; }; - A5AA002C237F13BE009CD413 /* DisableCache.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = DisableCache.nasm; sourceTree = ""; }; - A5AA002D237F13BE009CD413 /* WriteCr2.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = WriteCr2.nasm; sourceTree = ""; }; - A5AA002E237F13BE009CD413 /* ReadGs.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = ReadGs.nasm; sourceTree = ""; }; - A5AA002F237F13BE009CD413 /* WriteGdtr.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = WriteGdtr.nasm; sourceTree = ""; }; - A5AA0030237F13BE009CD413 /* ReadCs.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = ReadCs.nasm; sourceTree = ""; }; - A5AA0031237F13BE009CD413 /* EnableDisableInterrupts.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = EnableDisableInterrupts.nasm; sourceTree = ""; }; - A5AA0032237F13BE009CD413 /* WriteCr3.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = WriteCr3.nasm; sourceTree = ""; }; - A5AA0033237F13BE009CD413 /* WriteDr1.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = WriteDr1.nasm; sourceTree = ""; }; - A5AA0034237F13BE009CD413 /* ReadMsr64.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ReadMsr64.c; sourceTree = ""; }; - A5AA0035237F13BE009CD413 /* WriteMm3.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = WriteMm3.nasm; sourceTree = ""; }; - A5AA0036237F13BE009CD413 /* Thunk16.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = Thunk16.nasm; sourceTree = ""; }; - A5AA0037237F13BE009CD413 /* ReadCr3.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = ReadCr3.nasm; sourceTree = ""; }; - A5AA0038237F13BE009CD413 /* ReadDr1.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = ReadDr1.nasm; sourceTree = ""; }; - A5AA0039237F13BE009CD413 /* ReadMm3.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = ReadMm3.nasm; sourceTree = ""; }; - A5AA003A237F13BE009CD413 /* ReadCr0.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = ReadCr0.nasm; sourceTree = ""; }; - A5AA003B237F13BE009CD413 /* DisableInterrupts.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = DisableInterrupts.nasm; sourceTree = ""; }; - A5AA003C237F13BE009CD413 /* ReadDr2.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = ReadDr2.nasm; sourceTree = ""; }; - A5AA003D237F13BE009CD413 /* Lfence.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = Lfence.nasm; sourceTree = ""; }; - A5AA003E237F13BE009CD413 /* ReadMm0.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = ReadMm0.nasm; sourceTree = ""; }; - A5AA003F237F13BE009CD413 /* DisablePaging64.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = DisablePaging64.nasm; sourceTree = ""; }; - A5AA0040237F13BE009CD413 /* WriteCr0.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = WriteCr0.nasm; sourceTree = ""; }; - A5AA0041237F13BE009CD413 /* WriteDr2.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = WriteDr2.nasm; sourceTree = ""; }; - A5AA0042237F13BE009CD413 /* WriteMm0.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = WriteMm0.nasm; sourceTree = ""; }; - A5AA0043237F13BE009CD413 /* GccInline.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = GccInline.c; sourceTree = ""; }; - A5AA0044237F13BE009CD413 /* CpuBreakpoint.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = CpuBreakpoint.c; sourceTree = ""; }; - A5AA0045237F13BE009CD413 /* WriteMm1.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = WriteMm1.nasm; sourceTree = ""; }; - A5AA0046237F13BE009CD413 /* ReadTr.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = ReadTr.nasm; sourceTree = ""; }; - A5AA0047237F13BE009CD413 /* WriteDr3.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = WriteDr3.nasm; sourceTree = ""; }; - A5AA0048237F13BE009CD413 /* ReadMm1.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = ReadMm1.nasm; sourceTree = ""; }; - A5AA0049237F13BE009CD413 /* ReadDr3.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = ReadDr3.nasm; sourceTree = ""; }; - A5AA004A237F13BE009CD413 /* CpuBreakpoint.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = CpuBreakpoint.nasm; sourceTree = ""; }; - A5AA004B237F13BE009CD413 /* Invd.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = Invd.nasm; sourceTree = ""; }; - A5AA004C237F13BE009CD413 /* LongJump.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = LongJump.nasm; sourceTree = ""; }; - A5AA004D237F13BE009CD413 /* ReadGdtr.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = ReadGdtr.nasm; sourceTree = ""; }; - A5AA004E237F13BE009CD413 /* Wbinvd.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = Wbinvd.nasm; sourceTree = ""; }; - A5AA004F237F13BE009CD413 /* ReadEflags.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = ReadEflags.nasm; sourceTree = ""; }; - A5AA0050237F13BE009CD413 /* WriteMsr64.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = WriteMsr64.c; sourceTree = ""; }; - A5AA0051237F13BE009CD413 /* Non-existing.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = "Non-existing.c"; sourceTree = ""; }; - A5AA0052237F13BE009CD413 /* WriteDr4.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = WriteDr4.nasm; sourceTree = ""; }; - A5AA0053237F13BE009CD413 /* FlushCacheLine.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = FlushCacheLine.nasm; sourceTree = ""; }; - A5AA0054237F13BE009CD413 /* WriteMm6.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = WriteMm6.nasm; sourceTree = ""; }; - A5AA0055237F13BE009CD413 /* ReadLdtr.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = ReadLdtr.nasm; sourceTree = ""; }; - A5AA0056237F13BE009CD413 /* WriteIdtr.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = WriteIdtr.nasm; sourceTree = ""; }; - A5AA0057237F13BE009CD413 /* FxSave.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = FxSave.nasm; sourceTree = ""; }; - A5AA0058237F13BE009CD413 /* Monitor.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = Monitor.nasm; sourceTree = ""; }; - A5AA0059237F13BE009CD413 /* ReadDr4.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = ReadDr4.nasm; sourceTree = ""; }; - A5AA005A237F13BE009CD413 /* ReadMm6.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = ReadMm6.nasm; sourceTree = ""; }; - A5AA005B237F13BE009CD413 /* ReadMsr64.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = ReadMsr64.nasm; sourceTree = ""; }; - A5AA005C237F13BE009CD413 /* ReadMm7.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = ReadMm7.nasm; sourceTree = ""; }; - A5AA005D237F13BE009CD413 /* ReadDr5.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = ReadDr5.nasm; sourceTree = ""; }; - A5AA005E237F13BE009CD413 /* ReadSs.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = ReadSs.nasm; sourceTree = ""; }; - A5AA005F237F13BE009CD413 /* WriteMm7.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = WriteMm7.nasm; sourceTree = ""; }; - A5AA0060237F13BE009CD413 /* CpuId.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = CpuId.nasm; sourceTree = ""; }; - A5AA0061237F13BE009CD413 /* WriteDr5.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = WriteDr5.nasm; sourceTree = ""; }; - A5AA0062237F13BE009CD413 /* ReadPmc.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = ReadPmc.nasm; sourceTree = ""; }; - A5AA0063237F13BE009CD413 /* ReadTsc.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = ReadTsc.nasm; sourceTree = ""; }; - A5AA0064237F13BE009CD413 /* X86Msr.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = X86Msr.c; sourceTree = ""; }; - A5AA0065237F13BE009CD413 /* DivU64x64Remainder.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = DivU64x64Remainder.c; sourceTree = ""; }; - A5AA0066237F13BE009CD413 /* X86Thunk.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = X86Thunk.c; sourceTree = ""; }; - A5AA0067237F13BE009CD413 /* CpuDeadLoop.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = CpuDeadLoop.c; sourceTree = ""; }; - A5AA0068237F13BE009CD413 /* LowBitSet64.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = LowBitSet64.c; sourceTree = ""; }; - A5AA0069237F13BE009CD413 /* LRotU64.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = LRotU64.c; sourceTree = ""; }; - A5AA006A237F13BE009CD413 /* X86PatchInstruction.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = X86PatchInstruction.c; sourceTree = ""; }; - A5AA006B237F13BE009CD413 /* X86FxSave.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = X86FxSave.c; sourceTree = ""; }; - A5AA006C237F13BE009CD413 /* X86GetInterruptState.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = X86GetInterruptState.c; sourceTree = ""; }; - A5AA006D237F13BE009CD413 /* CheckSum.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = CheckSum.c; sourceTree = ""; }; - A5AA006E237F13BE009CD413 /* MultU64x32.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = MultU64x32.c; sourceTree = ""; }; - A5AA006F237F13BE009CD413 /* String.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = String.c; sourceTree = ""; }; - A5AA0070237F13BE009CD413 /* X86DisablePaging32.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = X86DisablePaging32.c; sourceTree = ""; }; - A5AA0071237F13BE009CD413 /* BitField.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = BitField.c; sourceTree = ""; }; - A5AA0072237F13BE009CD413 /* X86EnablePaging64.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = X86EnablePaging64.c; sourceTree = ""; }; - A5AA0073237F13BE009CD413 /* HighBitSet64.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = HighBitSet64.c; sourceTree = ""; }; - A5AA0074237F13BE009CD413 /* LShiftU64.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = LShiftU64.c; sourceTree = ""; }; - A5AA0075237F13BE009CD413 /* SafeString.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SafeString.c; sourceTree = ""; }; - A5AA0076237F13BE009CD413 /* MultS64x64.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = MultS64x64.c; sourceTree = ""; }; - A5AA0077237F13BE009CD413 /* Unaligned.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = Unaligned.c; sourceTree = ""; }; - A5AA0079237F13BE009CD413 /* EnablePaging32.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = EnablePaging32.c; sourceTree = ""; }; - A5AA007A237F13BE009CD413 /* WriteMm4.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = WriteMm4.nasm; sourceTree = ""; }; - A5AA007B237F13BE009CD413 /* WriteDr3.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = WriteDr3.c; sourceTree = ""; }; - A5AA007C237F13BE009CD413 /* ReadGdtr.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ReadGdtr.c; sourceTree = ""; }; - A5AA007D237F13BE009CD413 /* WriteDr6.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = WriteDr6.nasm; sourceTree = ""; }; - A5AA007E237F13BE009CD413 /* WriteTr.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = WriteTr.nasm; sourceTree = ""; }; - A5AA007F237F13BE009CD413 /* WriteCr4.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = WriteCr4.nasm; sourceTree = ""; }; - A5AA0080237F13BE009CD413 /* ReadDr2.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ReadDr2.c; sourceTree = ""; }; - A5AA0081237F13BE009CD413 /* Mwait.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = Mwait.nasm; sourceTree = ""; }; - A5AA0082237F13BE009CD413 /* ReadFs.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = ReadFs.nasm; sourceTree = ""; }; - A5AA0083237F13BE009CD413 /* ReadDs.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = ReadDs.nasm; sourceTree = ""; }; - A5AA0084237F13BE009CD413 /* FxRestore.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = FxRestore.nasm; sourceTree = ""; }; - A5AA0085237F13BE009CD413 /* ReadSs.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ReadSs.c; sourceTree = ""; }; - A5AA0086237F13BE009CD413 /* ReadMm4.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = ReadMm4.nasm; sourceTree = ""; }; - A5AA0087237F13BE009CD413 /* DivS64x64Remainder.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = DivS64x64Remainder.c; sourceTree = ""; }; - A5AA0088237F13BE009CD413 /* Monitor.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = Monitor.c; sourceTree = ""; }; - A5AA0089237F13BE009CD413 /* ReadDr6.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = ReadDr6.nasm; sourceTree = ""; }; - A5AA008A237F13BE009CD413 /* WriteGdtr.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = WriteGdtr.c; sourceTree = ""; }; - A5AA008B237F13BE009CD413 /* CpuPause.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = CpuPause.nasm; sourceTree = ""; }; - A5AA008C237F13BE009CD413 /* ReadDr6.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ReadDr6.c; sourceTree = ""; }; - A5AA008D237F13BE009CD413 /* ReadPmc.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ReadPmc.c; sourceTree = ""; }; - A5AA008E237F13BE009CD413 /* Wbinvd.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = Wbinvd.c; sourceTree = ""; }; - A5AA008F237F13BE009CD413 /* DisablePaging32.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = DisablePaging32.c; sourceTree = ""; }; - A5AA0090237F13BE009CD413 /* RShiftU64.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = RShiftU64.nasm; sourceTree = ""; }; - A5AA0091237F13BE009CD413 /* ReadCr4.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = ReadCr4.nasm; sourceTree = ""; }; - A5AA0092237F13BE009CD413 /* Invd.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = Invd.c; sourceTree = ""; }; - A5AA0093237F13BE009CD413 /* WriteDr7.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = WriteDr7.c; sourceTree = ""; }; - A5AA0094237F13BE009CD413 /* WriteMm7.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = WriteMm7.c; sourceTree = ""; }; - A5AA0095237F13BE009CD413 /* RRotU64.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = RRotU64.c; sourceTree = ""; }; - A5AA0096237F13BE009CD413 /* ReadCr2.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ReadCr2.c; sourceTree = ""; }; - A5AA0097237F13BE009CD413 /* LShiftU64.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = LShiftU64.nasm; sourceTree = ""; }; - A5AA0098237F13BE009CD413 /* ReadTr.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ReadTr.c; sourceTree = ""; }; - A5AA0099237F13BE009CD413 /* ReadMm6.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ReadMm6.c; sourceTree = ""; }; - A5AA009A237F13BE009CD413 /* WriteLdtr.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = WriteLdtr.nasm; sourceTree = ""; }; - A5AA009B237F13BE009CD413 /* ReadDr7.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = ReadDr7.nasm; sourceTree = ""; }; - A5AA009C237F13BE009CD413 /* ReadMm5.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = ReadMm5.nasm; sourceTree = ""; }; - A5AA009D237F13BE009CD413 /* WriteCr3.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = WriteCr3.c; sourceTree = ""; }; - A5AA009E237F13BE009CD413 /* WriteMsr64.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = WriteMsr64.nasm; sourceTree = ""; }; - A5AA009F237F13BE009CD413 /* CpuPause.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = CpuPause.c; sourceTree = ""; }; - A5AA00A0237F13BE009CD413 /* ReadMm2.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ReadMm2.c; sourceTree = ""; }; - A5AA00A1237F13BE009CD413 /* ReadIdtr.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = ReadIdtr.nasm; sourceTree = ""; }; - A5AA00A2237F13BE009CD413 /* WriteDr7.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = WriteDr7.nasm; sourceTree = ""; }; - A5AA00A3237F13BE009CD413 /* CpuIdEx.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = CpuIdEx.c; sourceTree = ""; }; - A5AA00A4237F13BE009CD413 /* WriteMm3.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = WriteMm3.c; sourceTree = ""; }; - A5AA00A5237F13BE009CD413 /* WriteMm5.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = WriteMm5.nasm; sourceTree = ""; }; - A5AA00A6237F13BE009CD413 /* ReadDr1.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ReadDr1.c; sourceTree = ""; }; - A5AA00A7237F13BE009CD413 /* ReadMm2.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = ReadMm2.nasm; sourceTree = ""; }; - A5AA00A8237F13BE009CD413 /* ReadDr0.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = ReadDr0.nasm; sourceTree = ""; }; - A5AA00A9237F13BE009CD413 /* ReadEs.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = ReadEs.nasm; sourceTree = ""; }; - A5AA00AA237F13BE009CD413 /* ReadEs.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ReadEs.c; sourceTree = ""; }; - A5AA00AB237F13BE009CD413 /* FlushCacheLine.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = FlushCacheLine.c; sourceTree = ""; }; - A5AA00AC237F13BE009CD413 /* ReadCr2.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = ReadCr2.nasm; sourceTree = ""; }; - A5AA00AD237F13BE009CD413 /* WriteDr0.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = WriteDr0.c; sourceTree = ""; }; - A5AA00AE237F13BE009CD413 /* DisableInterrupts.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = DisableInterrupts.c; sourceTree = ""; }; - A5AA00AF237F13BE009CD413 /* EnableCache.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = EnableCache.nasm; sourceTree = ""; }; - A5AA00B0237F13BE009CD413 /* CpuIdEx.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = CpuIdEx.nasm; sourceTree = ""; }; - A5AA00B1237F13BE009CD413 /* SetJump.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = SetJump.nasm; sourceTree = ""; }; - A5AA00B2237F13BE009CD413 /* WriteMm2.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = WriteMm2.nasm; sourceTree = ""; }; - A5AA00B3237F13BE009CD413 /* EnableInterrupts.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = EnableInterrupts.nasm; sourceTree = ""; }; - A5AA00B4237F13BE009CD413 /* RdRand.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = RdRand.nasm; sourceTree = ""; }; - A5AA00B5237F13BE009CD413 /* WriteDr0.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = WriteDr0.nasm; sourceTree = ""; }; - A5AA00B6237F13BE009CD413 /* DisableCache.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = DisableCache.nasm; sourceTree = ""; }; - A5AA00B7237F13BE009CD413 /* LRotU64.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = LRotU64.c; sourceTree = ""; }; - A5AA00B8237F13BE009CD413 /* WriteDr4.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = WriteDr4.c; sourceTree = ""; }; - A5AA00B9237F13BE009CD413 /* WriteCr2.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = WriteCr2.nasm; sourceTree = ""; }; - A5AA00BA237F13BE009CD413 /* ReadGs.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = ReadGs.nasm; sourceTree = ""; }; - A5AA00BB237F13BE009CD413 /* WriteGdtr.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = WriteGdtr.nasm; sourceTree = ""; }; - A5AA00BC237F13BE009CD413 /* ReadDr5.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ReadDr5.c; sourceTree = ""; }; - A5AA00BD237F13BE009CD413 /* EnableCache.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = EnableCache.c; sourceTree = ""; }; - A5AA00BE237F13BE009CD413 /* ReadMm5.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ReadMm5.c; sourceTree = ""; }; - A5AA00BF237F13BE009CD413 /* ReadCs.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = ReadCs.nasm; sourceTree = ""; }; - A5AA00C0237F13BE009CD413 /* EnableInterrupts.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = EnableInterrupts.c; sourceTree = ""; }; - A5AA00C1237F13BE009CD413 /* WriteCr0.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = WriteCr0.c; sourceTree = ""; }; - A5AA00C2237F13BE009CD413 /* EnableDisableInterrupts.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = EnableDisableInterrupts.nasm; sourceTree = ""; }; - A5AA00C3237F13BE009CD413 /* MultU64x32.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = MultU64x32.c; sourceTree = ""; }; - A5AA00C4237F13BE009CD413 /* WriteCr3.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = WriteCr3.nasm; sourceTree = ""; }; - A5AA00C5237F13BE009CD413 /* DivU64x64Remainder.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = DivU64x64Remainder.nasm; sourceTree = ""; }; - A5AA00C6237F13BE009CD413 /* WriteMm4.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = WriteMm4.c; sourceTree = ""; }; - A5AA00C7237F13BE009CD413 /* WriteDr1.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = WriteDr1.nasm; sourceTree = ""; }; - A5AA00C8237F13BE009CD413 /* WriteLdtr.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = WriteLdtr.c; sourceTree = ""; }; - A5AA00C9237F13BE009CD413 /* ReadMsr64.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ReadMsr64.c; sourceTree = ""; }; - A5AA00CA237F13BE009CD413 /* WriteMm3.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = WriteMm3.nasm; sourceTree = ""; }; - A5AA00CB237F13BE009CD413 /* Thunk16.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = Thunk16.nasm; sourceTree = ""; }; - A5AA00CC237F13BE009CD413 /* ReadCr3.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = ReadCr3.nasm; sourceTree = ""; }; - A5AA00CD237F13BE009CD413 /* WriteMm0.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = WriteMm0.c; sourceTree = ""; }; - A5AA00CE237F13BE009CD413 /* ReadDs.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ReadDs.c; sourceTree = ""; }; - A5AA00CF237F13BE009CD413 /* FxSave.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = FxSave.c; sourceTree = ""; }; - A5AA00D0237F13BE009CD413 /* WriteCr4.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = WriteCr4.c; sourceTree = ""; }; - A5AA00D1237F13BE009CD413 /* ReadDr1.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = ReadDr1.nasm; sourceTree = ""; }; - A5AA00D2237F13BE009CD413 /* ReadMm1.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ReadMm1.c; sourceTree = ""; }; - A5AA00D3237F13BE009CD413 /* ReadMm3.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = ReadMm3.nasm; sourceTree = ""; }; - A5AA00D4237F13BE009CD413 /* ReadLdtr.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ReadLdtr.c; sourceTree = ""; }; - A5AA00D5237F13BE009CD413 /* ARShiftU64.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = ARShiftU64.nasm; sourceTree = ""; }; - A5AA00D6237F13BE009CD413 /* LShiftU64.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = LShiftU64.c; sourceTree = ""; }; - A5AA00D7237F13BE009CD413 /* ReadCr0.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = ReadCr0.nasm; sourceTree = ""; }; - A5AA00D8237F13BE009CD413 /* ReadDr0.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ReadDr0.c; sourceTree = ""; }; - A5AA00D9237F13BE009CD413 /* DisableInterrupts.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = DisableInterrupts.nasm; sourceTree = ""; }; - A5AA00DA237F13BE009CD413 /* SwapBytes64.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = SwapBytes64.nasm; sourceTree = ""; }; - A5AA00DB237F13BE009CD413 /* ReadCs.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ReadCs.c; sourceTree = ""; }; - A5AA00DC237F13BE009CD413 /* ReadDr2.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = ReadDr2.nasm; sourceTree = ""; }; - A5AA00DD237F13BE009CD413 /* Lfence.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = Lfence.nasm; sourceTree = ""; }; - A5AA00DE237F13BE009CD413 /* ReadMm0.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = ReadMm0.nasm; sourceTree = ""; }; - A5AA00DF237F13BE009CD413 /* WriteDr1.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = WriteDr1.c; sourceTree = ""; }; - A5AA00E0237F13BE009CD413 /* MultU64x64.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = MultU64x64.nasm; sourceTree = ""; }; - A5AA00E1237F13BE009CD413 /* WriteDr5.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = WriteDr5.c; sourceTree = ""; }; - A5AA00E2237F13BE009CD413 /* LRotU64.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = LRotU64.nasm; sourceTree = ""; }; - A5AA00E3237F13BE009CD413 /* Mwait.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = Mwait.c; sourceTree = ""; }; - A5AA00E4237F13BE009CD413 /* WriteCr0.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = WriteCr0.nasm; sourceTree = ""; }; - A5AA00E5237F13BE009CD413 /* RRotU64.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = RRotU64.nasm; sourceTree = ""; }; - A5AA00E6237F13BE009CD413 /* ReadDr4.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ReadDr4.c; sourceTree = ""; }; - A5AA00E7237F13BE009CD413 /* ReadGs.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ReadGs.c; sourceTree = ""; }; - A5AA00E8237F13BE009CD413 /* WriteDr2.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = WriteDr2.nasm; sourceTree = ""; }; - A5AA00E9237F13BE009CD413 /* WriteMm0.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = WriteMm0.nasm; sourceTree = ""; }; - A5AA00EA237F13BE009CD413 /* GccInline.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = GccInline.c; sourceTree = ""; }; - A5AA00EB237F13BE009CD413 /* CpuBreakpoint.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = CpuBreakpoint.c; sourceTree = ""; }; - A5AA00EC237F13BE009CD413 /* WriteMm1.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = WriteMm1.nasm; sourceTree = ""; }; - A5AA00ED237F13BE009CD413 /* ReadTr.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = ReadTr.nasm; sourceTree = ""; }; - A5AA00EE237F13BE009CD413 /* InternalSwitchStack.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = InternalSwitchStack.c; sourceTree = ""; }; - A5AA00EF237F13BE009CD413 /* DivU64x32.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = DivU64x32.c; sourceTree = ""; }; - A5AA00F0237F13BE009CD413 /* ReadMm4.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ReadMm4.c; sourceTree = ""; }; - A5AA00F1237F13BE009CD413 /* DivU64x32Remainder.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = DivU64x32Remainder.c; sourceTree = ""; }; - A5AA00F2237F13BE009CD413 /* WriteDr3.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = WriteDr3.nasm; sourceTree = ""; }; - A5AA00F3237F13BE009CD413 /* ReadFs.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ReadFs.c; sourceTree = ""; }; - A5AA00F4237F13BE009CD413 /* ReadCr0.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ReadCr0.c; sourceTree = ""; }; - A5AA00F5237F13BE009CD413 /* CpuId.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = CpuId.c; sourceTree = ""; }; - A5AA00F6237F13BE009CD413 /* MultU64x32.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = MultU64x32.nasm; sourceTree = ""; }; - A5AA00F7237F13BE009CD413 /* WriteMm5.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = WriteMm5.c; sourceTree = ""; }; - A5AA00F8237F13BE009CD413 /* DisablePaging32.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = DisablePaging32.nasm; sourceTree = ""; }; - A5AA00F9237F13BE009CD413 /* SwapBytes64.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SwapBytes64.c; sourceTree = ""; }; - A5AA00FA237F13BE009CD413 /* RShiftU64.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = RShiftU64.c; sourceTree = ""; }; - A5AA00FB237F13BE009CD413 /* ReadMm1.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = ReadMm1.nasm; sourceTree = ""; }; - A5AA00FC237F13BE009CD413 /* WriteMm1.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = WriteMm1.c; sourceTree = ""; }; - A5AA00FD237F13BE009CD413 /* ReadDr3.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = ReadDr3.nasm; sourceTree = ""; }; - A5AA00FE237F13BE009CD413 /* ReadCr4.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ReadCr4.c; sourceTree = ""; }; - A5AA00FF237F13BE009CD413 /* DivU64x32.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = DivU64x32.nasm; sourceTree = ""; }; - A5AA0100237F13BE009CD413 /* CpuBreakpoint.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = CpuBreakpoint.nasm; sourceTree = ""; }; - A5AA0101237F13BE009CD413 /* Invd.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = Invd.nasm; sourceTree = ""; }; - A5AA0102237F13BE009CD413 /* ReadMm0.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ReadMm0.c; sourceTree = ""; }; - A5AA0103237F13BE009CD413 /* LongJump.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = LongJump.nasm; sourceTree = ""; }; - A5AA0104237F13BE009CD413 /* DisableCache.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = DisableCache.c; sourceTree = ""; }; - A5AA0105237F13BE009CD413 /* ReadGdtr.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = ReadGdtr.nasm; sourceTree = ""; }; - A5AA0106237F13BE009CD413 /* Wbinvd.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = Wbinvd.nasm; sourceTree = ""; }; - A5AA0107237F13BE009CD413 /* ReadEflags.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = ReadEflags.nasm; sourceTree = ""; }; - A5AA0108237F13BE009CD413 /* FxRestore.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = FxRestore.c; sourceTree = ""; }; - A5AA0109237F13BE009CD413 /* WriteMsr64.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = WriteMsr64.c; sourceTree = ""; }; - A5AA010A237F13BE009CD413 /* Non-existing.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = "Non-existing.c"; sourceTree = ""; }; - A5AA010B237F13BE009CD413 /* WriteDr2.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = WriteDr2.c; sourceTree = ""; }; - A5AA010C237F13BE009CD413 /* EnablePaging64.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = EnablePaging64.nasm; sourceTree = ""; }; - A5AA010D237F13BE009CD413 /* WriteDr4.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = WriteDr4.nasm; sourceTree = ""; }; - A5AA010E237F13BE009CD413 /* FlushCacheLine.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = FlushCacheLine.nasm; sourceTree = ""; }; - A5AA010F237F13BE009CD413 /* WriteIdtr.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = WriteIdtr.c; sourceTree = ""; }; - A5AA0110237F13BE009CD413 /* ReadDr3.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ReadDr3.c; sourceTree = ""; }; - A5AA0111237F13BE009CD413 /* WriteMm6.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = WriteMm6.nasm; sourceTree = ""; }; - A5AA0112237F13BE009CD413 /* ReadLdtr.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = ReadLdtr.nasm; sourceTree = ""; }; - A5AA0113237F13BE009CD413 /* ReadDr7.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ReadDr7.c; sourceTree = ""; }; - A5AA0114237F13BE009CD413 /* ReadEflags.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ReadEflags.c; sourceTree = ""; }; - A5AA0115237F13BE009CD413 /* WriteIdtr.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = WriteIdtr.nasm; sourceTree = ""; }; - A5AA0116237F13BE009CD413 /* MultU64x64.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = MultU64x64.c; sourceTree = ""; }; - A5AA0117237F13BE009CD413 /* DivU64x32Remainder.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = DivU64x32Remainder.nasm; sourceTree = ""; }; - A5AA0118237F13BE009CD413 /* FxSave.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = FxSave.nasm; sourceTree = ""; }; - A5AA0119237F13BE009CD413 /* Monitor.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = Monitor.nasm; sourceTree = ""; }; - A5AA011A237F13BE009CD413 /* WriteDr6.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = WriteDr6.c; sourceTree = ""; }; - A5AA011B237F13BE009CD413 /* ReadDr4.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = ReadDr4.nasm; sourceTree = ""; }; - A5AA011C237F13BE009CD413 /* ReadMm6.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = ReadMm6.nasm; sourceTree = ""; }; - A5AA011D237F13BE009CD413 /* ReadMsr64.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = ReadMsr64.nasm; sourceTree = ""; }; - A5AA011E237F13BE009CD413 /* ReadIdtr.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ReadIdtr.c; sourceTree = ""; }; - A5AA011F237F13BE009CD413 /* ARShiftU64.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ARShiftU64.c; sourceTree = ""; }; - A5AA0120237F13BE009CD413 /* ReadCr3.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ReadCr3.c; sourceTree = ""; }; - A5AA0121237F13BE009CD413 /* ReadMm7.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = ReadMm7.nasm; sourceTree = ""; }; - A5AA0122237F13BE009CD413 /* ReadDr5.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = ReadDr5.nasm; sourceTree = ""; }; - A5AA0123237F13BE009CD413 /* WriteMm6.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = WriteMm6.c; sourceTree = ""; }; - A5AA0124237F13BE009CD413 /* ReadTsc.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ReadTsc.c; sourceTree = ""; }; - A5AA0125237F13BE009CD413 /* WriteCr2.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = WriteCr2.c; sourceTree = ""; }; - A5AA0126237F13BE009CD413 /* ModU64x32.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ModU64x32.c; sourceTree = ""; }; - A5AA0127237F13BE009CD413 /* ReadSs.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = ReadSs.nasm; sourceTree = ""; }; - A5AA0128237F13BE009CD413 /* ReadMm7.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ReadMm7.c; sourceTree = ""; }; - A5AA0129237F13BE009CD413 /* EnableDisableInterrupts.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = EnableDisableInterrupts.c; sourceTree = ""; }; - A5AA012A237F13BE009CD413 /* WriteMm7.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = WriteMm7.nasm; sourceTree = ""; }; - A5AA012B237F13BE009CD413 /* ReadMm3.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ReadMm3.c; sourceTree = ""; }; - A5AA012C237F13BE009CD413 /* CpuId.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = CpuId.nasm; sourceTree = ""; }; - A5AA012D237F13BE009CD413 /* InternalSwitchStack.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = InternalSwitchStack.nasm; sourceTree = ""; }; - A5AA012E237F13BE009CD413 /* WriteDr5.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = WriteDr5.nasm; sourceTree = ""; }; - A5AA012F237F13BE009CD413 /* ReadPmc.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = ReadPmc.nasm; sourceTree = ""; }; - A5AA0130237F13BE009CD413 /* WriteMm2.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = WriteMm2.c; sourceTree = ""; }; - A5AA0131237F13BE009CD413 /* ModU64x32.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = ModU64x32.nasm; sourceTree = ""; }; - A5AA0132237F13BE009CD413 /* ReadTsc.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = ReadTsc.nasm; sourceTree = ""; }; - A5AA0133237F13BE009CD413 /* EnablePaging32.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = EnablePaging32.nasm; sourceTree = ""; }; - A5AA0134237F13BE009CD413 /* GetPowerOfTwo32.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = GetPowerOfTwo32.c; sourceTree = ""; }; - A5AA0135237F13BE009CD413 /* Math64.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = Math64.c; sourceTree = ""; }; - A5AA0136237F13BE009CD413 /* RRotU32.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = RRotU32.c; sourceTree = ""; }; - A5AA0137237F13BE009CD413 /* DivU64x32.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = DivU64x32.c; sourceTree = ""; }; - A5AA0138237F13BE009CD413 /* DivU64x32Remainder.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = DivU64x32Remainder.c; sourceTree = ""; }; - A5AA0139237F13BE009CD413 /* X86MemoryFence.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = X86MemoryFence.c; sourceTree = ""; }; - A5AA013A237F13BE009CD413 /* SwapBytes64.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SwapBytes64.c; sourceTree = ""; }; - A5AA013B237F13BE009CD413 /* RShiftU64.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = RShiftU64.c; sourceTree = ""; }; - A5AA013C237F13BE009CD413 /* SwitchStack.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SwitchStack.c; sourceTree = ""; }; - A5AA013D237F13BE009CD413 /* ChkStkGcc.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ChkStkGcc.c; sourceTree = ""; }; - A5AA013E237F13BE009CD413 /* SetJump.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SetJump.c; sourceTree = ""; }; - A5AA013F237F13BE009CD413 /* X86EnablePaging32.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = X86EnablePaging32.c; sourceTree = ""; }; - A5AA0140237F13BE009CD413 /* X86WriteGdtr.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = X86WriteGdtr.c; sourceTree = ""; }; - A5AA0141237F13BE009CD413 /* SwapBytes16.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SwapBytes16.c; sourceTree = ""; }; - A5AA0142237F13BF009CD413 /* HighBitSet32.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = HighBitSet32.c; sourceTree = ""; }; - A5AA0143237F13BF009CD413 /* X86RdRand.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = X86RdRand.c; sourceTree = ""; }; - A5AA0145237F13BF009CD413 /* Math64.S */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.asm; path = Math64.S; sourceTree = ""; }; - A5AA0146237F13BF009CD413 /* CpuPause.asm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm.asm; path = CpuPause.asm; sourceTree = ""; }; - A5AA0147237F13BF009CD413 /* EnableInterrupts.asm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm.asm; path = EnableInterrupts.asm; sourceTree = ""; }; - A5AA0148237F13BF009CD413 /* SwitchStack.S */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.asm; path = SwitchStack.S; sourceTree = ""; }; - A5AA0149237F13BF009CD413 /* CpuBreakpoint.S */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.asm; path = CpuBreakpoint.S; sourceTree = ""; }; - A5AA014A237F13BF009CD413 /* SetJumpLongJump.asm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm.asm; path = SetJumpLongJump.asm; sourceTree = ""; }; - A5AA014B237F13BF009CD413 /* CpuBreakpoint.asm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm.asm; path = CpuBreakpoint.asm; sourceTree = ""; }; - A5AA014C237F13BF009CD413 /* GetInterruptsState.S */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.asm; path = GetInterruptsState.S; sourceTree = ""; }; - A5AA014D237F13BF009CD413 /* MemoryFence.asm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm.asm; path = MemoryFence.asm; sourceTree = ""; }; - A5AA014E237F13BF009CD413 /* SpeculationBarrier.S */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.asm; path = SpeculationBarrier.S; sourceTree = ""; }; - A5AA014F237F13BF009CD413 /* DisableInterrupts.asm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm.asm; path = DisableInterrupts.asm; sourceTree = ""; }; - A5AA0150237F13BF009CD413 /* SetJumpLongJump.S */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.asm; path = SetJumpLongJump.S; sourceTree = ""; }; - A5AA0151237F13BF009CD413 /* GetInterruptsState.asm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm.asm; path = GetInterruptsState.asm; sourceTree = ""; }; - A5AA0152237F13BF009CD413 /* Unaligned.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = Unaligned.c; sourceTree = ""; }; - A5AA0153237F13BF009CD413 /* InternalSwitchStack.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = InternalSwitchStack.c; sourceTree = ""; }; - A5AA0154237F13BF009CD413 /* SpeculationBarrier.asm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm.asm; path = SpeculationBarrier.asm; sourceTree = ""; }; - A5AA0155237F13BF009CD413 /* MemoryFence.S */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.asm; path = MemoryFence.S; sourceTree = ""; }; - A5AA0156237F13BF009CD413 /* DisableInterrupts.S */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.asm; path = DisableInterrupts.S; sourceTree = ""; }; - A5AA0157237F13BF009CD413 /* SwitchStack.asm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm.asm; path = SwitchStack.asm; sourceTree = ""; }; - A5AA0158237F13BF009CD413 /* EnableInterrupts.S */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.asm; path = EnableInterrupts.S; sourceTree = ""; }; - A5AA0159237F13BF009CD413 /* MultU64x64.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = MultU64x64.c; sourceTree = ""; }; - A5AA015A237F13BF009CD413 /* X86DisablePaging64.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = X86DisablePaging64.c; sourceTree = ""; }; - A5AA015B237F13BF009CD413 /* X86ReadGdtr.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = X86ReadGdtr.c; sourceTree = ""; }; - A5AA015C237F13BF009CD413 /* ARShiftU64.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ARShiftU64.c; sourceTree = ""; }; - A5AA015E237F13BF009CD413 /* EnableInterrupts.asm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm.asm; path = EnableInterrupts.asm; sourceTree = ""; }; - A5AA015F237F13BF009CD413 /* SwitchStack.S */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.asm; path = SwitchStack.S; sourceTree = ""; }; - A5AA0160237F13BF009CD413 /* CpuBreakpoint.S */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.asm; path = CpuBreakpoint.S; sourceTree = ""; }; - A5AA0161237F13BF009CD413 /* SetJumpLongJump.asm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm.asm; path = SetJumpLongJump.asm; sourceTree = ""; }; - A5AA0162237F13BF009CD413 /* CpuBreakpoint.asm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm.asm; path = CpuBreakpoint.asm; sourceTree = ""; }; - A5AA0163237F13BF009CD413 /* GetInterruptsState.S */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.asm; path = GetInterruptsState.S; sourceTree = ""; }; - A5AA0164237F13BF009CD413 /* MemoryFence.asm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm.asm; path = MemoryFence.asm; sourceTree = ""; }; - A5AA0165237F13BF009CD413 /* SpeculationBarrier.S */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.asm; path = SpeculationBarrier.S; sourceTree = ""; }; - A5AA0166237F13BF009CD413 /* DisableInterrupts.asm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm.asm; path = DisableInterrupts.asm; sourceTree = ""; }; - A5AA0167237F13BF009CD413 /* SetJumpLongJump.S */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.asm; path = SetJumpLongJump.S; sourceTree = ""; }; - A5AA0168237F13BF009CD413 /* GetInterruptsState.asm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm.asm; path = GetInterruptsState.asm; sourceTree = ""; }; - A5AA0169237F13BF009CD413 /* SpeculationBarrier.asm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm.asm; path = SpeculationBarrier.asm; sourceTree = ""; }; - A5AA016A237F13BF009CD413 /* MemoryFence.S */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.asm; path = MemoryFence.S; sourceTree = ""; }; - A5AA016B237F13BF009CD413 /* DisableInterrupts.S */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.asm; path = DisableInterrupts.S; sourceTree = ""; }; - A5AA016C237F13BF009CD413 /* SwitchStack.asm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm.asm; path = SwitchStack.asm; sourceTree = ""; }; - A5AA016D237F13BF009CD413 /* EnableInterrupts.S */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.asm; path = EnableInterrupts.S; sourceTree = ""; }; - A5AA016E237F13BF009CD413 /* LowBitSet32.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = LowBitSet32.c; sourceTree = ""; }; - A5AA016F237F13BF009CD413 /* LRotU32.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = LRotU32.c; sourceTree = ""; }; - A5AA0170237F13BF009CD413 /* ModU64x32.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ModU64x32.c; sourceTree = ""; }; - A5AA0171237F13BF009CD413 /* LinkedList.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = LinkedList.c; sourceTree = ""; }; - A5AA0172237F13BF009CD413 /* X86SpeculationBarrier.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = X86SpeculationBarrier.c; sourceTree = ""; }; - A5AA0174237F13BF009CD413 /* SetMem64Wrapper.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SetMem64Wrapper.c; sourceTree = ""; }; - A5AA0175237F13BF009CD413 /* ZeroMemWrapper.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ZeroMemWrapper.c; sourceTree = ""; }; - A5AA0176237F13BF009CD413 /* CopyMemWrapper.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = CopyMemWrapper.c; sourceTree = ""; }; - A5AA0177237F13BF009CD413 /* ScanMem64Wrapper.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ScanMem64Wrapper.c; sourceTree = ""; }; - A5AA0179237F13BF009CD413 /* ZeroMem.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = ZeroMem.nasm; sourceTree = ""; }; - A5AA017A237F13BF009CD413 /* CompareMem.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = CompareMem.nasm; sourceTree = ""; }; - A5AA017B237F13BF009CD413 /* SetMem16.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = SetMem16.nasm; sourceTree = ""; }; - A5AA017C237F13BF009CD413 /* ScanMem64.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = ScanMem64.nasm; sourceTree = ""; }; - A5AA017D237F13BF009CD413 /* ScanMem32.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = ScanMem32.nasm; sourceTree = ""; }; - A5AA017E237F13BF009CD413 /* SetMem.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = SetMem.nasm; sourceTree = ""; }; - A5AA017F237F13BF009CD413 /* IsZeroBuffer.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = IsZeroBuffer.nasm; sourceTree = ""; }; - A5AA0180237F13BF009CD413 /* SetMem64.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = SetMem64.nasm; sourceTree = ""; }; - A5AA0181237F13BF009CD413 /* ScanMem8.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = ScanMem8.nasm; sourceTree = ""; }; - A5AA0182237F13BF009CD413 /* SetMem32.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = SetMem32.nasm; sourceTree = ""; }; - A5AA0183237F13BF009CD413 /* ScanMem16.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = ScanMem16.nasm; sourceTree = ""; }; - A5AA0184237F13BF009CD413 /* CopyMem.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = CopyMem.nasm; sourceTree = ""; }; - A5AA0185237F13BF009CD413 /* ScanMem8Wrapper.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ScanMem8Wrapper.c; sourceTree = ""; }; - A5AA0186237F13BF009CD413 /* SetMem32Wrapper.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SetMem32Wrapper.c; sourceTree = ""; }; - A5AA0188237F13BF009CD413 /* ZeroMem.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = ZeroMem.nasm; sourceTree = ""; }; - A5AA0189237F13BF009CD413 /* CompareMem.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = CompareMem.nasm; sourceTree = ""; }; - A5AA018A237F13BF009CD413 /* SetMem16.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = SetMem16.nasm; sourceTree = ""; }; - A5AA018B237F13BF009CD413 /* ScanMem64.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = ScanMem64.nasm; sourceTree = ""; }; - A5AA018C237F13BF009CD413 /* ScanMem32.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = ScanMem32.nasm; sourceTree = ""; }; - A5AA018D237F13BF009CD413 /* SetMem.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = SetMem.nasm; sourceTree = ""; }; - A5AA018E237F13BF009CD413 /* IsZeroBuffer.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = IsZeroBuffer.nasm; sourceTree = ""; }; - A5AA018F237F13BF009CD413 /* SetMem64.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = SetMem64.nasm; sourceTree = ""; }; - A5AA0190237F13BF009CD413 /* ScanMem8.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = ScanMem8.nasm; sourceTree = ""; }; - A5AA0191237F13BF009CD413 /* SetMem32.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = SetMem32.nasm; sourceTree = ""; }; - A5AA0192237F13BF009CD413 /* ScanMem16.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = ScanMem16.nasm; sourceTree = ""; }; - A5AA0193237F13BF009CD413 /* CopyMem.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = CopyMem.nasm; sourceTree = ""; }; - A5AA0194237F13BF009CD413 /* ScanMem32Wrapper.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ScanMem32Wrapper.c; sourceTree = ""; }; - A5AA0195237F13BF009CD413 /* IsZeroBufferWrapper.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = IsZeroBufferWrapper.c; sourceTree = ""; }; - A5AA0196237F13BF009CD413 /* SetMemWrapper.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SetMemWrapper.c; sourceTree = ""; }; - A5AA0197237F13BF009CD413 /* CompareMemWrapper.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = CompareMemWrapper.c; sourceTree = ""; }; - A5AA0198237F13BF009CD413 /* SetMem16Wrapper.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SetMem16Wrapper.c; sourceTree = ""; }; - A5AA0199237F13BF009CD413 /* BaseMemoryLibRepStr.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = BaseMemoryLibRepStr.uni; sourceTree = ""; }; - A5AA019A237F13BF009CD413 /* MemLibGuid.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = MemLibGuid.c; sourceTree = ""; }; - A5AA019B237F13BF009CD413 /* MemLibInternals.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MemLibInternals.h; sourceTree = ""; }; - A5AA019C237F13BF009CD413 /* ScanMem16Wrapper.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ScanMem16Wrapper.c; sourceTree = ""; }; - A5AA019D237F13BF009CD413 /* BaseMemoryLibRepStr.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = BaseMemoryLibRepStr.inf; sourceTree = ""; }; - A5AA019F237F13BF009CD413 /* BaseSynchronizationLib.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = BaseSynchronizationLib.uni; sourceTree = ""; }; - A5AA01A1237F13BF009CD413 /* Synchronization.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = Synchronization.c; sourceTree = ""; }; - A5AA01A2237F13BF009CD413 /* BaseSynchronizationLib.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = BaseSynchronizationLib.inf; sourceTree = ""; }; - A5AA01A4237F13BF009CD413 /* InterlockedCompareExchange64.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = InterlockedCompareExchange64.c; sourceTree = ""; }; - A5AA01A5237F13BF009CD413 /* InterlockedIncrement.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = InterlockedIncrement.nasm; sourceTree = ""; }; - A5AA01A6237F13BF009CD413 /* InterlockedCompareExchange16.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = InterlockedCompareExchange16.nasm; sourceTree = ""; }; - A5AA01A7237F13BF009CD413 /* InterlockedCompareExchange16.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = InterlockedCompareExchange16.c; sourceTree = ""; }; - A5AA01A8237F13BF009CD413 /* GccInline.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = GccInline.c; sourceTree = ""; }; - A5AA01A9237F13BF009CD413 /* InterlockedCompareExchange32.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = InterlockedCompareExchange32.c; sourceTree = ""; }; - A5AA01AA237F13BF009CD413 /* InterlockedCompareExchange64.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = InterlockedCompareExchange64.nasm; sourceTree = ""; }; - A5AA01AB237F13BF009CD413 /* InterlockedCompareExchange32.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = InterlockedCompareExchange32.nasm; sourceTree = ""; }; - A5AA01AC237F13BF009CD413 /* InterlockedDecrement.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = InterlockedDecrement.nasm; sourceTree = ""; }; - A5AA01AD237F13BF009CD413 /* InterlockedIncrementMsc.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = InterlockedIncrementMsc.c; sourceTree = ""; }; - A5AA01AF237F13BF009CD413 /* InterlockedCompareExchange64.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = InterlockedCompareExchange64.c; sourceTree = ""; }; - A5AA01B0237F13BF009CD413 /* InternalGetSpinLockProperties.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = InternalGetSpinLockProperties.c; sourceTree = ""; }; - A5AA01B1237F13BF009CD413 /* InterlockedIncrement.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = InterlockedIncrement.nasm; sourceTree = ""; }; - A5AA01B2237F13BF009CD413 /* InterlockedCompareExchange16.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = InterlockedCompareExchange16.nasm; sourceTree = ""; }; - A5AA01B3237F13BF009CD413 /* InterlockedCompareExchange16.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = InterlockedCompareExchange16.c; sourceTree = ""; }; - A5AA01B4237F13BF009CD413 /* GccInline.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = GccInline.c; sourceTree = ""; }; - A5AA01B5237F13BF009CD413 /* InterlockedCompareExchange32.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = InterlockedCompareExchange32.c; sourceTree = ""; }; - A5AA01B6237F13BF009CD413 /* InterlockedCompareExchange64.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = InterlockedCompareExchange64.nasm; sourceTree = ""; }; - A5AA01B7237F13BF009CD413 /* InterlockedCompareExchange32.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = InterlockedCompareExchange32.nasm; sourceTree = ""; }; - A5AA01B8237F13BF009CD413 /* InterlockedDecrement.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = InterlockedDecrement.nasm; sourceTree = ""; }; - A5AA01B9237F13BF009CD413 /* BaseSynchronizationLibInternals.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BaseSynchronizationLibInternals.h; sourceTree = ""; }; - A5AA01BA237F13BF009CD413 /* SynchronizationMsc.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SynchronizationMsc.c; sourceTree = ""; }; - A5AA01BB237F13BF009CD413 /* Synchronization.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = Synchronization.c; sourceTree = ""; }; - A5AA01BD237F13BF009CD413 /* Synchronization.S */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.asm; path = Synchronization.S; sourceTree = ""; }; - A5AA01BE237F13BF009CD413 /* Synchronization.asm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm.asm; path = Synchronization.asm; sourceTree = ""; }; - A5AA01C0237F13BF009CD413 /* Synchronization.S */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.asm; path = Synchronization.S; sourceTree = ""; }; - A5AA01C1237F13BF009CD413 /* Synchronization.asm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm.asm; path = Synchronization.asm; sourceTree = ""; }; - A5AA01C2237F13BF009CD413 /* SynchronizationGcc.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SynchronizationGcc.c; sourceTree = ""; }; - A5AA01C3237F13BF009CD413 /* InterlockedDecrementMsc.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = InterlockedDecrementMsc.c; sourceTree = ""; }; - A5AA01C5237F13BF009CD413 /* SetMem64Wrapper.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SetMem64Wrapper.c; sourceTree = ""; }; - A5AA01C6237F13BF009CD413 /* ZeroMemWrapper.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ZeroMemWrapper.c; sourceTree = ""; }; - A5AA01C7237F13BF009CD413 /* CopyMemWrapper.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = CopyMemWrapper.c; sourceTree = ""; }; - A5AA01C8237F13BF009CD413 /* ScanMem64Wrapper.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ScanMem64Wrapper.c; sourceTree = ""; }; - A5AA01C9237F13BF009CD413 /* MemLibGeneric.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = MemLibGeneric.c; sourceTree = ""; }; - A5AA01CA237F13BF009CD413 /* ScanMem8Wrapper.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ScanMem8Wrapper.c; sourceTree = ""; }; - A5AA01CB237F13BF009CD413 /* SetMem32Wrapper.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SetMem32Wrapper.c; sourceTree = ""; }; - A5AA01CC237F13BF009CD413 /* ScanMem32Wrapper.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ScanMem32Wrapper.c; sourceTree = ""; }; - A5AA01CD237F13BF009CD413 /* IsZeroBufferWrapper.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = IsZeroBufferWrapper.c; sourceTree = ""; }; - A5AA01CE237F13BF009CD413 /* SetMemWrapper.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SetMemWrapper.c; sourceTree = ""; }; - A5AA01CF237F13BF009CD413 /* MemLib.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = MemLib.c; sourceTree = ""; }; - A5AA01D0237F13BF009CD413 /* CompareMemWrapper.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = CompareMemWrapper.c; sourceTree = ""; }; - A5AA01D1237F13BF009CD413 /* UefiMemoryLib.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = UefiMemoryLib.inf; sourceTree = ""; }; - A5AA01D2237F13BF009CD413 /* SetMem16Wrapper.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SetMem16Wrapper.c; sourceTree = ""; }; - A5AA01D3237F13BF009CD413 /* MemLibGuid.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = MemLibGuid.c; sourceTree = ""; }; - A5AA01D4237F13BF009CD413 /* UefiMemoryLib.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = UefiMemoryLib.uni; sourceTree = ""; }; - A5AA01D5237F13BF009CD413 /* MemLibInternals.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MemLibInternals.h; sourceTree = ""; }; - A5AA01D6237F13BF009CD413 /* ScanMem16Wrapper.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ScanMem16Wrapper.c; sourceTree = ""; }; - A5AA01D8237F13BF009CD413 /* PciSegmentLibCommon.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PciSegmentLibCommon.h; sourceTree = ""; }; - A5AA01D9237F13BF009CD413 /* DxeRuntimePciSegmentLibSegmentInfo.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = DxeRuntimePciSegmentLibSegmentInfo.inf; sourceTree = ""; }; - A5AA01DA237F13BF009CD413 /* BasePciSegmentLibSegmentInfo.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = BasePciSegmentLibSegmentInfo.inf; sourceTree = ""; }; - A5AA01DB237F13BF009CD413 /* DxeRuntimePciSegmentLibSegmentInfo.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = DxeRuntimePciSegmentLibSegmentInfo.uni; sourceTree = ""; }; - A5AA01DC237F13BF009CD413 /* BasePciSegmentLibSegmentInfo.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = BasePciSegmentLibSegmentInfo.uni; sourceTree = ""; }; - A5AA01DD237F13BF009CD413 /* BasePciSegmentLib.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = BasePciSegmentLib.c; sourceTree = ""; }; - A5AA01DE237F13BF009CD413 /* PciSegmentLibCommon.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = PciSegmentLibCommon.c; sourceTree = ""; }; - A5AA01DF237F13BF009CD413 /* DxeRuntimePciSegmentLib.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = DxeRuntimePciSegmentLib.c; sourceTree = ""; }; - A5AA01E2237F13BF009CD413 /* CpuSleepFlushTlb.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = CpuSleepFlushTlb.c; sourceTree = ""; }; - A5AA01E4237F13BF009CD413 /* CpuSleep.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = CpuSleep.nasm; sourceTree = ""; }; - A5AA01E5237F13BF009CD413 /* CpuFlushTlb.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = CpuFlushTlb.nasm; sourceTree = ""; }; - A5AA01E6237F13BF009CD413 /* BaseCpuLib.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = BaseCpuLib.uni; sourceTree = ""; }; - A5AA01E7237F13BF009CD413 /* BaseCpuLib.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = BaseCpuLib.inf; sourceTree = ""; }; - A5AA01E9237F13BF009CD413 /* CpuSleep.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = CpuSleep.c; sourceTree = ""; }; - A5AA01EA237F13BF009CD413 /* CpuFlushTlbGcc.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = CpuFlushTlbGcc.c; sourceTree = ""; }; - A5AA01EB237F13BF009CD413 /* CpuFlushTlb.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = CpuFlushTlb.c; sourceTree = ""; }; - A5AA01EC237F13BF009CD413 /* CpuSleep.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = CpuSleep.nasm; sourceTree = ""; }; - A5AA01ED237F13BF009CD413 /* CpuFlushTlb.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = CpuFlushTlb.nasm; sourceTree = ""; }; - A5AA01EE237F13BF009CD413 /* CpuSleepGcc.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = CpuSleepGcc.c; sourceTree = ""; }; - A5AA01F0237F13BF009CD413 /* CpuFlushTlb.S */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.asm; path = CpuFlushTlb.S; sourceTree = ""; }; - A5AA01F1237F13BF009CD413 /* CpuFlushTlb.asm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm.asm; path = CpuFlushTlb.asm; sourceTree = ""; }; - A5AA01F2237F13BF009CD413 /* CpuSleep.asm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm.asm; path = CpuSleep.asm; sourceTree = ""; }; - A5AA01F3237F13BF009CD413 /* CpuSleep.S */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.asm; path = CpuSleep.S; sourceTree = ""; }; - A5AA01F5237F13BF009CD413 /* CpuFlushTlb.S */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.asm; path = CpuFlushTlb.S; sourceTree = ""; }; - A5AA01F6237F13BF009CD413 /* CpuFlushTlb.asm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm.asm; path = CpuFlushTlb.asm; sourceTree = ""; }; - A5AA01F7237F13BF009CD413 /* CpuSleep.asm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm.asm; path = CpuSleep.asm; sourceTree = ""; }; - A5AA01F8237F13BF009CD413 /* CpuSleep.S */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.asm; path = CpuSleep.S; sourceTree = ""; }; - A5AA01FA237F13BF009CD413 /* PeiExtractGuidedSectionLib.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = PeiExtractGuidedSectionLib.c; sourceTree = ""; }; - A5AA01FB237F13BF009CD413 /* PeiExtractGuidedSectionLib.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = PeiExtractGuidedSectionLib.uni; sourceTree = ""; }; - A5AA01FC237F13BF009CD413 /* PeiExtractGuidedSectionLib.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = PeiExtractGuidedSectionLib.inf; sourceTree = ""; }; - A5AA01FE237F13BF009CD413 /* DriverEntryPoint.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = DriverEntryPoint.c; sourceTree = ""; }; - A5AA01FF237F13BF009CD413 /* UefiDriverEntryPoint.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = UefiDriverEntryPoint.inf; sourceTree = ""; }; - A5AA0200237F13BF009CD413 /* UefiDriverEntryPoint.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = UefiDriverEntryPoint.uni; sourceTree = ""; }; - A5AA0202237F13BF009CD413 /* DebugLibConstructor.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = DebugLibConstructor.c; sourceTree = ""; }; - A5AA0203237F13BF009CD413 /* DebugLib.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = DebugLib.c; sourceTree = ""; }; - A5AA0204237F13BF009CD413 /* UefiDebugLibDebugPortProtocol.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = UefiDebugLibDebugPortProtocol.uni; sourceTree = ""; }; - A5AA0205237F13BF009CD413 /* UefiDebugLibDebugPortProtocol.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = UefiDebugLibDebugPortProtocol.inf; sourceTree = ""; }; - A5AA0207237F13BF009CD413 /* SmmPciExpressLib.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = SmmPciExpressLib.inf; sourceTree = ""; }; - A5AA0208237F13BF009CD413 /* PciExpressLib.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = PciExpressLib.c; sourceTree = ""; }; - A5AA020A237F13BF009CD413 /* DxeRuntimePciExpressLib.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = DxeRuntimePciExpressLib.uni; sourceTree = ""; }; - A5AA020B237F13BF009CD413 /* DxeRuntimePciExpressLib.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = DxeRuntimePciExpressLib.inf; sourceTree = ""; }; - A5AA020C237F13BF009CD413 /* PciExpressLib.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = PciExpressLib.c; sourceTree = ""; }; - A5AA020E237F13BF009CD413 /* SetMem64Wrapper.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SetMem64Wrapper.c; sourceTree = ""; }; - A5AA020F237F13BF009CD413 /* ZeroMemWrapper.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ZeroMemWrapper.c; sourceTree = ""; }; - A5AA0210237F13BF009CD413 /* CopyMemWrapper.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = CopyMemWrapper.c; sourceTree = ""; }; - A5AA0211237F13BF009CD413 /* ScanMem64Wrapper.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ScanMem64Wrapper.c; sourceTree = ""; }; - A5AA0213237F13BF009CD413 /* ZeroMem.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = ZeroMem.nasm; sourceTree = ""; }; - A5AA0214237F13BF009CD413 /* CompareMem.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = CompareMem.nasm; sourceTree = ""; }; - A5AA0215237F13BF009CD413 /* SetMem16.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = SetMem16.nasm; sourceTree = ""; }; - A5AA0216237F13BF009CD413 /* ScanMem64.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = ScanMem64.nasm; sourceTree = ""; }; - A5AA0217237F13BF009CD413 /* ScanMem32.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = ScanMem32.nasm; sourceTree = ""; }; - A5AA0218237F13BF009CD413 /* SetMem.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = SetMem.nasm; sourceTree = ""; }; - A5AA0219237F13BF009CD413 /* IsZeroBuffer.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = IsZeroBuffer.nasm; sourceTree = ""; }; - A5AA021A237F13BF009CD413 /* SetMem64.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = SetMem64.nasm; sourceTree = ""; }; - A5AA021B237F13BF009CD413 /* ScanMem8.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = ScanMem8.nasm; sourceTree = ""; }; - A5AA021C237F13BF009CD413 /* SetMem32.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = SetMem32.nasm; sourceTree = ""; }; - A5AA021D237F13BF009CD413 /* ScanMem16.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = ScanMem16.nasm; sourceTree = ""; }; - A5AA021E237F13BF009CD413 /* CopyMem.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = CopyMem.nasm; sourceTree = ""; }; - A5AA021F237F13BF009CD413 /* ScanMem8Wrapper.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ScanMem8Wrapper.c; sourceTree = ""; }; - A5AA0220237F13BF009CD413 /* SetMem32Wrapper.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SetMem32Wrapper.c; sourceTree = ""; }; - A5AA0222237F13BF009CD413 /* ZeroMem.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = ZeroMem.nasm; sourceTree = ""; }; - A5AA0223237F13BF009CD413 /* CompareMem.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = CompareMem.nasm; sourceTree = ""; }; - A5AA0224237F13BF009CD413 /* SetMem16.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = SetMem16.nasm; sourceTree = ""; }; - A5AA0225237F13BF009CD413 /* ScanMem64.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = ScanMem64.nasm; sourceTree = ""; }; - A5AA0226237F13BF009CD413 /* ScanMem32.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = ScanMem32.nasm; sourceTree = ""; }; - A5AA0227237F13BF009CD413 /* SetMem.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = SetMem.nasm; sourceTree = ""; }; - A5AA0228237F13BF009CD413 /* IsZeroBuffer.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = IsZeroBuffer.nasm; sourceTree = ""; }; - A5AA0229237F13BF009CD413 /* SetMem64.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = SetMem64.nasm; sourceTree = ""; }; - A5AA022A237F13BF009CD413 /* ScanMem8.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = ScanMem8.nasm; sourceTree = ""; }; - A5AA022B237F13BF009CD413 /* SetMem32.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = SetMem32.nasm; sourceTree = ""; }; - A5AA022C237F13BF009CD413 /* ScanMem16.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = ScanMem16.nasm; sourceTree = ""; }; - A5AA022D237F13BF009CD413 /* CopyMem.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = CopyMem.nasm; sourceTree = ""; }; - A5AA022E237F13BF009CD413 /* ScanMem32Wrapper.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ScanMem32Wrapper.c; sourceTree = ""; }; - A5AA022F237F13BF009CD413 /* IsZeroBufferWrapper.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = IsZeroBufferWrapper.c; sourceTree = ""; }; - A5AA0230237F13BF009CD413 /* SetMemWrapper.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SetMemWrapper.c; sourceTree = ""; }; - A5AA0231237F13BF009CD413 /* CompareMemWrapper.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = CompareMemWrapper.c; sourceTree = ""; }; - A5AA0233237F13BF009CD413 /* ScanMemGeneric.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ScanMemGeneric.c; sourceTree = ""; }; - A5AA0234237F13BF009CD413 /* CompareMem.asm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm.asm; path = CompareMem.asm; sourceTree = ""; }; - A5AA0235237F13BF009CD413 /* CopyMem.S */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.asm; path = CopyMem.S; sourceTree = ""; }; - A5AA0236237F13BF009CD413 /* SetMem.S */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.asm; path = SetMem.S; sourceTree = ""; }; - A5AA0237237F13BF009CD413 /* ScanMem.asm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm.asm; path = ScanMem.asm; sourceTree = ""; }; - A5AA0238237F13BF009CD413 /* CopyMem.asm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm.asm; path = CopyMem.asm; sourceTree = ""; }; - A5AA0239237F13BF009CD413 /* CompareMem.S */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.asm; path = CompareMem.S; sourceTree = ""; }; - A5AA023A237F13BF009CD413 /* MemLibGuid.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = MemLibGuid.c; sourceTree = ""; }; - A5AA023B237F13BF009CD413 /* SetMem.asm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm.asm; path = SetMem.asm; sourceTree = ""; }; - A5AA023C237F13BF009CD413 /* CompareGuid.asm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm.asm; path = CompareGuid.asm; sourceTree = ""; }; - A5AA023D237F13BF009CD413 /* CompareGuid.S */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.asm; path = CompareGuid.S; sourceTree = ""; }; - A5AA023E237F13BF009CD413 /* ScanMem.S */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.asm; path = ScanMem.S; sourceTree = ""; }; - A5AA023F237F13BF009CD413 /* BaseMemoryLibOptDxe.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = BaseMemoryLibOptDxe.uni; sourceTree = ""; }; - A5AA0240237F13BF009CD413 /* SetMem16Wrapper.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SetMem16Wrapper.c; sourceTree = ""; }; - A5AA0241237F13BF009CD413 /* MemLibGuid.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = MemLibGuid.c; sourceTree = ""; }; - A5AA0243237F13BF009CD413 /* CopyMem.S */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.asm; path = CopyMem.S; sourceTree = ""; }; - A5AA0244237F13BF009CD413 /* SetMem.S */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.asm; path = SetMem.S; sourceTree = ""; }; - A5AA0245237F13BF009CD413 /* CompareMem.S */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.asm; path = CompareMem.S; sourceTree = ""; }; - A5AA0246237F13BF009CD413 /* CompareGuid.S */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.asm; path = CompareGuid.S; sourceTree = ""; }; - A5AA0247237F13BF009CD413 /* ScanMem.S */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.asm; path = ScanMem.S; sourceTree = ""; }; - A5AA0248237F13BF009CD413 /* MemLibInternals.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MemLibInternals.h; sourceTree = ""; }; - A5AA0249237F13BF009CD413 /* BaseMemoryLibOptDxe.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = BaseMemoryLibOptDxe.inf; sourceTree = ""; }; - A5AA024A237F13BF009CD413 /* ScanMem16Wrapper.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ScanMem16Wrapper.c; sourceTree = ""; }; - A5AA024C237F13BF009CD413 /* PerformanceLib.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = PerformanceLib.c; sourceTree = ""; }; - A5AA024D237F13BF009CD413 /* BasePerformanceLibNull.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = BasePerformanceLibNull.inf; sourceTree = ""; }; - A5AA024E237F13BF009CD413 /* BasePerformanceLibNull.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = BasePerformanceLibNull.uni; sourceTree = ""; }; - A5AA0250237F13BF009CD413 /* BasePciSegmentLibPci.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = BasePciSegmentLibPci.inf; sourceTree = ""; }; - A5AA0251237F13BF009CD413 /* BasePciSegmentLibPci.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = BasePciSegmentLibPci.uni; sourceTree = ""; }; - A5AA0252237F13BF009CD413 /* PciSegmentLib.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = PciSegmentLib.c; sourceTree = ""; }; - A5AA0254237F13BF009CD413 /* PostCode.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = PostCode.c; sourceTree = ""; }; - A5AA0255237F13BF009CD413 /* PeiDxePostCodeLibReportStatusCode.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = PeiDxePostCodeLibReportStatusCode.inf; sourceTree = ""; }; - A5AA0256237F13BF009CD413 /* PeiDxePostCodeLibReportStatusCode.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = PeiDxePostCodeLibReportStatusCode.uni; sourceTree = ""; }; - A5AA0258237F13BF009CD413 /* BasePcdLibNull.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = BasePcdLibNull.uni; sourceTree = ""; }; - A5AA0259237F13BF009CD413 /* BasePcdLibNull.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = BasePcdLibNull.inf; sourceTree = ""; }; - A5AA025A237F13BF009CD413 /* PcdLib.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = PcdLib.c; sourceTree = ""; }; - A5AA025C237F13BF009CD413 /* BaseStackCheckGcc.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = BaseStackCheckGcc.c; sourceTree = ""; }; - A5AA025D237F13BF009CD413 /* BaseStackCheckLib.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = BaseStackCheckLib.uni; sourceTree = ""; }; - A5AA025E237F13BF009CD413 /* BaseStackCheckNull.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = BaseStackCheckNull.c; sourceTree = ""; }; - A5AA025F237F13BF009CD413 /* BaseStackCheckLib.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = BaseStackCheckLib.inf; sourceTree = ""; }; - A5AA0261237F13BF009CD413 /* BaseRngLib.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = BaseRngLib.uni; sourceTree = ""; }; - A5AA0262237F13BF009CD413 /* BaseRngLib.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = BaseRngLib.inf; sourceTree = ""; }; - A5AA0263237F13BF009CD413 /* BaseRng.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = BaseRng.c; sourceTree = ""; }; - A5AA0265237F13BF009CD413 /* DxeCoreEntryPoint.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = DxeCoreEntryPoint.c; sourceTree = ""; }; - A5AA0266237F13BF009CD413 /* DxeCoreEntryPoint.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = DxeCoreEntryPoint.uni; sourceTree = ""; }; - A5AA0267237F13BF009CD413 /* DxeCoreEntryPoint.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = DxeCoreEntryPoint.inf; sourceTree = ""; }; - A5AA0269237F13BF009CD413 /* PostCode.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = PostCode.c; sourceTree = ""; }; - A5AA026A237F13BF009CD413 /* BasePostCodeLibPort80.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = BasePostCodeLibPort80.inf; sourceTree = ""; }; - A5AA026B237F13BF009CD413 /* BasePostCodeLibPort80.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = BasePostCodeLibPort80.uni; sourceTree = ""; }; - A5AA026D237F13BF009CD413 /* PeiCoreEntryPoint.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = PeiCoreEntryPoint.uni; sourceTree = ""; }; - A5AA026E237F13BF009CD413 /* PeiCoreEntryPoint.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = PeiCoreEntryPoint.inf; sourceTree = ""; }; - A5AA026F237F13BF009CD413 /* PeiCoreEntryPoint.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = PeiCoreEntryPoint.c; sourceTree = ""; }; - A5AA0271237F13BF009CD413 /* BasePeCoffLibInternals.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BasePeCoffLibInternals.h; sourceTree = ""; }; - A5AA0272237F13BF009CD413 /* BasePeCoff.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = BasePeCoff.c; sourceTree = ""; }; - A5AA0273237F13BF009CD413 /* PeCoffLoaderEx.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = PeCoffLoaderEx.c; sourceTree = ""; }; - A5AA0275237F13BF009CD413 /* PeCoffLoaderEx.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = PeCoffLoaderEx.c; sourceTree = ""; }; - A5AA0276237F13BF009CD413 /* BasePeCoffLib.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = BasePeCoffLib.uni; sourceTree = ""; }; - A5AA0277237F13BF009CD413 /* BasePeCoffLib.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = BasePeCoffLib.inf; sourceTree = ""; }; - A5AA0279237F13BF009CD413 /* SmmLibNull.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = SmmLibNull.uni; sourceTree = ""; }; - A5AA027A237F13BF009CD413 /* SmmLibNull.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = SmmLibNull.inf; sourceTree = ""; }; - A5AA027B237F13BF009CD413 /* SmmLibNull.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SmmLibNull.c; sourceTree = ""; }; - A5AA027D237F13BF009CD413 /* BasePciCf8Lib.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = BasePciCf8Lib.uni; sourceTree = ""; }; - A5AA027E237F13BF009CD413 /* BasePciCf8Lib.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = BasePciCf8Lib.inf; sourceTree = ""; }; - A5AA027F237F13BF009CD413 /* PciCf8Lib.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = PciCf8Lib.c; sourceTree = ""; }; - A5AA0281237F13BF009CD413 /* MmServicesTableLib.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = MmServicesTableLib.uni; sourceTree = ""; }; - A5AA0282237F13BF009CD413 /* MmServicesTableLib.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = MmServicesTableLib.inf; sourceTree = ""; }; - A5AA0283237F13BF009CD413 /* MmServicesTableLib.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = MmServicesTableLib.c; sourceTree = ""; }; - A5AA0285237F13BF009CD413 /* SafeIntLib64.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SafeIntLib64.c; sourceTree = ""; }; - A5AA0286237F13BF009CD413 /* SafeIntLibEbc.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SafeIntLibEbc.c; sourceTree = ""; }; - A5AA0287237F13BF009CD413 /* BaseSafeIntLib.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = BaseSafeIntLib.inf; sourceTree = ""; }; - A5AA0288237F13BF009CD413 /* SafeIntLib32.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SafeIntLib32.c; sourceTree = ""; }; - A5AA0289237F13BF009CD413 /* SafeIntLib.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SafeIntLib.c; sourceTree = ""; }; - A5AA028B237F13BF009CD413 /* SmmServicesTableLib.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SmmServicesTableLib.c; sourceTree = ""; }; - A5AA028C237F13BF009CD413 /* SmmServicesTableLib.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = SmmServicesTableLib.inf; sourceTree = ""; }; - A5AA028D237F13BF009CD413 /* SmmServicesTableLib.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = SmmServicesTableLib.uni; sourceTree = ""; }; - A5AA028F237F13BF009CD413 /* DxeExtractGuidedSectionLib.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = DxeExtractGuidedSectionLib.uni; sourceTree = ""; }; - A5AA0290237F13BF009CD413 /* DxeExtractGuidedSectionLib.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = DxeExtractGuidedSectionLib.inf; sourceTree = ""; }; - A5AA0291237F13BF009CD413 /* DxeExtractGuidedSectionLib.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = DxeExtractGuidedSectionLib.c; sourceTree = ""; }; - A5AA0293237F13BF009CD413 /* UefiApplicationEntryPoint.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = UefiApplicationEntryPoint.uni; sourceTree = ""; }; - A5AA0294237F13BF009CD413 /* UefiApplicationEntryPoint.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = UefiApplicationEntryPoint.inf; sourceTree = ""; }; - A5AA0295237F13BF009CD413 /* ApplicationEntryPoint.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ApplicationEntryPoint.c; sourceTree = ""; }; - A5AA0297237F13BF009CD413 /* SetMem64Wrapper.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SetMem64Wrapper.c; sourceTree = ""; }; - A5AA0298237F13BF009CD413 /* ZeroMemWrapper.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ZeroMemWrapper.c; sourceTree = ""; }; - A5AA0299237F13BF009CD413 /* BaseMemoryLib.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = BaseMemoryLib.inf; sourceTree = ""; }; - A5AA029A237F13BF009CD413 /* CopyMemWrapper.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = CopyMemWrapper.c; sourceTree = ""; }; - A5AA029B237F13BF009CD413 /* ScanMem64Wrapper.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ScanMem64Wrapper.c; sourceTree = ""; }; - A5AA029C237F13BF009CD413 /* BaseMemoryLib.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = BaseMemoryLib.uni; sourceTree = ""; }; - A5AA029D237F13BF009CD413 /* MemLibGeneric.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = MemLibGeneric.c; sourceTree = ""; }; - A5AA029E237F13BF009CD413 /* ScanMem8Wrapper.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ScanMem8Wrapper.c; sourceTree = ""; }; - A5AA029F237F13BF009CD413 /* SetMem32Wrapper.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SetMem32Wrapper.c; sourceTree = ""; }; - A5AA02A0237F13BF009CD413 /* CopyMem.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = CopyMem.c; sourceTree = ""; }; - A5AA02A1237F13BF009CD413 /* SetMem.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SetMem.c; sourceTree = ""; }; - A5AA02A2237F13BF009CD413 /* ScanMem32Wrapper.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ScanMem32Wrapper.c; sourceTree = ""; }; - A5AA02A3237F13BF009CD413 /* IsZeroBufferWrapper.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = IsZeroBufferWrapper.c; sourceTree = ""; }; - A5AA02A4237F13BF009CD413 /* SetMemWrapper.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SetMemWrapper.c; sourceTree = ""; }; - A5AA02A5237F13BF009CD413 /* CompareMemWrapper.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = CompareMemWrapper.c; sourceTree = ""; }; - A5AA02A6237F13BF009CD413 /* SetMem16Wrapper.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SetMem16Wrapper.c; sourceTree = ""; }; - A5AA02A7237F13BF009CD413 /* MemLibGuid.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = MemLibGuid.c; sourceTree = ""; }; - A5AA02A8237F13BF009CD413 /* MemLibInternals.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MemLibInternals.h; sourceTree = ""; }; - A5AA02A9237F13BF009CD413 /* ScanMem16Wrapper.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ScanMem16Wrapper.c; sourceTree = ""; }; - A5AA02AB237F13BF009CD413 /* IoLibMmioBuffer.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = IoLibMmioBuffer.c; sourceTree = ""; }; - A5AA02AC237F13BF009CD413 /* IoLib.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = IoLib.c; sourceTree = ""; }; - A5AA02AD237F13BF009CD413 /* IoHighLevel.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = IoHighLevel.c; sourceTree = ""; }; - A5AA02AE237F13BF009CD413 /* SmmCpuIoLibInternal.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SmmCpuIoLibInternal.h; sourceTree = ""; }; - A5AA02AF237F13BF009CD413 /* SmmIoLibSmmCpuIo2.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = SmmIoLibSmmCpuIo2.uni; sourceTree = ""; }; - A5AA02B0237F13BF009CD413 /* SmmIoLibSmmCpuIo2.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = SmmIoLibSmmCpuIo2.inf; sourceTree = ""; }; - A5AA02B2237F13BF009CD413 /* DxeSmbusLib.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = DxeSmbusLib.c; sourceTree = ""; }; - A5AA02B3237F13BF009CD413 /* SmbusLib.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SmbusLib.c; sourceTree = ""; }; - A5AA02B4237F13BF009CD413 /* InternalSmbusLib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = InternalSmbusLib.h; sourceTree = ""; }; - A5AA02B5237F13BF009CD413 /* DxeSmbusLib.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = DxeSmbusLib.inf; sourceTree = ""; }; - A5AA02B6237F13BF009CD413 /* DxeSmbusLib.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = DxeSmbusLib.uni; sourceTree = ""; }; - A5AA02B8237F13BF009CD413 /* BaseSmbusLibNull.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = BaseSmbusLibNull.c; sourceTree = ""; }; - A5AA02B9237F13BF009CD413 /* BaseSmbusLibNull.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = BaseSmbusLibNull.uni; sourceTree = ""; }; - A5AA02BA237F13BF009CD413 /* BaseSmbusLibNull.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = BaseSmbusLibNull.inf; sourceTree = ""; }; - A5AA02BC237F13BF009CD413 /* BaseTimerLibNullTemplate.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = BaseTimerLibNullTemplate.uni; sourceTree = ""; }; - A5AA02BD237F13BF009CD413 /* BaseTimerLibNullTemplate.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = BaseTimerLibNullTemplate.inf; sourceTree = ""; }; - A5AA02BE237F13BF009CD413 /* TimerLibNull.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = TimerLibNull.c; sourceTree = ""; }; - A5AA02C0237F13BF009CD413 /* BaseS3IoLib.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = BaseS3IoLib.inf; sourceTree = ""; }; - A5AA02C1237F13BF009CD413 /* BaseS3IoLib.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = BaseS3IoLib.uni; sourceTree = ""; }; - A5AA02C2237F13BF009CD413 /* S3IoLib.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = S3IoLib.c; sourceTree = ""; }; - A5AA02C4237F13BF009CD413 /* BaseDebugLibSerialPort.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = BaseDebugLibSerialPort.uni; sourceTree = ""; }; - A5AA02C5237F13BF009CD413 /* BaseDebugLibSerialPort.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = BaseDebugLibSerialPort.inf; sourceTree = ""; }; - A5AA02C6237F13BF009CD413 /* DebugLib.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = DebugLib.c; sourceTree = ""; }; - A5AA02C8237F13BF009CD413 /* SetMem64Wrapper.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SetMem64Wrapper.c; sourceTree = ""; }; - A5AA02C9237F13BF009CD413 /* ZeroMemWrapper.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ZeroMemWrapper.c; sourceTree = ""; }; - A5AA02CA237F13BF009CD413 /* CopyMemWrapper.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = CopyMemWrapper.c; sourceTree = ""; }; - A5AA02CB237F13BF009CD413 /* ScanMem64Wrapper.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ScanMem64Wrapper.c; sourceTree = ""; }; - A5AA02CD237F13BF009CD413 /* ZeroMem.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = ZeroMem.nasm; sourceTree = ""; }; - A5AA02CE237F13BF009CD413 /* CompareMem.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = CompareMem.nasm; sourceTree = ""; }; - A5AA02CF237F13BF009CD413 /* SetMem16.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = SetMem16.nasm; sourceTree = ""; }; - A5AA02D0237F13BF009CD413 /* ScanMem64.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = ScanMem64.nasm; sourceTree = ""; }; - A5AA02D1237F13BF009CD413 /* ScanMem32.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = ScanMem32.nasm; sourceTree = ""; }; - A5AA02D2237F13BF009CD413 /* SetMem.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = SetMem.nasm; sourceTree = ""; }; - A5AA02D3237F13BF009CD413 /* IsZeroBuffer.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = IsZeroBuffer.nasm; sourceTree = ""; }; - A5AA02D4237F13BF009CD413 /* SetMem64.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = SetMem64.nasm; sourceTree = ""; }; - A5AA02D5237F13BF009CD413 /* ScanMem8.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = ScanMem8.nasm; sourceTree = ""; }; - A5AA02D6237F13BF009CD413 /* SetMem32.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = SetMem32.nasm; sourceTree = ""; }; - A5AA02D7237F13BF009CD413 /* ScanMem16.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = ScanMem16.nasm; sourceTree = ""; }; - A5AA02D8237F13BF009CD413 /* CopyMem.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = CopyMem.nasm; sourceTree = ""; }; - A5AA02D9237F13BF009CD413 /* BaseMemoryLibSse2.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = BaseMemoryLibSse2.uni; sourceTree = ""; }; - A5AA02DA237F13BF009CD413 /* ScanMem8Wrapper.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ScanMem8Wrapper.c; sourceTree = ""; }; - A5AA02DB237F13BF009CD413 /* BaseMemoryLibSse2.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = BaseMemoryLibSse2.inf; sourceTree = ""; }; - A5AA02DC237F13BF009CD413 /* SetMem32Wrapper.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SetMem32Wrapper.c; sourceTree = ""; }; - A5AA02DE237F13BF009CD413 /* ZeroMem.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = ZeroMem.nasm; sourceTree = ""; }; - A5AA02DF237F13BF009CD413 /* CompareMem.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = CompareMem.nasm; sourceTree = ""; }; - A5AA02E0237F13BF009CD413 /* SetMem16.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = SetMem16.nasm; sourceTree = ""; }; - A5AA02E1237F13BF009CD413 /* ScanMem64.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = ScanMem64.nasm; sourceTree = ""; }; - A5AA02E2237F13BF009CD413 /* ScanMem32.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = ScanMem32.nasm; sourceTree = ""; }; - A5AA02E3237F13BF009CD413 /* SetMem.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = SetMem.nasm; sourceTree = ""; }; - A5AA02E4237F13BF009CD413 /* IsZeroBuffer.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = IsZeroBuffer.nasm; sourceTree = ""; }; - A5AA02E5237F13BF009CD413 /* SetMem64.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = SetMem64.nasm; sourceTree = ""; }; - A5AA02E6237F13BF009CD413 /* ScanMem8.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = ScanMem8.nasm; sourceTree = ""; }; - A5AA02E7237F13BF009CD413 /* SetMem32.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = SetMem32.nasm; sourceTree = ""; }; - A5AA02E8237F13BF009CD413 /* ScanMem16.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = ScanMem16.nasm; sourceTree = ""; }; - A5AA02E9237F13BF009CD413 /* CopyMem.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = CopyMem.nasm; sourceTree = ""; }; - A5AA02EA237F13BF009CD413 /* ScanMem32Wrapper.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ScanMem32Wrapper.c; sourceTree = ""; }; - A5AA02EB237F13BF009CD413 /* IsZeroBufferWrapper.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = IsZeroBufferWrapper.c; sourceTree = ""; }; - A5AA02EC237F13BF009CD413 /* SetMemWrapper.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SetMemWrapper.c; sourceTree = ""; }; - A5AA02ED237F13BF009CD413 /* CompareMemWrapper.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = CompareMemWrapper.c; sourceTree = ""; }; - A5AA02EE237F13BF009CD413 /* SetMem16Wrapper.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SetMem16Wrapper.c; sourceTree = ""; }; - A5AA02EF237F13BF009CD413 /* MemLibGuid.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = MemLibGuid.c; sourceTree = ""; }; - A5AA02F0237F13BF009CD413 /* MemLibInternals.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MemLibInternals.h; sourceTree = ""; }; - A5AA02F1237F13BF009CD413 /* ScanMem16Wrapper.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ScanMem16Wrapper.c; sourceTree = ""; }; - A5AA02F3237F13BF009CD413 /* BaseUefiDecompressLib.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = BaseUefiDecompressLib.uni; sourceTree = ""; }; - A5AA02F4237F13BF009CD413 /* BaseUefiDecompressLib.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = BaseUefiDecompressLib.inf; sourceTree = ""; }; - A5AA02F5237F13BF009CD413 /* BaseUefiDecompressLibInternals.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BaseUefiDecompressLibInternals.h; sourceTree = ""; }; - A5AA02F6237F13BF009CD413 /* BaseUefiTianoCustomDecompressLib.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = BaseUefiTianoCustomDecompressLib.inf; sourceTree = ""; }; - A5AA02F7237F13BF009CD413 /* BaseUefiDecompressLib.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = BaseUefiDecompressLib.c; sourceTree = ""; }; - A5AA02F8237F13BF009CD413 /* BaseUefiTianoCustomDecompressLib.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = BaseUefiTianoCustomDecompressLib.c; sourceTree = ""; }; - A5AA02FA237F13BF009CD413 /* BaseSerialPortLibNull.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = BaseSerialPortLibNull.uni; sourceTree = ""; }; - A5AA02FB237F13BF009CD413 /* BaseSerialPortLibNull.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = BaseSerialPortLibNull.inf; sourceTree = ""; }; - A5AA02FC237F13BF009CD413 /* BaseSerialPortLibNull.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = BaseSerialPortLibNull.c; sourceTree = ""; }; - A5AA02FE237F13BF009CD413 /* BaseS3BootScriptLibNull.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = BaseS3BootScriptLibNull.inf; sourceTree = ""; }; - A5AA02FF237F13BF009CD413 /* BootScriptLib.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = BootScriptLib.c; sourceTree = ""; }; - A5AA0300237F13BF009CD413 /* BaseS3BootScriptLibNull.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = BaseS3BootScriptLibNull.uni; sourceTree = ""; }; - A5AA0302237F13BF009CD413 /* DxePcdLib.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = DxePcdLib.c; sourceTree = ""; }; - A5AA0303237F13BF009CD413 /* DxePcdLib.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = DxePcdLib.uni; sourceTree = ""; }; - A5AA0304237F13BF009CD413 /* DxePcdLib.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = DxePcdLib.inf; sourceTree = ""; }; - A5AA0306237F13BF009CD413 /* SmmPeriodicSmiLib.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = SmmPeriodicSmiLib.inf; sourceTree = ""; }; - A5AA0307237F13BF009CD413 /* SmmPeriodicSmiLib.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = SmmPeriodicSmiLib.uni; sourceTree = ""; }; - A5AA0308237F13BF009CD413 /* SmmPeriodicSmiLib.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SmmPeriodicSmiLib.c; sourceTree = ""; }; - A5AA030A237F13BF009CD413 /* UefiScsiLib.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = UefiScsiLib.c; sourceTree = ""; }; - A5AA030B237F13BF009CD413 /* UefiScsiLib.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = UefiScsiLib.uni; sourceTree = ""; }; - A5AA030C237F13BF009CD413 /* UefiScsiLib.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = UefiScsiLib.inf; sourceTree = ""; }; - A5AA030E237F13BF009CD413 /* PeiResourcePublicationLib.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = PeiResourcePublicationLib.c; sourceTree = ""; }; - A5AA030F237F13BF009CD413 /* PeiResourcePublicationLib.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = PeiResourcePublicationLib.inf; sourceTree = ""; }; - A5AA0310237F13BF009CD413 /* PeiResourcePublicationLib.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = PeiResourcePublicationLib.uni; sourceTree = ""; }; - A5AA0312237F13BF009CD413 /* DxeHobLib.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = DxeHobLib.inf; sourceTree = ""; }; - A5AA0313237F13BF009CD413 /* DxeHobLib.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = DxeHobLib.uni; sourceTree = ""; }; - A5AA0314237F13BF009CD413 /* HobLib.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = HobLib.c; sourceTree = ""; }; - A5AA0316237F13BF009CD413 /* S3PciSegmentLib.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = S3PciSegmentLib.c; sourceTree = ""; }; - A5AA0317237F13BF009CD413 /* BaseS3PciSegmentLib.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = BaseS3PciSegmentLib.uni; sourceTree = ""; }; - A5AA0318237F13BF009CD413 /* BaseS3PciSegmentLib.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = BaseS3PciSegmentLib.inf; sourceTree = ""; }; - A5AA031A237F13BF009CD413 /* BasePciSegmentInfoLibNull.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = BasePciSegmentInfoLibNull.inf; sourceTree = ""; }; - A5AA031B237F13BF009CD413 /* BasePciSegmentInfoLibNull.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = BasePciSegmentInfoLibNull.uni; sourceTree = ""; }; - A5AA031C237F13BF009CD413 /* PciSegmentInfoLib.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = PciSegmentInfoLib.c; sourceTree = ""; }; - A5AA031E237F13BF009CD413 /* MemoryAllocationLib.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = MemoryAllocationLib.c; sourceTree = ""; }; - A5AA031F237F13BF009CD413 /* SmmMemoryAllocationLib.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = SmmMemoryAllocationLib.uni; sourceTree = ""; }; - A5AA0320237F13BF009CD413 /* SmmMemoryAllocationLib.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = SmmMemoryAllocationLib.inf; sourceTree = ""; }; - A5AA0322237F13BF009CD413 /* BaseExtractGuidedSectionLib.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = BaseExtractGuidedSectionLib.uni; sourceTree = ""; }; - A5AA0323237F13BF009CD413 /* BaseExtractGuidedSectionLib.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = BaseExtractGuidedSectionLib.inf; sourceTree = ""; }; - A5AA0324237F13BF009CD413 /* BaseExtractGuidedSectionLib.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = BaseExtractGuidedSectionLib.c; sourceTree = ""; }; - A5AA0326237F13BF009CD413 /* UefiBootServicesTableLib.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = UefiBootServicesTableLib.uni; sourceTree = ""; }; - A5AA0327237F13BF009CD413 /* UefiBootServicesTableLib.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = UefiBootServicesTableLib.inf; sourceTree = ""; }; - A5AA0328237F13BF009CD413 /* UefiBootServicesTableLib.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = UefiBootServicesTableLib.c; sourceTree = ""; }; - A5AA032A237F13BF009CD413 /* DebugLibConstructor.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = DebugLibConstructor.c; sourceTree = ""; }; - A5AA032B237F13BF009CD413 /* UefiDebugLibStdErr.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = UefiDebugLibStdErr.uni; sourceTree = ""; }; - A5AA032C237F13BF009CD413 /* UefiDebugLibStdErr.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = UefiDebugLibStdErr.inf; sourceTree = ""; }; - A5AA032D237F13BF009CD413 /* DebugLib.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = DebugLib.c; sourceTree = ""; }; - A5AA032F237F13C0009CD413 /* MemoryAllocationLib.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = MemoryAllocationLib.c; sourceTree = ""; }; - A5AA0330237F13C0009CD413 /* PeiMemoryAllocationLib.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = PeiMemoryAllocationLib.uni; sourceTree = ""; }; - A5AA0331237F13C0009CD413 /* PeiMemoryAllocationLib.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = PeiMemoryAllocationLib.inf; sourceTree = ""; }; - A5AA0333237F13C0009CD413 /* DevicePathUtilities.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = DevicePathUtilities.c; sourceTree = ""; }; - A5AA0334237F13C0009CD413 /* UefiDevicePathLib.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = UefiDevicePathLib.c; sourceTree = ""; }; - A5AA0335237F13C0009CD413 /* DevicePathFromText.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = DevicePathFromText.c; sourceTree = ""; }; - A5AA0336237F13C0009CD413 /* UefiDevicePathLibOptionalDevicePathProtocol.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = UefiDevicePathLibOptionalDevicePathProtocol.uni; sourceTree = ""; }; - A5AA0337237F13C0009CD413 /* DevicePathToText.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = DevicePathToText.c; sourceTree = ""; }; - A5AA0338237F13C0009CD413 /* UefiDevicePathLibOptionalDevicePathProtocol.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = UefiDevicePathLibOptionalDevicePathProtocol.c; sourceTree = ""; }; - A5AA0339237F13C0009CD413 /* UefiDevicePathLibOptionalDevicePathProtocol.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = UefiDevicePathLibOptionalDevicePathProtocol.inf; sourceTree = ""; }; - A5AA033A237F13C0009CD413 /* UefiDevicePathLib.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = UefiDevicePathLib.uni; sourceTree = ""; }; - A5AA033B237F13C0009CD413 /* UefiDevicePathLib.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = UefiDevicePathLib.inf; sourceTree = ""; }; - A5AA033C237F13C0009CD413 /* UefiDevicePathLib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UefiDevicePathLib.h; sourceTree = ""; }; - A5AA033E237F13C0009CD413 /* PeiHobLib.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = PeiHobLib.uni; sourceTree = ""; }; - A5AA033F237F13C0009CD413 /* PeiHobLib.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = PeiHobLib.inf; sourceTree = ""; }; - A5AA0340237F13C0009CD413 /* HobLib.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = HobLib.c; sourceTree = ""; }; - A5AA0342237F13C0009CD413 /* SetMem64Wrapper.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SetMem64Wrapper.c; sourceTree = ""; }; - A5AA0343237F13C0009CD413 /* ZeroMemWrapper.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ZeroMemWrapper.c; sourceTree = ""; }; - A5AA0344237F13C0009CD413 /* CopyMemWrapper.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = CopyMemWrapper.c; sourceTree = ""; }; - A5AA0345237F13C0009CD413 /* ScanMem64Wrapper.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ScanMem64Wrapper.c; sourceTree = ""; }; - A5AA0346237F13C0009CD413 /* MemLibGeneric.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = MemLibGeneric.c; sourceTree = ""; }; - A5AA0347237F13C0009CD413 /* PeiMemoryLib.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = PeiMemoryLib.inf; sourceTree = ""; }; - A5AA0348237F13C0009CD413 /* ScanMem8Wrapper.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ScanMem8Wrapper.c; sourceTree = ""; }; - A5AA0349237F13C0009CD413 /* PeiMemoryLib.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = PeiMemoryLib.uni; sourceTree = ""; }; - A5AA034A237F13C0009CD413 /* SetMem32Wrapper.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SetMem32Wrapper.c; sourceTree = ""; }; - A5AA034B237F13C0009CD413 /* ScanMem32Wrapper.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ScanMem32Wrapper.c; sourceTree = ""; }; - A5AA034C237F13C0009CD413 /* IsZeroBufferWrapper.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = IsZeroBufferWrapper.c; sourceTree = ""; }; - A5AA034D237F13C0009CD413 /* SetMemWrapper.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SetMemWrapper.c; sourceTree = ""; }; - A5AA034E237F13C0009CD413 /* MemLib.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = MemLib.c; sourceTree = ""; }; - A5AA034F237F13C0009CD413 /* CompareMemWrapper.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = CompareMemWrapper.c; sourceTree = ""; }; - A5AA0350237F13C0009CD413 /* SetMem16Wrapper.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SetMem16Wrapper.c; sourceTree = ""; }; - A5AA0351237F13C0009CD413 /* MemLibGuid.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = MemLibGuid.c; sourceTree = ""; }; - A5AA0352237F13C0009CD413 /* MemLibInternals.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MemLibInternals.h; sourceTree = ""; }; - A5AA0353237F13C0009CD413 /* ScanMem16Wrapper.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ScanMem16Wrapper.c; sourceTree = ""; }; - A5AA0355237F13C0009CD413 /* BaseIoLibIntrinsic.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = BaseIoLibIntrinsic.inf; sourceTree = ""; }; - A5AA0356237F13C0009CD413 /* IoLibEbc.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = IoLibEbc.c; sourceTree = ""; }; - A5AA0357237F13C0009CD413 /* BaseIoLibIntrinsic.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = BaseIoLibIntrinsic.uni; sourceTree = ""; }; - A5AA0358237F13C0009CD413 /* IoLibGcc.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = IoLibGcc.c; sourceTree = ""; }; - A5AA0359237F13C0009CD413 /* BaseIoLibIntrinsicSev.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = BaseIoLibIntrinsicSev.inf; sourceTree = ""; }; - A5AA035A237F13C0009CD413 /* BaseIoLibIntrinsicInternal.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BaseIoLibIntrinsicInternal.h; sourceTree = ""; }; - A5AA035B237F13C0009CD413 /* IoLibMmioBuffer.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = IoLibMmioBuffer.c; sourceTree = ""; }; - A5AA035D237F13C0009CD413 /* IoFifo.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = IoFifo.nasm; sourceTree = ""; }; - A5AA035E237F13C0009CD413 /* IoFifoSev.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = IoFifoSev.nasm; sourceTree = ""; }; - A5AA035F237F13C0009CD413 /* IoLib.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = IoLib.c; sourceTree = ""; }; - A5AA0360237F13C0009CD413 /* IoHighLevel.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = IoHighLevel.c; sourceTree = ""; }; - A5AA0361237F13C0009CD413 /* IoLibMsc.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = IoLibMsc.c; sourceTree = ""; }; - A5AA0363237F13C0009CD413 /* IoFifo.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = IoFifo.nasm; sourceTree = ""; }; - A5AA0364237F13C0009CD413 /* IoFifoSev.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = IoFifoSev.nasm; sourceTree = ""; }; - A5AA0365237F13C0009CD413 /* IoLibArm.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = IoLibArm.c; sourceTree = ""; }; - A5AA0367237F13C0009CD413 /* ArmVirtMmio.S */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.asm; path = ArmVirtMmio.S; sourceTree = ""; }; - A5AA0368237F13C0009CD413 /* ArmVirtMmio.asm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm.asm; path = ArmVirtMmio.asm; sourceTree = ""; }; - A5AA0369237F13C0009CD413 /* BaseIoLibIntrinsicArmVirt.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = BaseIoLibIntrinsicArmVirt.inf; sourceTree = ""; }; - A5AA036B237F13C0009CD413 /* ArmVirtMmio.S */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.asm; path = ArmVirtMmio.S; sourceTree = ""; }; - A5AA036C237F13C0009CD413 /* ArmVirtMmio.asm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm.asm; path = ArmVirtMmio.asm; sourceTree = ""; }; - A5AA036D237F13C0009CD413 /* IoLibArmVirt.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = IoLibArmVirt.c; sourceTree = ""; }; - A5AA036E237F13C0009CD413 /* BaseIoLibIntrinsicArmVirt.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = BaseIoLibIntrinsicArmVirt.uni; sourceTree = ""; }; - A5AA0370237F13C0009CD413 /* PeiPciSegmentLibPciCfg2.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = PeiPciSegmentLibPciCfg2.inf; sourceTree = ""; }; - A5AA0371237F13C0009CD413 /* PeiPciSegmentLibPciCfg2.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = PeiPciSegmentLibPciCfg2.uni; sourceTree = ""; }; - A5AA0372237F13C0009CD413 /* PciSegmentLib.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = PciSegmentLib.c; sourceTree = ""; }; - A5AA0374237F13C0009CD413 /* BasePeCoffGetEntryPointLib.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = BasePeCoffGetEntryPointLib.uni; sourceTree = ""; }; - A5AA0375237F13C0009CD413 /* BasePeCoffGetEntryPointLib.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = BasePeCoffGetEntryPointLib.inf; sourceTree = ""; }; - A5AA0376237F13C0009CD413 /* PeCoffGetEntryPoint.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = PeCoffGetEntryPoint.c; sourceTree = ""; }; - A5AA0378237F13C0009CD413 /* UefiDevicePathLibDevicePathProtocol.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = UefiDevicePathLibDevicePathProtocol.inf; sourceTree = ""; }; - A5AA0379237F13C0009CD413 /* UefiDevicePathLibDevicePathProtocol.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = UefiDevicePathLibDevicePathProtocol.uni; sourceTree = ""; }; - A5AA037A237F13C0009CD413 /* UefiDevicePathLib.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = UefiDevicePathLib.c; sourceTree = ""; }; - A5AA037C237F13C0009CD413 /* SmmIoLib.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SmmIoLib.c; sourceTree = ""; }; - A5AA037D237F13C0009CD413 /* SmmIoLib.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = SmmIoLib.uni; sourceTree = ""; }; - A5AA037E237F13C0009CD413 /* SmmIoLib.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = SmmIoLib.inf; sourceTree = ""; }; - A5AA0380237F13C0009CD413 /* HobLib.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = HobLib.c; sourceTree = ""; }; - A5AA0381237F13C0009CD413 /* DxeCoreHobLib.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = DxeCoreHobLib.inf; sourceTree = ""; }; - A5AA0382237F13C0009CD413 /* DxeCoreHobLib.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = DxeCoreHobLib.uni; sourceTree = ""; }; - A5AA0384237F13C0009CD413 /* UefiRuntimeServicesTableLib.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = UefiRuntimeServicesTableLib.uni; sourceTree = ""; }; - A5AA0385237F13C0009CD413 /* UefiRuntimeServicesTableLib.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = UefiRuntimeServicesTableLib.inf; sourceTree = ""; }; - A5AA0386237F13C0009CD413 /* UefiRuntimeServicesTableLib.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = UefiRuntimeServicesTableLib.c; sourceTree = ""; }; - A5AA0388237F13C0009CD413 /* PeiPcdLib.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = PeiPcdLib.c; sourceTree = ""; }; - A5AA0389237F13C0009CD413 /* PeiPcdLib.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = PeiPcdLib.inf; sourceTree = ""; }; - A5AA038A237F13C0009CD413 /* PeiPcdLib.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = PeiPcdLib.uni; sourceTree = ""; }; - A5AA038C237F13C0009CD413 /* SmmMemLib.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = SmmMemLib.uni; sourceTree = ""; }; - A5AA038D237F13C0009CD413 /* SmmMemLib.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SmmMemLib.c; sourceTree = ""; }; - A5AA038E237F13C0009CD413 /* SmmMemLib.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = SmmMemLib.inf; sourceTree = ""; }; - A5AA0390237F13C0009CD413 /* UefiFileHandleLib.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = UefiFileHandleLib.inf; sourceTree = ""; }; - A5AA0391237F13C0009CD413 /* UefiFileHandleLib.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = UefiFileHandleLib.uni; sourceTree = ""; }; - A5AA0392237F13C0009CD413 /* UefiFileHandleLib.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = UefiFileHandleLib.c; sourceTree = ""; }; - A5AA0394237F13C0009CD413 /* DebugLib.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = DebugLib.c; sourceTree = ""; }; - A5AA0395237F13C0009CD413 /* DxeRuntimeDebugLibSerialPort.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = DxeRuntimeDebugLibSerialPort.inf; sourceTree = ""; }; - A5AA0396237F13C0009CD413 /* DxeRuntimeDebugLibSerialPort.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = DxeRuntimeDebugLibSerialPort.uni; sourceTree = ""; }; - A5AA0398237F13C0009CD413 /* SetMem64Wrapper.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SetMem64Wrapper.c; sourceTree = ""; }; - A5AA0399237F13C0009CD413 /* ZeroMemWrapper.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ZeroMemWrapper.c; sourceTree = ""; }; - A5AA039A237F13C0009CD413 /* CopyMemWrapper.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = CopyMemWrapper.c; sourceTree = ""; }; - A5AA039B237F13C0009CD413 /* ScanMem64Wrapper.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ScanMem64Wrapper.c; sourceTree = ""; }; - A5AA039D237F13C0009CD413 /* ZeroMem.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = ZeroMem.nasm; sourceTree = ""; }; - A5AA039E237F13C0009CD413 /* CompareMem.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = CompareMem.nasm; sourceTree = ""; }; - A5AA039F237F13C0009CD413 /* SetMem16.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = SetMem16.nasm; sourceTree = ""; }; - A5AA03A0237F13C0009CD413 /* ScanMem64.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = ScanMem64.nasm; sourceTree = ""; }; - A5AA03A1237F13C0009CD413 /* ScanMem32.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = ScanMem32.nasm; sourceTree = ""; }; - A5AA03A2237F13C0009CD413 /* SetMem.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = SetMem.nasm; sourceTree = ""; }; - A5AA03A3237F13C0009CD413 /* IsZeroBuffer.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = IsZeroBuffer.nasm; sourceTree = ""; }; - A5AA03A4237F13C0009CD413 /* SetMem64.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = SetMem64.nasm; sourceTree = ""; }; - A5AA03A5237F13C0009CD413 /* ScanMem8.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = ScanMem8.nasm; sourceTree = ""; }; - A5AA03A6237F13C0009CD413 /* SetMem32.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = SetMem32.nasm; sourceTree = ""; }; - A5AA03A7237F13C0009CD413 /* ScanMem16.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = ScanMem16.nasm; sourceTree = ""; }; - A5AA03A8237F13C0009CD413 /* CopyMem.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = CopyMem.nasm; sourceTree = ""; }; - A5AA03A9237F13C0009CD413 /* ScanMem8Wrapper.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ScanMem8Wrapper.c; sourceTree = ""; }; - A5AA03AA237F13C0009CD413 /* SetMem32Wrapper.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SetMem32Wrapper.c; sourceTree = ""; }; - A5AA03AC237F13C0009CD413 /* ZeroMem.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = ZeroMem.nasm; sourceTree = ""; }; - A5AA03AD237F13C0009CD413 /* CompareMem.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = CompareMem.nasm; sourceTree = ""; }; - A5AA03AE237F13C0009CD413 /* SetMem16.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = SetMem16.nasm; sourceTree = ""; }; - A5AA03AF237F13C0009CD413 /* ScanMem64.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = ScanMem64.nasm; sourceTree = ""; }; - A5AA03B0237F13C0009CD413 /* ScanMem32.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = ScanMem32.nasm; sourceTree = ""; }; - A5AA03B1237F13C0009CD413 /* SetMem.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = SetMem.nasm; sourceTree = ""; }; - A5AA03B2237F13C0009CD413 /* IsZeroBuffer.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = IsZeroBuffer.nasm; sourceTree = ""; }; - A5AA03B3237F13C0009CD413 /* SetMem64.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = SetMem64.nasm; sourceTree = ""; }; - A5AA03B4237F13C0009CD413 /* ScanMem8.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = ScanMem8.nasm; sourceTree = ""; }; - A5AA03B5237F13C0009CD413 /* SetMem32.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = SetMem32.nasm; sourceTree = ""; }; - A5AA03B6237F13C0009CD413 /* ScanMem16.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = ScanMem16.nasm; sourceTree = ""; }; - A5AA03B7237F13C0009CD413 /* CopyMem.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = CopyMem.nasm; sourceTree = ""; }; - A5AA03B8237F13C0009CD413 /* ScanMem32Wrapper.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ScanMem32Wrapper.c; sourceTree = ""; }; - A5AA03B9237F13C0009CD413 /* IsZeroBufferWrapper.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = IsZeroBufferWrapper.c; sourceTree = ""; }; - A5AA03BA237F13C0009CD413 /* SetMemWrapper.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SetMemWrapper.c; sourceTree = ""; }; - A5AA03BB237F13C0009CD413 /* CompareMemWrapper.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = CompareMemWrapper.c; sourceTree = ""; }; - A5AA03BC237F13C0009CD413 /* SetMem16Wrapper.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SetMem16Wrapper.c; sourceTree = ""; }; - A5AA03BD237F13C0009CD413 /* MemLibGuid.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = MemLibGuid.c; sourceTree = ""; }; - A5AA03BE237F13C0009CD413 /* BaseMemoryLibMmx.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = BaseMemoryLibMmx.inf; sourceTree = ""; }; - A5AA03BF237F13C0009CD413 /* MemLibInternals.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MemLibInternals.h; sourceTree = ""; }; - A5AA03C0237F13C0009CD413 /* ScanMem16Wrapper.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ScanMem16Wrapper.c; sourceTree = ""; }; - A5AA03C1237F13C0009CD413 /* BaseMemoryLibMmx.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = BaseMemoryLibMmx.uni; sourceTree = ""; }; - A5AA03C3237F13C0009CD413 /* BaseOrderedCollectionRedBlackTreeLib.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = BaseOrderedCollectionRedBlackTreeLib.inf; sourceTree = ""; }; - A5AA03C4237F13C0009CD413 /* BaseOrderedCollectionRedBlackTreeLib.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = BaseOrderedCollectionRedBlackTreeLib.uni; sourceTree = ""; }; - A5AA03C5237F13C0009CD413 /* BaseOrderedCollectionRedBlackTreeLib.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = BaseOrderedCollectionRedBlackTreeLib.c; sourceTree = ""; }; - A5AA03C7237F13C0009CD413 /* UefiMemoryAllocationLib.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = UefiMemoryAllocationLib.inf; sourceTree = ""; }; - A5AA03C8237F13C0009CD413 /* MemoryAllocationLib.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = MemoryAllocationLib.c; sourceTree = ""; }; - A5AA03C9237F13C0009CD413 /* UefiMemoryAllocationLib.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = UefiMemoryAllocationLib.uni; sourceTree = ""; }; - A5AA03CB237F13C0009CD413 /* UefiRuntimeLib.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = UefiRuntimeLib.uni; sourceTree = ""; }; - A5AA03CC237F13C0009CD413 /* UefiRuntimeLib.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = UefiRuntimeLib.inf; sourceTree = ""; }; - A5AA03CD237F13C0009CD413 /* RuntimeLib.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = RuntimeLib.c; sourceTree = ""; }; - A5AA03CF237F13C0009CD413 /* UefiDebugLibConOut.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = UefiDebugLibConOut.inf; sourceTree = ""; }; - A5AA03D0237F13C0009CD413 /* UefiDebugLibConOut.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = UefiDebugLibConOut.uni; sourceTree = ""; }; - A5AA03D1237F13C0009CD413 /* DebugLibConstructor.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = DebugLibConstructor.c; sourceTree = ""; }; - A5AA03D2237F13C0009CD413 /* DebugLib.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = DebugLib.c; sourceTree = ""; }; - A5AA03D4237F13C0009CD413 /* BasePciLibPciExpress.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = BasePciLibPciExpress.uni; sourceTree = ""; }; - A5AA03D5237F13C0009CD413 /* BasePciLibPciExpress.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = BasePciLibPciExpress.inf; sourceTree = ""; }; - A5AA03D6237F13C0009CD413 /* PciLib.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = PciLib.c; sourceTree = ""; }; - A5AA03D8237F13C0009CD413 /* UefiLibPrint.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = UefiLibPrint.c; sourceTree = ""; }; - A5AA03D9237F13C0009CD413 /* UefiLib.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = UefiLib.uni; sourceTree = ""; }; - A5AA03DA237F13C0009CD413 /* UefiLib.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = UefiLib.inf; sourceTree = ""; }; - A5AA03DB237F13C0009CD413 /* UefiDriverModel.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = UefiDriverModel.c; sourceTree = ""; }; - A5AA03DC237F13C0009CD413 /* UefiNotTiano.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = UefiNotTiano.c; sourceTree = ""; }; - A5AA03DD237F13C0009CD413 /* Console.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = Console.c; sourceTree = ""; }; - A5AA03DE237F13C0009CD413 /* UefiLib.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = UefiLib.c; sourceTree = ""; }; - A5AA03DF237F13C0009CD413 /* UefiLibInternal.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UefiLibInternal.h; sourceTree = ""; }; - A5AA03E0237F13C0009CD413 /* Acpi.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = Acpi.c; sourceTree = ""; }; - A5AA03E2237F13C0009CD413 /* DxeHstiLib.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = DxeHstiLib.uni; sourceTree = ""; }; - A5AA03E3237F13C0009CD413 /* HstiDxe.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = HstiDxe.c; sourceTree = ""; }; - A5AA03E4237F13C0009CD413 /* DxeHstiLib.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = DxeHstiLib.inf; sourceTree = ""; }; - A5AA03E5237F13C0009CD413 /* HstiAip.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = HstiAip.c; sourceTree = ""; }; - A5AA03E6237F13C0009CD413 /* HstiDxe.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HstiDxe.h; sourceTree = ""; }; - A5AA03E8237F13C0009CD413 /* PostCode.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = PostCode.c; sourceTree = ""; }; - A5AA03E9237F13C0009CD413 /* BasePostCodeLibDebug.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = BasePostCodeLibDebug.uni; sourceTree = ""; }; - A5AA03EA237F13C0009CD413 /* BasePostCodeLibDebug.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = BasePostCodeLibDebug.inf; sourceTree = ""; }; - A5AA03EC237F13C0009CD413 /* BaseS3StallLib.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = BaseS3StallLib.inf; sourceTree = ""; }; - A5AA03ED237F13C0009CD413 /* BaseS3StallLib.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = BaseS3StallLib.uni; sourceTree = ""; }; - A5AA03EE237F13C0009CD413 /* S3StallLib.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = S3StallLib.c; sourceTree = ""; }; - A5AA03F0237F13C0009CD413 /* SetMem64Wrapper.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SetMem64Wrapper.c; sourceTree = ""; }; - A5AA03F1237F13C0009CD413 /* ZeroMemWrapper.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ZeroMemWrapper.c; sourceTree = ""; }; - A5AA03F2237F13C0009CD413 /* BaseMemoryLibOptPei.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = BaseMemoryLibOptPei.uni; sourceTree = ""; }; - A5AA03F3237F13C0009CD413 /* CopyMemWrapper.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = CopyMemWrapper.c; sourceTree = ""; }; - A5AA03F4237F13C0009CD413 /* ScanMem64Wrapper.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ScanMem64Wrapper.c; sourceTree = ""; }; - A5AA03F5237F13C0009CD413 /* BaseMemoryLibOptPei.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = BaseMemoryLibOptPei.inf; sourceTree = ""; }; - A5AA03F7237F13C0009CD413 /* ZeroMem.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = ZeroMem.nasm; sourceTree = ""; }; - A5AA03F8237F13C0009CD413 /* CompareMem.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = CompareMem.nasm; sourceTree = ""; }; - A5AA03F9237F13C0009CD413 /* SetMem16.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = SetMem16.nasm; sourceTree = ""; }; - A5AA03FA237F13C0009CD413 /* ScanMem64.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = ScanMem64.nasm; sourceTree = ""; }; - A5AA03FB237F13C0009CD413 /* ScanMem32.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = ScanMem32.nasm; sourceTree = ""; }; - A5AA03FC237F13C0009CD413 /* SetMem.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = SetMem.nasm; sourceTree = ""; }; - A5AA03FD237F13C0009CD413 /* IsZeroBuffer.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = IsZeroBuffer.nasm; sourceTree = ""; }; - A5AA03FE237F13C0009CD413 /* SetMem64.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = SetMem64.nasm; sourceTree = ""; }; - A5AA03FF237F13C0009CD413 /* ScanMem8.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = ScanMem8.nasm; sourceTree = ""; }; - A5AA0400237F13C0009CD413 /* SetMem32.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = SetMem32.nasm; sourceTree = ""; }; - A5AA0401237F13C0009CD413 /* ScanMem16.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = ScanMem16.nasm; sourceTree = ""; }; - A5AA0402237F13C0009CD413 /* CopyMem.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = CopyMem.nasm; sourceTree = ""; }; - A5AA0403237F13C0009CD413 /* ScanMem8Wrapper.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ScanMem8Wrapper.c; sourceTree = ""; }; - A5AA0404237F13C0009CD413 /* SetMem32Wrapper.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SetMem32Wrapper.c; sourceTree = ""; }; - A5AA0406237F13C0009CD413 /* ZeroMem.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = ZeroMem.nasm; sourceTree = ""; }; - A5AA0407237F13C0009CD413 /* CompareMem.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = CompareMem.nasm; sourceTree = ""; }; - A5AA0408237F13C0009CD413 /* SetMem16.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = SetMem16.nasm; sourceTree = ""; }; - A5AA0409237F13C0009CD413 /* ScanMem64.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = ScanMem64.nasm; sourceTree = ""; }; - A5AA040A237F13C0009CD413 /* ScanMem32.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = ScanMem32.nasm; sourceTree = ""; }; - A5AA040B237F13C0009CD413 /* SetMem.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = SetMem.nasm; sourceTree = ""; }; - A5AA040C237F13C0009CD413 /* IsZeroBuffer.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = IsZeroBuffer.nasm; sourceTree = ""; }; - A5AA040D237F13C0009CD413 /* SetMem64.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = SetMem64.nasm; sourceTree = ""; }; - A5AA040E237F13C0009CD413 /* ScanMem8.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = ScanMem8.nasm; sourceTree = ""; }; - A5AA040F237F13C0009CD413 /* SetMem32.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = SetMem32.nasm; sourceTree = ""; }; - A5AA0410237F13C0009CD413 /* ScanMem16.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = ScanMem16.nasm; sourceTree = ""; }; - A5AA0411237F13C0009CD413 /* CopyMem.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = CopyMem.nasm; sourceTree = ""; }; - A5AA0412237F13C0009CD413 /* ScanMem32Wrapper.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ScanMem32Wrapper.c; sourceTree = ""; }; - A5AA0413237F13C0009CD413 /* IsZeroBufferWrapper.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = IsZeroBufferWrapper.c; sourceTree = ""; }; - A5AA0414237F13C0009CD413 /* SetMemWrapper.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SetMemWrapper.c; sourceTree = ""; }; - A5AA0415237F13C0009CD413 /* CompareMemWrapper.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = CompareMemWrapper.c; sourceTree = ""; }; - A5AA0416237F13C0009CD413 /* SetMem16Wrapper.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SetMem16Wrapper.c; sourceTree = ""; }; - A5AA0417237F13C0009CD413 /* MemLibGuid.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = MemLibGuid.c; sourceTree = ""; }; - A5AA0418237F13C0009CD413 /* MemLibInternals.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MemLibInternals.h; sourceTree = ""; }; - A5AA0419237F13C0009CD413 /* ScanMem16Wrapper.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ScanMem16Wrapper.c; sourceTree = ""; }; - A5AA041B237F13C0009CD413 /* UefiPciLibPciRootBridgeIo.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = UefiPciLibPciRootBridgeIo.uni; sourceTree = ""; }; - A5AA041C237F13C0009CD413 /* UefiPciLibPciRootBridgeIo.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = UefiPciLibPciRootBridgeIo.inf; sourceTree = ""; }; - A5AA041D237F13C0009CD413 /* PciLib.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = PciLib.c; sourceTree = ""; }; - A5AA041F237F13C0009CD413 /* PeimEntryPoint.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = PeimEntryPoint.c; sourceTree = ""; }; - A5AA0420237F13C0009CD413 /* PeimEntryPoint.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = PeimEntryPoint.uni; sourceTree = ""; }; - A5AA0421237F13C0009CD413 /* PeimEntryPoint.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = PeimEntryPoint.inf; sourceTree = ""; }; - A5AA0423237F13C0009CD413 /* SmiHandlerProfileLibNull.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SmiHandlerProfileLibNull.c; sourceTree = ""; }; - A5AA0424237F13C0009CD413 /* SmiHandlerProfileLibNull.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = SmiHandlerProfileLibNull.inf; sourceTree = ""; }; - A5AA0425237F13C0009CD413 /* SmiHandlerProfileLibNull.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = SmiHandlerProfileLibNull.uni; sourceTree = ""; }; - A5AA0427237F13C0009CD413 /* S3PciLib.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = S3PciLib.c; sourceTree = ""; }; - A5AA0428237F13C0009CD413 /* BaseS3PciLib.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = BaseS3PciLib.uni; sourceTree = ""; }; - A5AA0429237F13C0009CD413 /* BaseS3PciLib.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = BaseS3PciLib.inf; sourceTree = ""; }; - A5AA042B237F13C0009CD413 /* PrintLibInternal.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PrintLibInternal.h; sourceTree = ""; }; - A5AA042C237F13C0009CD413 /* PrintLib.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = PrintLib.c; sourceTree = ""; }; - A5AA042D237F13C0009CD413 /* BasePrintLib.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = BasePrintLib.inf; sourceTree = ""; }; - A5AA042E237F13C0009CD413 /* BasePrintLib.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = BasePrintLib.uni; sourceTree = ""; }; - A5AA042F237F13C0009CD413 /* PrintLibInternal.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = PrintLibInternal.c; sourceTree = ""; }; - A5AA0431237F13C0009CD413 /* IoLibMmioBuffer.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = IoLibMmioBuffer.c; sourceTree = ""; }; - A5AA0432237F13C0009CD413 /* IoLib.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = IoLib.c; sourceTree = ""; }; - A5AA0433237F13C0009CD413 /* IoHighLevel.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = IoHighLevel.c; sourceTree = ""; }; - A5AA0434237F13C0009CD413 /* PeiIoLibCpuIo.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = PeiIoLibCpuIo.uni; sourceTree = ""; }; - A5AA0435237F13C0009CD413 /* PeiIoLibCpuIo.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = PeiIoLibCpuIo.inf; sourceTree = ""; }; - A5AA0437237F13C0009CD413 /* BaseReportStatusCodeLib.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = BaseReportStatusCodeLib.c; sourceTree = ""; }; - A5AA0438237F13C0009CD413 /* BaseReportStatusCodeLibNull.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = BaseReportStatusCodeLibNull.uni; sourceTree = ""; }; - A5AA0439237F13C0009CD413 /* BaseReportStatusCodeLibNull.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = BaseReportStatusCodeLibNull.inf; sourceTree = ""; }; - A5AA043B237F13C0009CD413 /* DxeServicesTableLib.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = DxeServicesTableLib.c; sourceTree = ""; }; - A5AA043C237F13C0009CD413 /* DxeServicesTableLib.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = DxeServicesTableLib.inf; sourceTree = ""; }; - A5AA043D237F13C0009CD413 /* DxeServicesTableLib.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = DxeServicesTableLib.uni; sourceTree = ""; }; - A5AA043F237F13C0009CD413 /* BasePeCoffExtraActionLibNull.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = BasePeCoffExtraActionLibNull.inf; sourceTree = ""; }; - A5AA0440237F13C0009CD413 /* PeCoffExtraActionLibNull.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = PeCoffExtraActionLibNull.uni; sourceTree = ""; }; - A5AA0441237F13C0009CD413 /* PeCoffExtraActionLib.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = PeCoffExtraActionLib.c; sourceTree = ""; }; - A5AA0443237F13C0009CD413 /* UsbDxeLib.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = UsbDxeLib.c; sourceTree = ""; }; - A5AA0444237F13C0009CD413 /* UefiUsbLib.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = UefiUsbLib.inf; sourceTree = ""; }; - A5AA0445237F13C0009CD413 /* UefiUsbLib.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = UefiUsbLib.uni; sourceTree = ""; }; - A5AA0446237F13C0009CD413 /* Hid.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = Hid.c; sourceTree = ""; }; - A5AA0447237F13C0009CD413 /* UefiUsbLibInternal.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UefiUsbLibInternal.h; sourceTree = ""; }; - A5AA0448237F13C0009CD413 /* MdePkg.dec */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = MdePkg.dec; sourceTree = ""; }; - A5AA0449237F13C0009CD413 /* MdePkg.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = MdePkg.uni; sourceTree = ""; }; - A5AA044A237F13C0009CD413 /* MdePkgExtra.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = MdePkgExtra.uni; sourceTree = ""; }; - A5AA044B237F13C0009CD413 /* MdePkg.dsc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = MdePkg.dsc; sourceTree = ""; }; - A5AA0778237F13CD009CD413 /* PcAtChipsetPkg.dec */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = PcAtChipsetPkg.dec; sourceTree = ""; }; - A5AA0779237F13CD009CD413 /* PcAtChipsetPkg.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = PcAtChipsetPkg.uni; sourceTree = ""; }; - A5AA077B237F13CD009CD413 /* IsaAcpi.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = IsaAcpi.c; sourceTree = ""; }; - A5AA077C237F13CD009CD413 /* IsaAcpiExtra.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = IsaAcpiExtra.uni; sourceTree = ""; }; - A5AA077D237F13CD009CD413 /* PcatIsaAcpi.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PcatIsaAcpi.h; sourceTree = ""; }; - A5AA077E237F13CD009CD413 /* ComponentName.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ComponentName.c; sourceTree = ""; }; - A5AA077F237F13CD009CD413 /* IsaAcpi.c.bak */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = IsaAcpi.c.bak; sourceTree = ""; }; - A5AA0780237F13CD009CD413 /* PcatIsaAcpi.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = PcatIsaAcpi.c; sourceTree = ""; }; - A5AA0781237F13CD009CD413 /* IsaAcpi.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = IsaAcpi.inf; sourceTree = ""; }; - A5AA0782237F13CD009CD413 /* IsaAcpi.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = IsaAcpi.uni; sourceTree = ""; }; - A5AA0784237F13CD009CD413 /* HpetTimerDxe.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = HpetTimerDxe.uni; sourceTree = ""; }; - A5AA0785237F13CD009CD413 /* HpetTimer.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = HpetTimer.c; sourceTree = ""; }; - A5AA0786237F13CD009CD413 /* HpetTimerDxeExtra.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = HpetTimerDxeExtra.uni; sourceTree = ""; }; - A5AA0787237F13CD009CD413 /* HpetTimerDxe.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = HpetTimerDxe.inf; sourceTree = ""; }; - A5AA0788237F13CD009CD413 /* PcAtChipsetPkg.dsc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = PcAtChipsetPkg.dsc; sourceTree = ""; }; - A5AA078B237F13CD009CD413 /* IoApicLib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IoApicLib.h; sourceTree = ""; }; - A5AA078D237F13CD009CD413 /* IoApic.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IoApic.h; sourceTree = ""; }; - A5AA078E237F13CD009CD413 /* Hpet.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Hpet.h; sourceTree = ""; }; - A5AA0790237F13CD009CD413 /* PcAtChipsetTokenSpace.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PcAtChipsetTokenSpace.h; sourceTree = ""; }; - A5AA0794237F13CD009CD413 /* IdeController.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = IdeController.c; sourceTree = ""; }; - A5AA0795237F13CD009CD413 /* IdeControllerExtra.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = IdeControllerExtra.uni; sourceTree = ""; }; - A5AA0796237F13CD009CD413 /* IdeControllerDxe.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = IdeControllerDxe.inf; sourceTree = ""; }; - A5AA0797237F13CD009CD413 /* ComponentName.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ComponentName.c; sourceTree = ""; }; - A5AA0798237F13CD009CD413 /* IdeController.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = IdeController.uni; sourceTree = ""; }; - A5AA0799237F13CD009CD413 /* IdeController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IdeController.h; sourceTree = ""; }; - A5AA079C237F13CD009CD413 /* DxeAcpiTimerLib.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = DxeAcpiTimerLib.uni; sourceTree = ""; }; - A5AA079D237F13CD009CD413 /* DxeAcpiTimerLib.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = DxeAcpiTimerLib.inf; sourceTree = ""; }; - A5AA079E237F13CD009CD413 /* BaseAcpiTimerLib.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = BaseAcpiTimerLib.uni; sourceTree = ""; }; - A5AA079F237F13CD009CD413 /* BaseAcpiTimerLib.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = BaseAcpiTimerLib.inf; sourceTree = ""; }; - A5AA07A0237F13CD009CD413 /* BaseAcpiTimerLib.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = BaseAcpiTimerLib.c; sourceTree = ""; }; - A5AA07A1237F13CD009CD413 /* PeiAcpiTimerLib.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = PeiAcpiTimerLib.inf; sourceTree = ""; }; - A5AA07A2237F13CD009CD413 /* PeiAcpiTimerLib.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = PeiAcpiTimerLib.uni; sourceTree = ""; }; - A5AA07A3237F13CD009CD413 /* DxeAcpiTimerLib.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = DxeAcpiTimerLib.c; sourceTree = ""; }; - A5AA07A4237F13CD009CD413 /* PeiAcpiTimerLib.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = PeiAcpiTimerLib.c; sourceTree = ""; }; - A5AA07A5237F13CD009CD413 /* AcpiTimerLib.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = AcpiTimerLib.c; sourceTree = ""; }; - A5AA07A7237F13CD009CD413 /* BaseIoApicLib.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = BaseIoApicLib.uni; sourceTree = ""; }; - A5AA07A8237F13CD009CD413 /* BaseIoApicLib.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = BaseIoApicLib.inf; sourceTree = ""; }; - A5AA07A9237F13CD009CD413 /* IoApicLib.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = IoApicLib.c; sourceTree = ""; }; - A5AA07AB237F13CD009CD413 /* ResetSystemLib.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ResetSystemLib.c; sourceTree = ""; }; - A5AA07AC237F13CD009CD413 /* ResetSystemLib.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = ResetSystemLib.uni; sourceTree = ""; }; - A5AA07AD237F13CD009CD413 /* ResetSystemLib.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = ResetSystemLib.inf; sourceTree = ""; }; - A5AA07AF237F13CD009CD413 /* SerialPortLib.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SerialPortLib.c; sourceTree = ""; }; - A5AA07B0237F13CD009CD413 /* SerialIoLib.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = SerialIoLib.inf; sourceTree = ""; }; - A5AA07B1237F13CD009CD413 /* PcAtSerialPortLib.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = PcAtSerialPortLib.uni; sourceTree = ""; }; - A5AA07B3237F13CD009CD413 /* Legacy8259Extra.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Legacy8259Extra.uni; sourceTree = ""; }; - A5AA07B4237F13CD009CD413 /* 8259.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = 8259.c; sourceTree = ""; }; - A5AA07B5237F13CD009CD413 /* 8259.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = 8259.inf; sourceTree = ""; }; - A5AA07B6237F13CD009CD413 /* Legacy8259.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Legacy8259.uni; sourceTree = ""; }; - A5AA07B7237F13CD009CD413 /* 8259.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = 8259.h; sourceTree = ""; }; - A5AA07B8237F13CD009CD413 /* PcAtChipsetPkgExtra.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = PcAtChipsetPkgExtra.uni; sourceTree = ""; }; - A5AA07BA237F13CD009CD413 /* Timer.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = Timer.c; sourceTree = ""; }; - A5AA07BB237F13CD009CD413 /* Timer.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Timer.uni; sourceTree = ""; }; - A5AA07BC237F13CD009CD413 /* 8254Timer.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = 8254Timer.inf; sourceTree = ""; }; - A5AA07BD237F13CD009CD413 /* Timer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Timer.h; sourceTree = ""; }; - A5AA07BE237F13CD009CD413 /* TimerExtra.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = TimerExtra.uni; sourceTree = ""; }; - A5AA07C0237F13CD009CD413 /* PcatRealTimeClockRuntimeDxe.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = PcatRealTimeClockRuntimeDxe.inf; sourceTree = ""; }; - A5AA07C1237F13CD009CD413 /* PcRtc.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = PcRtc.uni; sourceTree = ""; }; - A5AA07C2237F13CD009CD413 /* PcRtc.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = PcRtc.c; sourceTree = ""; }; - A5AA07C3237F13CD009CD413 /* PcRtcEntry.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = PcRtcEntry.c; sourceTree = ""; }; - A5AA07C4237F13CD009CD413 /* PcRtcExtra.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = PcRtcExtra.uni; sourceTree = ""; }; - A5AA07C5237F13CD009CD413 /* PcRtc.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PcRtc.h; sourceTree = ""; }; - A5AAF293237F1321009CD413 /* PlatformBdsLib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PlatformBdsLib.h; sourceTree = ""; }; - A5AAF294237F1321009CD413 /* GenericBdsLib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GenericBdsLib.h; sourceTree = ""; }; - A5AAF296237F1321009CD413 /* ExitPmAuth.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ExitPmAuth.h; sourceTree = ""; }; - A5AAF297237F1321009CD413 /* IsaAcpi.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IsaAcpi.h; sourceTree = ""; }; - A5AAF298237F1321009CD413 /* OEMBadging.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OEMBadging.h; sourceTree = ""; }; - A5AAF299237F1321009CD413 /* VgaMiniPort.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = VgaMiniPort.h; sourceTree = ""; }; - A5AAF29A237F1321009CD413 /* IsaIo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IsaIo.h; sourceTree = ""; }; - A5AAF29C237F1321009CD413 /* LegacyBios.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LegacyBios.h; sourceTree = ""; }; - A5AAF29D237F1321009CD413 /* IntelFrameworkModulePkgTokenSpace.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IntelFrameworkModulePkgTokenSpace.h; sourceTree = ""; }; - A5AAF29E237F1321009CD413 /* BlockIoVendor.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BlockIoVendor.h; sourceTree = ""; }; - A5AAF29F237F1321009CD413 /* HdBootVariable.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HdBootVariable.h; sourceTree = ""; }; - A5AAF2A0237F1321009CD413 /* BdsLibHii.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BdsLibHii.h; sourceTree = ""; }; - A5AAF2A1237F1321009CD413 /* BdsHii.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BdsHii.h; sourceTree = ""; }; - A5AAF2A2237F1321009CD413 /* TianoDecompress.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TianoDecompress.h; sourceTree = ""; }; - A5AAF2A3237F1321009CD413 /* DataHubStatusCodeRecord.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DataHubStatusCodeRecord.h; sourceTree = ""; }; - A5AAF2A4237F1321009CD413 /* AcpiVariableCompatibility.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AcpiVariableCompatibility.h; sourceTree = ""; }; - A5AAF2A5237F1321009CD413 /* LegacyDevOrder.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LegacyDevOrder.h; sourceTree = ""; }; - A5AAF2A6237F1321009CD413 /* LastEnumLang.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LastEnumLang.h; sourceTree = ""; }; - A5AAF2A7237F1321009CD413 /* CapsuleDataFile.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CapsuleDataFile.h; sourceTree = ""; }; - A5AAF2A8237F1321009CD413 /* IntelFrameworkModulePkgExtra.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = IntelFrameworkModulePkgExtra.uni; sourceTree = ""; }; - A5AAF2A9237F1321009CD413 /* IntelFrameworkModulePkg.dsc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = IntelFrameworkModulePkg.dsc; sourceTree = ""; }; - A5AAF2AA237F1321009CD413 /* IntelFrameworkModulePkg.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = IntelFrameworkModulePkg.uni; sourceTree = ""; }; - A5AAF2AB237F1321009CD413 /* IntelFrameworkModulePkg.dec */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = IntelFrameworkModulePkg.dec; sourceTree = ""; }; - A5AAF333237F13A5009CD413 /* IntelFrameworkPkgExtra.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = IntelFrameworkPkgExtra.uni; sourceTree = ""; }; - A5AAF335237F13A5009CD413 /* FrameworkSmm.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FrameworkSmm.h; sourceTree = ""; }; - A5AAF336237F13A5009CD413 /* FrameworkDxe.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FrameworkDxe.h; sourceTree = ""; }; - A5AAF338237F13A5009CD413 /* BootScript.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BootScript.h; sourceTree = ""; }; - A5AAF339237F13A5009CD413 /* FirmwareVolumeImageFormat.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FirmwareVolumeImageFormat.h; sourceTree = ""; }; - A5AAF33A237F13A5009CD413 /* SmmCis.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SmmCis.h; sourceTree = ""; }; - A5AAF33B237F13A5009CD413 /* FrameworkInternalFormRepresentation.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FrameworkInternalFormRepresentation.h; sourceTree = ""; }; - A5AAF33C237F13A5009CD413 /* Hob.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Hob.h; sourceTree = ""; }; - A5AAF33D237F13A5009CD413 /* PeiCis.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PeiCis.h; sourceTree = ""; }; - A5AAF33E237F13A5009CD413 /* FirmwareVolumeHeader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FirmwareVolumeHeader.h; sourceTree = ""; }; - A5AAF33F237F13A5009CD413 /* StatusCode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = StatusCode.h; sourceTree = ""; }; - A5AAF340237F13A5009CD413 /* DxeCis.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DxeCis.h; sourceTree = ""; }; - A5AAF342237F13A5009CD413 /* SmmBase.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SmmBase.h; sourceTree = ""; }; - A5AAF343237F13A5009CD413 /* SmmUsbDispatch.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SmmUsbDispatch.h; sourceTree = ""; }; - A5AAF344237F13A5009CD413 /* SmmIchnDispatch.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SmmIchnDispatch.h; sourceTree = ""; }; - A5AAF345237F13A5009CD413 /* LegacyInterrupt.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LegacyInterrupt.h; sourceTree = ""; }; - A5AAF346237F13A5009CD413 /* LegacyBios.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LegacyBios.h; sourceTree = ""; }; - A5AAF347237F13A5009CD413 /* SmmSxDispatch.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SmmSxDispatch.h; sourceTree = ""; }; - A5AAF348237F13A5009CD413 /* SmmGpiDispatch.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SmmGpiDispatch.h; sourceTree = ""; }; - A5AAF349237F13A5009CD413 /* AcpiS3Save.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AcpiS3Save.h; sourceTree = ""; }; - A5AAF34A237F13A5009CD413 /* FrameworkMpService.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FrameworkMpService.h; sourceTree = ""; }; - A5AAF34B237F13A5009CD413 /* FrameworkFirmwareVolumeBlock.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FrameworkFirmwareVolumeBlock.h; sourceTree = ""; }; - A5AAF34C237F13A5009CD413 /* SmmPowerButtonDispatch.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SmmPowerButtonDispatch.h; sourceTree = ""; }; - A5AAF34D237F13A5009CD413 /* FrameworkFormCallback.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FrameworkFormCallback.h; sourceTree = ""; }; - A5AAF34E237F13A5009CD413 /* SmmControl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SmmControl.h; sourceTree = ""; }; - A5AAF34F237F13A5009CD413 /* SmmCpuSaveState.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SmmCpuSaveState.h; sourceTree = ""; }; - A5AAF350237F13A5009CD413 /* SmmStandbyButtonDispatch.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SmmStandbyButtonDispatch.h; sourceTree = ""; }; - A5AAF351237F13A5009CD413 /* SectionExtraction.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SectionExtraction.h; sourceTree = ""; }; - A5AAF352237F13A5009CD413 /* LegacyBiosPlatform.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LegacyBiosPlatform.h; sourceTree = ""; }; - A5AAF353237F13A5009CD413 /* FrameworkFormBrowser.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FrameworkFormBrowser.h; sourceTree = ""; }; - A5AAF354237F13A5009CD413 /* SmmAccess.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SmmAccess.h; sourceTree = ""; }; - A5AAF355237F13A5009CD413 /* LegacyRegion.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LegacyRegion.h; sourceTree = ""; }; - A5AAF356237F13A5009CD413 /* BootScriptSave.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BootScriptSave.h; sourceTree = ""; }; - A5AAF357237F13A5009CD413 /* DataHub.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DataHub.h; sourceTree = ""; }; - A5AAF358237F13A5009CD413 /* SmmSwDispatch.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SmmSwDispatch.h; sourceTree = ""; }; - A5AAF359237F13A5009CD413 /* SmmPeriodicTimerDispatch.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SmmPeriodicTimerDispatch.h; sourceTree = ""; }; - A5AAF35A237F13A5009CD413 /* Legacy8259.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Legacy8259.h; sourceTree = ""; }; - A5AAF35B237F13A5009CD413 /* AcpiSupport.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AcpiSupport.h; sourceTree = ""; }; - A5AAF35C237F13A5009CD413 /* SmmCpuIo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SmmCpuIo.h; sourceTree = ""; }; - A5AAF35D237F13A5009CD413 /* CpuIo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CpuIo.h; sourceTree = ""; }; - A5AAF35E237F13A5009CD413 /* FirmwareVolume.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FirmwareVolume.h; sourceTree = ""; }; - A5AAF35F237F13A5009CD413 /* FrameworkHii.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FrameworkHii.h; sourceTree = ""; }; - A5AAF360237F13A5009CD413 /* FrameworkPei.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FrameworkPei.h; sourceTree = ""; }; - A5AAF362237F13A5009CD413 /* SmramMemoryReserve.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SmramMemoryReserve.h; sourceTree = ""; }; - A5AAF363237F13A5009CD413 /* DataHubRecords.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DataHubRecords.h; sourceTree = ""; }; - A5AAF364237F13A5009CD413 /* SmmCommunicate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SmmCommunicate.h; sourceTree = ""; }; - A5AAF365237F13A5009CD413 /* BlockIo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BlockIo.h; sourceTree = ""; }; - A5AAF366237F13A5009CD413 /* Capsule.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Capsule.h; sourceTree = ""; }; - A5AAF367237F13A5009CD413 /* FirmwareFileSystem.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FirmwareFileSystem.h; sourceTree = ""; }; - A5AAF369237F13A5009CD413 /* PciCfg.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PciCfg.h; sourceTree = ""; }; - A5AAF36A237F13A5009CD413 /* Security.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Security.h; sourceTree = ""; }; - A5AAF36B237F13A5009CD413 /* S3Resume.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = S3Resume.h; sourceTree = ""; }; - A5AAF36C237F13A5009CD413 /* BootScriptExecuter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BootScriptExecuter.h; sourceTree = ""; }; - A5AAF36D237F13A5009CD413 /* ReadOnlyVariable.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ReadOnlyVariable.h; sourceTree = ""; }; - A5AAF36E237F13A5009CD413 /* SectionExtraction.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SectionExtraction.h; sourceTree = ""; }; - A5AAF36F237F13A5009CD413 /* FvLoadFile.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FvLoadFile.h; sourceTree = ""; }; - A5AAF370237F13A5009CD413 /* Smbus.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Smbus.h; sourceTree = ""; }; - A5AAF371237F13A5009CD413 /* FindFv.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FindFv.h; sourceTree = ""; }; - A5AAF372237F13A5009CD413 /* IntelFrameworkPkg.dsc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = IntelFrameworkPkg.dsc; sourceTree = ""; }; - A5AAF373237F13A5009CD413 /* IntelFrameworkPkg.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = IntelFrameworkPkg.uni; sourceTree = ""; }; - A5AAF374237F13A5009CD413 /* IntelFrameworkPkg.dec */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = IntelFrameworkPkg.dec; sourceTree = ""; }; - A5AAF378237F13B0009CD413 /* Runtime.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = Runtime.c; sourceTree = ""; }; - A5AAF379237F13B0009CD413 /* RuntimeDxe.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = RuntimeDxe.inf; sourceTree = ""; }; - A5AAF37A237F13B0009CD413 /* RuntimeDxe.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = RuntimeDxe.uni; sourceTree = ""; }; - A5AAF37B237F13B0009CD413 /* Crc32.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = Crc32.c; sourceTree = ""; }; - A5AAF37C237F13B0009CD413 /* Runtime.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Runtime.h; sourceTree = ""; }; - A5AAF37D237F13B0009CD413 /* RuntimeDxeExtra.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = RuntimeDxeExtra.uni; sourceTree = ""; }; - A5AAF380237F13B0009CD413 /* Stall.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = Stall.c; sourceTree = ""; }; - A5AAF381237F13B0009CD413 /* MemoryProtection.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = MemoryProtection.c; sourceTree = ""; }; - A5AAF382237F13B0009CD413 /* DebugImageInfo.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = DebugImageInfo.c; sourceTree = ""; }; - A5AAF383237F13B0009CD413 /* InstallConfigurationTable.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = InstallConfigurationTable.c; sourceTree = ""; }; - A5AAF384237F13B0009CD413 /* SetWatchdogTimer.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SetWatchdogTimer.c; sourceTree = ""; }; - A5AAF385237F13B0009CD413 /* PropertiesTable.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = PropertiesTable.c; sourceTree = ""; }; - A5AAF386237F13B0009CD413 /* MemoryAttributesTable.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = MemoryAttributesTable.c; sourceTree = ""; }; - A5AAF388237F13B0009CD413 /* Handle.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = Handle.c; sourceTree = ""; }; - A5AAF389237F13B0009CD413 /* Handle.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Handle.h; sourceTree = ""; }; - A5AAF38A237F13B0009CD413 /* Locate.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = Locate.c; sourceTree = ""; }; - A5AAF38B237F13B0009CD413 /* DriverSupport.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = DriverSupport.c; sourceTree = ""; }; - A5AAF38C237F13B0009CD413 /* Notify.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = Notify.c; sourceTree = ""; }; - A5AAF38D237F13B0009CD413 /* DxeMain.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = DxeMain.inf; sourceTree = ""; }; - A5AAF38F237F13B0009CD413 /* FwVolBlock.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = FwVolBlock.c; sourceTree = ""; }; - A5AAF390237F13B0009CD413 /* FwVolBlock.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FwVolBlock.h; sourceTree = ""; }; - A5AAF392237F13B0009CD413 /* Dispatcher.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = Dispatcher.c; sourceTree = ""; }; - A5AAF393237F13B0009CD413 /* Dependency.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = Dependency.c; sourceTree = ""; }; - A5AAF395237F13B0009CD413 /* FwVolAttrib.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = FwVolAttrib.c; sourceTree = ""; }; - A5AAF396237F13B0009CD413 /* FwVolRead.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = FwVolRead.c; sourceTree = ""; }; - A5AAF397237F13B0009CD413 /* FwVolDriver.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FwVolDriver.h; sourceTree = ""; }; - A5AAF398237F13B0009CD413 /* Ffs.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = Ffs.c; sourceTree = ""; }; - A5AAF399237F13B0009CD413 /* FwVolWrite.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = FwVolWrite.c; sourceTree = ""; }; - A5AAF39A237F13B0009CD413 /* FwVol.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = FwVol.c; sourceTree = ""; }; - A5AAF39C237F13B0009CD413 /* DxeProtocolNotify.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = DxeProtocolNotify.c; sourceTree = ""; }; - A5AAF39D237F13B0009CD413 /* DxeMain.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = DxeMain.c; sourceTree = ""; }; - A5AAF39F237F13B0009CD413 /* Library.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = Library.c; sourceTree = ""; }; - A5AAF3A1237F13B0009CD413 /* Gcd.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = Gcd.c; sourceTree = ""; }; - A5AAF3A2237F13B0009CD413 /* Gcd.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Gcd.h; sourceTree = ""; }; - A5AAF3A4237F13B0009CD413 /* Image.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = Image.c; sourceTree = ""; }; - A5AAF3A5237F13B0009CD413 /* Image.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Image.h; sourceTree = ""; }; - A5AAF3A6237F13B0009CD413 /* DxeMain.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DxeMain.h; sourceTree = ""; }; - A5AAF3A7237F13B0009CD413 /* DxeCore.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = DxeCore.uni; sourceTree = ""; }; - A5AAF3A9237F13B0009CD413 /* CoreSectionExtraction.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = CoreSectionExtraction.c; sourceTree = ""; }; - A5AAF3AB237F13B0009CD413 /* Timer.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = Timer.c; sourceTree = ""; }; - A5AAF3AC237F13B0009CD413 /* Event.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Event.h; sourceTree = ""; }; - A5AAF3AD237F13B0009CD413 /* Event.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = Event.c; sourceTree = ""; }; - A5AAF3AE237F13B0009CD413 /* Tpl.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = Tpl.c; sourceTree = ""; }; - A5AAF3AF237F13B0009CD413 /* DxeCoreExtra.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = DxeCoreExtra.uni; sourceTree = ""; }; - A5AAF3B1237F13B0009CD413 /* HeapGuard.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = HeapGuard.c; sourceTree = ""; }; - A5AAF3B2237F13B0009CD413 /* MemData.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = MemData.c; sourceTree = ""; }; - A5AAF3B3237F13B0009CD413 /* MemoryProfileRecord.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = MemoryProfileRecord.c; sourceTree = ""; }; - A5AAF3B4237F13B0009CD413 /* Page.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = Page.c; sourceTree = ""; }; - A5AAF3B5237F13B0009CD413 /* HeapGuard.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HeapGuard.h; sourceTree = ""; }; - A5AAF3B6237F13B0009CD413 /* Imem.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Imem.h; sourceTree = ""; }; - A5AAF3B7237F13B0009CD413 /* Pool.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = Pool.c; sourceTree = ""; }; - A5AAF3B9237F13B0009CD413 /* Smi.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = Smi.c; sourceTree = ""; }; - A5AAF3BA237F13B0009CD413 /* SmiHandlerProfile.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SmiHandlerProfile.c; sourceTree = ""; }; - A5AAF3BB237F13B0009CD413 /* HeapGuard.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = HeapGuard.c; sourceTree = ""; }; - A5AAF3BC237F13B0009CD413 /* PiSmmCore.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = PiSmmCore.c; sourceTree = ""; }; - A5AAF3BD237F13B0009CD413 /* Dispatcher.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = Dispatcher.c; sourceTree = ""; }; - A5AAF3BE237F13B0009CD413 /* PiSmmIplExtra.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = PiSmmIplExtra.uni; sourceTree = ""; }; - A5AAF3BF237F13B0009CD413 /* SmramProfileRecord.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SmramProfileRecord.c; sourceTree = ""; }; - A5AAF3C0237F13B0009CD413 /* Handle.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = Handle.c; sourceTree = ""; }; - A5AAF3C1237F13B0009CD413 /* PiSmmCoreExtra.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = PiSmmCoreExtra.uni; sourceTree = ""; }; - A5AAF3C2237F13B0009CD413 /* InstallConfigurationTable.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = InstallConfigurationTable.c; sourceTree = ""; }; - A5AAF3C3237F13B0009CD413 /* PiSmmCorePrivateData.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PiSmmCorePrivateData.h; sourceTree = ""; }; - A5AAF3C4237F13B0009CD413 /* PiSmmIpl.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = PiSmmIpl.c; sourceTree = ""; }; - A5AAF3C5237F13B0009CD413 /* Page.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = Page.c; sourceTree = ""; }; - A5AAF3C6237F13B0009CD413 /* PiSmmCore.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PiSmmCore.h; sourceTree = ""; }; - A5AAF3C7237F13B0009CD413 /* HeapGuard.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HeapGuard.h; sourceTree = ""; }; - A5AAF3C8237F13B0009CD413 /* PiSmmCore.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = PiSmmCore.inf; sourceTree = ""; }; - A5AAF3C9237F13B0009CD413 /* Locate.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = Locate.c; sourceTree = ""; }; - A5AAF3CA237F13B0009CD413 /* Dependency.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = Dependency.c; sourceTree = ""; }; - A5AAF3CB237F13B0009CD413 /* Pool.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = Pool.c; sourceTree = ""; }; - A5AAF3CC237F13B0009CD413 /* PiSmmCore.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = PiSmmCore.uni; sourceTree = ""; }; - A5AAF3CD237F13B0009CD413 /* MemoryAttributesTable.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = MemoryAttributesTable.c; sourceTree = ""; }; - A5AAF3CE237F13B0009CD413 /* PiSmmIpl.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = PiSmmIpl.uni; sourceTree = ""; }; - A5AAF3CF237F13B0009CD413 /* Notify.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = Notify.c; sourceTree = ""; }; - A5AAF3D0237F13B0009CD413 /* PiSmmIpl.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = PiSmmIpl.inf; sourceTree = ""; }; - A5AAF3D2237F13B0009CD413 /* PeiMain.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = PeiMain.inf; sourceTree = ""; }; - A5AAF3D4237F13B0009CD413 /* PciCfg2.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = PciCfg2.c; sourceTree = ""; }; - A5AAF3D6237F13B0009CD413 /* MemoryServices.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = MemoryServices.c; sourceTree = ""; }; - A5AAF3D8237F13B0009CD413 /* Hob.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = Hob.c; sourceTree = ""; }; - A5AAF3DA237F13B0009CD413 /* Security.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = Security.c; sourceTree = ""; }; - A5AAF3DC237F13B0009CD413 /* Reset.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = Reset.c; sourceTree = ""; }; - A5AAF3DE237F13B0009CD413 /* Dispatcher.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = Dispatcher.c; sourceTree = ""; }; - A5AAF3E0237F13B0009CD413 /* FwVol.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FwVol.h; sourceTree = ""; }; - A5AAF3E1237F13B0009CD413 /* FwVol.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = FwVol.c; sourceTree = ""; }; - A5AAF3E3237F13B0009CD413 /* Dependency.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Dependency.h; sourceTree = ""; }; - A5AAF3E4237F13B0009CD413 /* Dependency.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = Dependency.c; sourceTree = ""; }; - A5AAF3E6237F13B0009CD413 /* Image.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = Image.c; sourceTree = ""; }; - A5AAF3E8237F13B0009CD413 /* PeiMain.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = PeiMain.c; sourceTree = ""; }; - A5AAF3EA237F13B0009CD413 /* StatusCode.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = StatusCode.c; sourceTree = ""; }; - A5AAF3EC237F13B0009CD413 /* BootMode.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = BootMode.c; sourceTree = ""; }; - A5AAF3EE237F13B0009CD413 /* CpuIo.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = CpuIo.c; sourceTree = ""; }; - A5AAF3F0237F13B0009CD413 /* Ppi.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = Ppi.c; sourceTree = ""; }; - A5AAF3F1237F13B0009CD413 /* PeiCoreExtra.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = PeiCoreExtra.uni; sourceTree = ""; }; - A5AAF3F2237F13B0009CD413 /* PeiMain.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PeiMain.h; sourceTree = ""; }; - A5AAF3F3237F13B0009CD413 /* PeiCore.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = PeiCore.uni; sourceTree = ""; }; - A5AAF3F5237F13B0009CD413 /* DxeIpl.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = DxeIpl.uni; sourceTree = ""; }; - A5AAF3F7237F13B0009CD413 /* DxeLoadFunc.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = DxeLoadFunc.c; sourceTree = ""; }; - A5AAF3F8237F13B0009CD413 /* DxeLoad.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = DxeLoad.c; sourceTree = ""; }; - A5AAF3F9237F13B0009CD413 /* DxeIpl.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = DxeIpl.inf; sourceTree = ""; }; - A5AAF3FB237F13B0009CD413 /* VirtualMemory.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = VirtualMemory.c; sourceTree = ""; }; - A5AAF3FC237F13B0009CD413 /* VirtualMemory.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = VirtualMemory.h; sourceTree = ""; }; - A5AAF3FD237F13B0009CD413 /* DxeLoadFunc.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = DxeLoadFunc.c; sourceTree = ""; }; - A5AAF3FE237F13B0009CD413 /* DxeIpl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DxeIpl.h; sourceTree = ""; }; - A5AAF400237F13B0009CD413 /* IdtVectorAsm.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = IdtVectorAsm.nasm; sourceTree = ""; }; - A5AAF401237F13B0009CD413 /* DxeLoadFunc.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = DxeLoadFunc.c; sourceTree = ""; }; - A5AAF403237F13B0009CD413 /* DxeLoadFunc.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = DxeLoadFunc.c; sourceTree = ""; }; - A5AAF404237F13B0009CD413 /* DxeIplExtra.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = DxeIplExtra.uni; sourceTree = ""; }; - A5AAF407237F13B0009CD413 /* DebugPort.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = DebugPort.c; sourceTree = ""; }; - A5AAF408237F13B0009CD413 /* DebugPortDxeExtra.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = DebugPortDxeExtra.uni; sourceTree = ""; }; - A5AAF409237F13B0009CD413 /* DebugPortDxe.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = DebugPortDxe.inf; sourceTree = ""; }; - A5AAF40A237F13B0009CD413 /* ComponentName.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ComponentName.c; sourceTree = ""; }; - A5AAF40B237F13B0009CD413 /* DebugPortDxe.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = DebugPortDxe.uni; sourceTree = ""; }; - A5AAF40C237F13B0009CD413 /* DebugPort.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DebugPort.h; sourceTree = ""; }; - A5AAF40E237F13B0009CD413 /* EsrtFmpDebugPrint.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = EsrtFmpDebugPrint.c; sourceTree = ""; }; - A5AAF40F237F13B0009CD413 /* EsrtFmpDxeExtra.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = EsrtFmpDxeExtra.uni; sourceTree = ""; }; - A5AAF410237F13B0009CD413 /* EsrtFmpDxe.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = EsrtFmpDxe.inf; sourceTree = ""; }; - A5AAF411237F13B0009CD413 /* EsrtFmpDxe.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = EsrtFmpDxe.uni; sourceTree = ""; }; - A5AAF412237F13B0009CD413 /* EsrtFmp.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = EsrtFmp.c; sourceTree = ""; }; - A5AAF415237F13B0009CD413 /* PlDebugSupport.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PlDebugSupport.h; sourceTree = ""; }; - A5AAF416237F13B0009CD413 /* PlDebugSupportX64.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = PlDebugSupportX64.c; sourceTree = ""; }; - A5AAF417237F13B0009CD413 /* AsmFuncs.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = AsmFuncs.nasm; sourceTree = ""; }; - A5AAF418237F13B0009CD413 /* DebugSupportDxeExtra.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = DebugSupportDxeExtra.uni; sourceTree = ""; }; - A5AAF419237F13B0009CD413 /* DebugSupport.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = DebugSupport.c; sourceTree = ""; }; - A5AAF41B237F13B0009CD413 /* PlDebugSupport.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PlDebugSupport.h; sourceTree = ""; }; - A5AAF41C237F13B0009CD413 /* AsmFuncs.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = AsmFuncs.nasm; sourceTree = ""; }; - A5AAF41D237F13B0009CD413 /* PlDebugSupport.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = PlDebugSupport.c; sourceTree = ""; }; - A5AAF41E237F13B0009CD413 /* PlDebugSupportIa32.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = PlDebugSupportIa32.c; sourceTree = ""; }; - A5AAF41F237F13B0009CD413 /* DebugSupport.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DebugSupport.h; sourceTree = ""; }; - A5AAF420237F13B0009CD413 /* DebugSupportDxe.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = DebugSupportDxe.uni; sourceTree = ""; }; - A5AAF421237F13B0009CD413 /* DebugSupportDxe.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = DebugSupportDxe.inf; sourceTree = ""; }; - A5AAF424237F13B0009CD413 /* AmlNamespace.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = AmlNamespace.c; sourceTree = ""; }; - A5AAF425237F13B0009CD413 /* AcpiTableDxeExtra.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = AcpiTableDxeExtra.uni; sourceTree = ""; }; - A5AAF426237F13B0009CD413 /* AcpiTableProtocol.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = AcpiTableProtocol.c; sourceTree = ""; }; - A5AAF427237F13B0009CD413 /* AmlOption.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = AmlOption.c; sourceTree = ""; }; - A5AAF428237F13B0009CD413 /* AmlString.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = AmlString.c; sourceTree = ""; }; - A5AAF429237F13B0009CD413 /* AcpiSdt.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = AcpiSdt.c; sourceTree = ""; }; - A5AAF42A237F13B0009CD413 /* AcpiTable.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = AcpiTable.c; sourceTree = ""; }; - A5AAF42B237F13B0009CD413 /* AcpiTableDxe.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = AcpiTableDxe.uni; sourceTree = ""; }; - A5AAF42C237F13B0009CD413 /* AmlChild.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = AmlChild.c; sourceTree = ""; }; - A5AAF42D237F13B0009CD413 /* AcpiTableDxe.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = AcpiTableDxe.inf; sourceTree = ""; }; - A5AAF42E237F13B0009CD413 /* AcpiSdt.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AcpiSdt.h; sourceTree = ""; }; - A5AAF42F237F13B0009CD413 /* Aml.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = Aml.c; sourceTree = ""; }; - A5AAF430237F13B0009CD413 /* AcpiTable.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AcpiTable.h; sourceTree = ""; }; - A5AAF432237F13B0009CD413 /* AcpiS3ContextSave.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = AcpiS3ContextSave.c; sourceTree = ""; }; - A5AAF433237F13B0009CD413 /* S3SaveStateDxeExtra.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = S3SaveStateDxeExtra.uni; sourceTree = ""; }; - A5AAF434237F13B0009CD413 /* S3SaveState.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = S3SaveState.c; sourceTree = ""; }; - A5AAF435237F13B0009CD413 /* S3SaveStateDxe.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = S3SaveStateDxe.uni; sourceTree = ""; }; - A5AAF436237F13B0009CD413 /* S3SaveStateDxe.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = S3SaveStateDxe.inf; sourceTree = ""; }; - A5AAF437237F13B0009CD413 /* InternalS3SaveState.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = InternalS3SaveState.h; sourceTree = ""; }; - A5AAF439237F13B0009CD413 /* BootGraphicsResourceTableDxeExtra.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = BootGraphicsResourceTableDxeExtra.uni; sourceTree = ""; }; - A5AAF43A237F13B0009CD413 /* BootGraphicsResourceTableDxe.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = BootGraphicsResourceTableDxe.c; sourceTree = ""; }; - A5AAF43B237F13B0009CD413 /* BootGraphicsResourceTableDxe.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = BootGraphicsResourceTableDxe.inf; sourceTree = ""; }; - A5AAF43C237F13B0009CD413 /* BootGraphicsResourceTableDxe.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = BootGraphicsResourceTableDxe.uni; sourceTree = ""; }; - A5AAF43E237F13B0009CD413 /* FirmwarePerformanceSmm.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = FirmwarePerformanceSmm.uni; sourceTree = ""; }; - A5AAF43F237F13B0009CD413 /* FirmwarePerformanceSmm.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = FirmwarePerformanceSmm.inf; sourceTree = ""; }; - A5AAF440237F13B0009CD413 /* FirmwarePerformanceSmmExtra.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = FirmwarePerformanceSmmExtra.uni; sourceTree = ""; }; - A5AAF441237F13B0009CD413 /* FirmwarePerformanceSmm.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = FirmwarePerformanceSmm.c; sourceTree = ""; }; - A5AAF443237F13B0009CD413 /* FirmwarePerformancePei.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = FirmwarePerformancePei.c; sourceTree = ""; }; - A5AAF444237F13B0009CD413 /* FirmwarePerformancePeiExtra.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = FirmwarePerformancePeiExtra.uni; sourceTree = ""; }; - A5AAF445237F13B0009CD413 /* FirmwarePerformancePei.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = FirmwarePerformancePei.inf; sourceTree = ""; }; - A5AAF446237F13B0009CD413 /* FirmwarePerformancePei.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = FirmwarePerformancePei.uni; sourceTree = ""; }; - A5AAF448237F13B0009CD413 /* AcpiPlatform.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = AcpiPlatform.c; sourceTree = ""; }; - A5AAF449237F13B0009CD413 /* AcpiPlatformDxe.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = AcpiPlatformDxe.inf; sourceTree = ""; }; - A5AAF44A237F13B0009CD413 /* AcpiPlatformExtra.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = AcpiPlatformExtra.uni; sourceTree = ""; }; - A5AAF44B237F13B0009CD413 /* AcpiPlatform.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = AcpiPlatform.uni; sourceTree = ""; }; - A5AAF44D237F13B0009CD413 /* BootScriptExecutorDxe.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = BootScriptExecutorDxe.inf; sourceTree = ""; }; - A5AAF44E237F13B0009CD413 /* BootScriptExecutorDxe.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = BootScriptExecutorDxe.uni; sourceTree = ""; }; - A5AAF450237F13B0009CD413 /* S3Asm.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = S3Asm.nasm; sourceTree = ""; }; - A5AAF451237F13B0009CD413 /* SetIdtEntry.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SetIdtEntry.c; sourceTree = ""; }; - A5AAF452237F13B0009CD413 /* ScriptExecute.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ScriptExecute.h; sourceTree = ""; }; - A5AAF453237F13B0009CD413 /* BootScriptExecutorDxeExtra.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = BootScriptExecutorDxeExtra.uni; sourceTree = ""; }; - A5AAF455237F13B0009CD413 /* S3Asm.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = S3Asm.nasm; sourceTree = ""; }; - A5AAF456237F13B0009CD413 /* SetIdtEntry.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SetIdtEntry.c; sourceTree = ""; }; - A5AAF457237F13B0009CD413 /* ScriptExecute.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ScriptExecute.c; sourceTree = ""; }; - A5AAF459237F13B0009CD413 /* SmmS3SaveStateExtra.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = SmmS3SaveStateExtra.uni; sourceTree = ""; }; - A5AAF45A237F13B0009CD413 /* SmmS3SaveState.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = SmmS3SaveState.inf; sourceTree = ""; }; - A5AAF45B237F13B0009CD413 /* SmmS3SaveState.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = SmmS3SaveState.uni; sourceTree = ""; }; - A5AAF45C237F13B0009CD413 /* InternalSmmSaveState.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = InternalSmmSaveState.h; sourceTree = ""; }; - A5AAF45D237F13B0009CD413 /* SmmS3SaveState.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SmmS3SaveState.c; sourceTree = ""; }; - A5AAF45F237F13B0009CD413 /* FirmwarePerformanceDxe.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = FirmwarePerformanceDxe.inf; sourceTree = ""; }; - A5AAF460237F13B0009CD413 /* FirmwarePerformanceDxe.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = FirmwarePerformanceDxe.uni; sourceTree = ""; }; - A5AAF461237F13B0009CD413 /* FirmwarePerformanceDxeExtra.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = FirmwarePerformanceDxeExtra.uni; sourceTree = ""; }; - A5AAF462237F13B0009CD413 /* FirmwarePerformanceDxe.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = FirmwarePerformanceDxe.c; sourceTree = ""; }; - A5AAF464237F13B0009CD413 /* EbcDxe.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = EbcDxe.uni; sourceTree = ""; }; - A5AAF465237F13B0009CD413 /* EbcInt.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EbcInt.h; sourceTree = ""; }; - A5AAF466237F13B0009CD413 /* EbcExecute.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EbcExecute.h; sourceTree = ""; }; - A5AAF467237F13B0009CD413 /* EbcDxe.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = EbcDxe.inf; sourceTree = ""; }; - A5AAF469237F13B0009CD413 /* EbcSupport.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = EbcSupport.c; sourceTree = ""; }; - A5AAF46A237F13B0009CD413 /* EbcLowLevel.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = EbcLowLevel.nasm; sourceTree = ""; }; - A5AAF46B237F13B0009CD413 /* EbcDebugger.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = EbcDebugger.inf; sourceTree = ""; }; - A5AAF46C237F13B0009CD413 /* EbcDebuggerHook.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = EbcDebuggerHook.c; sourceTree = ""; }; - A5AAF46E237F13B0009CD413 /* EdbCommand.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EdbCommand.h; sourceTree = ""; }; - A5AAF46F237F13B0009CD413 /* EdbDisasm.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EdbDisasm.h; sourceTree = ""; }; - A5AAF470237F13B0009CD413 /* EdbDisasmSupport.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = EdbDisasmSupport.c; sourceTree = ""; }; - A5AAF471237F13B0009CD413 /* EdbSymbol.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = EdbSymbol.c; sourceTree = ""; }; - A5AAF472237F13B0009CD413 /* EdbSupport.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EdbSupport.h; sourceTree = ""; }; - A5AAF473237F13B0009CD413 /* EdbCommon.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EdbCommon.h; sourceTree = ""; }; - A5AAF474237F13B0009CD413 /* EdbHook.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = EdbHook.c; sourceTree = ""; }; - A5AAF475237F13B0009CD413 /* EdbSupportUI.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = EdbSupportUI.c; sourceTree = ""; }; - A5AAF476237F13B0009CD413 /* EdbSupportString.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = EdbSupportString.c; sourceTree = ""; }; - A5AAF477237F13B0009CD413 /* EdbCmdExtIo.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = EdbCmdExtIo.c; sourceTree = ""; }; - A5AAF478237F13B0009CD413 /* Edb.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = Edb.c; sourceTree = ""; }; - A5AAF479237F13B0009CD413 /* EdbCmdMemory.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = EdbCmdMemory.c; sourceTree = ""; }; - A5AAF47A237F13B0009CD413 /* EbcDebuggerConfig.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = EbcDebuggerConfig.c; sourceTree = ""; }; - A5AAF47B237F13B0009CD413 /* EdbDisasmSupport.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EdbDisasmSupport.h; sourceTree = ""; }; - A5AAF47C237F13B0009CD413 /* EdbSymbol.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EdbSymbol.h; sourceTree = ""; }; - A5AAF47D237F13B0009CD413 /* EdbSupportFile.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = EdbSupportFile.c; sourceTree = ""; }; - A5AAF47E237F13B0009CD413 /* EdbCommand.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = EdbCommand.c; sourceTree = ""; }; - A5AAF47F237F13B0009CD413 /* EdbCmdStep.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = EdbCmdStep.c; sourceTree = ""; }; - A5AAF480237F13B0009CD413 /* EdbDisasm.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = EdbDisasm.c; sourceTree = ""; }; - A5AAF481237F13B0009CD413 /* EdbCmdRegister.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = EdbCmdRegister.c; sourceTree = ""; }; - A5AAF482237F13B0009CD413 /* EdbHook.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EdbHook.h; sourceTree = ""; }; - A5AAF483237F13B1009CD413 /* EdbCmdGo.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = EdbCmdGo.c; sourceTree = ""; }; - A5AAF484237F13B1009CD413 /* EdbCmdScope.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = EdbCmdScope.c; sourceTree = ""; }; - A5AAF485237F13B1009CD413 /* EdbCmdQuit.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = EdbCmdQuit.c; sourceTree = ""; }; - A5AAF486237F13B1009CD413 /* EdbCmdHelp.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = EdbCmdHelp.c; sourceTree = ""; }; - A5AAF487237F13B1009CD413 /* EdbCmdExtPci.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = EdbCmdExtPci.c; sourceTree = ""; }; - A5AAF488237F13B1009CD413 /* EdbCmdBranch.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = EdbCmdBranch.c; sourceTree = ""; }; - A5AAF489237F13B1009CD413 /* Edb.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Edb.h; sourceTree = ""; }; - A5AAF48A237F13B1009CD413 /* EdbCmdBreak.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = EdbCmdBreak.c; sourceTree = ""; }; - A5AAF48B237F13B1009CD413 /* EdbCmdSymbol.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = EdbCmdSymbol.c; sourceTree = ""; }; - A5AAF48C237F13B1009CD413 /* EdbCmdBreakpoint.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = EdbCmdBreakpoint.c; sourceTree = ""; }; - A5AAF48D237F13B1009CD413 /* EbcDebugger.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = EbcDebugger.uni; sourceTree = ""; }; - A5AAF48E237F13B1009CD413 /* EbcDebuggerConfig.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = EbcDebuggerConfig.uni; sourceTree = ""; }; - A5AAF490237F13B1009CD413 /* EbcSupport.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = EbcSupport.c; sourceTree = ""; }; - A5AAF491237F13B1009CD413 /* EbcLowLevel.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = EbcLowLevel.nasm; sourceTree = ""; }; - A5AAF492237F13B1009CD413 /* EbcInt.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = EbcInt.c; sourceTree = ""; }; - A5AAF493237F13B1009CD413 /* EbcDebuggerConfig.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = EbcDebuggerConfig.inf; sourceTree = ""; }; - A5AAF494237F13B1009CD413 /* EbcExecute.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = EbcExecute.c; sourceTree = ""; }; - A5AAF495237F13B1009CD413 /* EbcDebuggerHook.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EbcDebuggerHook.h; sourceTree = ""; }; - A5AAF497237F13B1009CD413 /* EbcSupport.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = EbcSupport.c; sourceTree = ""; }; - A5AAF498237F13B1009CD413 /* EbcLowLevel.S */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.asm; path = EbcLowLevel.S; sourceTree = ""; }; - A5AAF499237F13B1009CD413 /* EbcDebuggerConfigExtra.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = EbcDebuggerConfigExtra.uni; sourceTree = ""; }; - A5AAF49A237F13B1009CD413 /* EbcDxeExtra.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = EbcDxeExtra.uni; sourceTree = ""; }; - A5AAF49B237F13B1009CD413 /* EbcDebuggerExtra.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = EbcDebuggerExtra.uni; sourceTree = ""; }; - A5AAF49D237F13B1009CD413 /* EsrtDxe.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = EsrtDxe.c; sourceTree = ""; }; - A5AAF49E237F13B1009CD413 /* EsrtImpl.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = EsrtImpl.c; sourceTree = ""; }; - A5AAF49F237F13B1009CD413 /* EsrtDxe.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = EsrtDxe.uni; sourceTree = ""; }; - A5AAF4A0237F13B1009CD413 /* EsrtImpl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EsrtImpl.h; sourceTree = ""; }; - A5AAF4A1237F13B1009CD413 /* EsrtDxe.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = EsrtDxe.inf; sourceTree = ""; }; - A5AAF4A2237F13B1009CD413 /* EsrtDxeExtra.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = EsrtDxeExtra.uni; sourceTree = ""; }; - A5AAF4A4237F13B1009CD413 /* SmbiosDxe.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SmbiosDxe.h; sourceTree = ""; }; - A5AAF4A5237F13B1009CD413 /* SmbiosDxe.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SmbiosDxe.c; sourceTree = ""; }; - A5AAF4A6237F13B1009CD413 /* SmbiosDxe.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = SmbiosDxe.inf; sourceTree = ""; }; - A5AAF4A7237F13B1009CD413 /* SmbiosDxe.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = SmbiosDxe.uni; sourceTree = ""; }; - A5AAF4A8237F13B1009CD413 /* SmbiosDxeExtra.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = SmbiosDxeExtra.uni; sourceTree = ""; }; - A5AAF4AA237F13B1009CD413 /* SectionExtractionDxe.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = SectionExtractionDxe.uni; sourceTree = ""; }; - A5AAF4AB237F13B1009CD413 /* SectionExtractionDxe.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = SectionExtractionDxe.inf; sourceTree = ""; }; - A5AAF4AC237F13B1009CD413 /* SectionExtractionDxe.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SectionExtractionDxe.c; sourceTree = ""; }; - A5AAF4AD237F13B1009CD413 /* SectionExtractionDxeExtra.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = SectionExtractionDxeExtra.uni; sourceTree = ""; }; - A5AAF4AF237F13B1009CD413 /* RegularExpressionDxe.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = RegularExpressionDxe.inf; sourceTree = ""; }; - A5AAF4B0237F13B1009CD413 /* RegularExpressionDxe.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RegularExpressionDxe.h; sourceTree = ""; }; - A5AAF4B2237F13B1009CD413 /* unicode_property_data_posix.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = unicode_property_data_posix.c; sourceTree = ""; }; - A5AAF4B3237F13B1009CD413 /* unicode.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = unicode.c; sourceTree = ""; }; - A5AAF4B4237F13B1009CD413 /* st.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = st.h; sourceTree = ""; }; - A5AAF4B5237F13B1009CD413 /* ascii.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ascii.c; sourceTree = ""; }; - A5AAF4B6237F13B1009CD413 /* unicode_fold2_key.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = unicode_fold2_key.c; sourceTree = ""; }; - A5AAF4B7237F13B1009CD413 /* regparse.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = regparse.h; sourceTree = ""; }; - A5AAF4B8237F13B1009CD413 /* AUTHORS */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = AUTHORS; sourceTree = ""; }; - A5AAF4B9237F13B1009CD413 /* unicode_fold3_key.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = unicode_fold3_key.c; sourceTree = ""; }; - A5AAF4BA237F13B1009CD413 /* regposix.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = regposix.c; sourceTree = ""; }; - A5AAF4BB237F13B1009CD413 /* unicode_fold1_key.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = unicode_fold1_key.c; sourceTree = ""; }; - A5AAF4BC237F13B1009CD413 /* unicode_wb_data.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = unicode_wb_data.c; sourceTree = ""; }; - A5AAF4BD237F13B1009CD413 /* regexec.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = regexec.c; sourceTree = ""; }; - A5AAF4BE237F13B1009CD413 /* regint.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = regint.h; sourceTree = ""; }; - A5AAF4BF237F13B1009CD413 /* regenc.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = regenc.h; sourceTree = ""; }; - A5AAF4C0237F13B1009CD413 /* regcomp.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = regcomp.c; sourceTree = ""; }; - A5AAF4C1237F13B1009CD413 /* unicode_egcb_data.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = unicode_egcb_data.c; sourceTree = ""; }; - A5AAF4C2237F13B1009CD413 /* regtrav.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = regtrav.c; sourceTree = ""; }; - A5AAF4C3237F13B1009CD413 /* regsyntax.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = regsyntax.c; sourceTree = ""; }; - A5AAF4C4237F13B1009CD413 /* OnigurumaIntrinsics.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = OnigurumaIntrinsics.c; sourceTree = ""; }; - A5AAF4C5237F13B1009CD413 /* regversion.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = regversion.c; sourceTree = ""; }; - A5AAF4C6237F13B1009CD413 /* OnigurumaUefiPort.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = OnigurumaUefiPort.c; sourceTree = ""; }; - A5AAF4C7237F13B1009CD413 /* unicode_property_data.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = unicode_property_data.c; sourceTree = ""; }; - A5AAF4C8237F13B1009CD413 /* README */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = README; sourceTree = ""; }; - A5AAF4C9237F13B1009CD413 /* st.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = st.c; sourceTree = ""; }; - A5AAF4CA237F13B1009CD413 /* oniggnu.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = oniggnu.h; sourceTree = ""; }; - A5AAF4CB237F13B1009CD413 /* onigposix.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = onigposix.h; sourceTree = ""; }; - A5AAF4CC237F13B1009CD413 /* COPYING */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = COPYING; sourceTree = ""; }; - A5AAF4CD237F13B1009CD413 /* utf16_le.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = utf16_le.c; sourceTree = ""; }; - A5AAF4CE237F13B1009CD413 /* oniguruma.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = oniguruma.h; sourceTree = ""; }; - A5AAF4CF237F13B1009CD413 /* regposerr.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = regposerr.c; sourceTree = ""; }; - A5AAF4D0237F13B1009CD413 /* regparse.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = regparse.c; sourceTree = ""; }; - A5AAF4D1237F13B1009CD413 /* onig_init.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = onig_init.c; sourceTree = ""; }; - A5AAF4D2237F13B1009CD413 /* regenc.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = regenc.c; sourceTree = ""; }; - A5AAF4D3237F13B1009CD413 /* regerror.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = regerror.c; sourceTree = ""; }; - A5AAF4D4237F13B1009CD413 /* OnigurumaUefiPort.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OnigurumaUefiPort.h; sourceTree = ""; }; - A5AAF4D5237F13B1009CD413 /* unicode_unfold_key.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = unicode_unfold_key.c; sourceTree = ""; }; - A5AAF4D6237F13B1009CD413 /* reggnu.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = reggnu.c; sourceTree = ""; }; - A5AAF4D7237F13B1009CD413 /* unicode_fold_data.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = unicode_fold_data.c; sourceTree = ""; }; - A5AAF4D8237F13B1009CD413 /* RegularExpressionDxe.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = RegularExpressionDxe.c; sourceTree = ""; }; - A5AAF4DB237F13B1009CD413 /* Measurement.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = Measurement.c; sourceTree = ""; }; - A5AAF4DC237F13B1009CD413 /* SpeculationBarrierDxe.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SpeculationBarrierDxe.c; sourceTree = ""; }; - A5AAF4DD237F13B1009CD413 /* VariableStandaloneMm.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = VariableStandaloneMm.inf; sourceTree = ""; }; - A5AAF4DE237F13B1009CD413 /* VariableSmm.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = VariableSmm.uni; sourceTree = ""; }; - A5AAF4DF237F13B1009CD413 /* VariableSmmRuntimeDxeExtra.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = VariableSmmRuntimeDxeExtra.uni; sourceTree = ""; }; - A5AAF4E0237F13B1009CD413 /* SpeculationBarrierSmm.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SpeculationBarrierSmm.c; sourceTree = ""; }; - A5AAF4E1237F13B1009CD413 /* VariableSmm.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = VariableSmm.inf; sourceTree = ""; }; - A5AAF4E2237F13B1009CD413 /* VariableTraditionalMm.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = VariableTraditionalMm.c; sourceTree = ""; }; - A5AAF4E3237F13B1009CD413 /* PrivilegePolymorphic.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PrivilegePolymorphic.h; sourceTree = ""; }; - A5AAF4E4237F13B1009CD413 /* VariableExLib.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = VariableExLib.c; sourceTree = ""; }; - A5AAF4E5237F13B1009CD413 /* Variable.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Variable.h; sourceTree = ""; }; - A5AAF4E6237F13B1009CD413 /* VariableSmmRuntimeDxe.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = VariableSmmRuntimeDxe.c; sourceTree = ""; }; - A5AAF4E7237F13B1009CD413 /* VariableSmmRuntimeDxe.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = VariableSmmRuntimeDxe.inf; sourceTree = ""; }; - A5AAF4E8237F13B1009CD413 /* VariableStandaloneMm.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = VariableStandaloneMm.c; sourceTree = ""; }; - A5AAF4E9237F13B1009CD413 /* VariableSmmExtra.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = VariableSmmExtra.uni; sourceTree = ""; }; - A5AAF4EA237F13B1009CD413 /* VariableSmm.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = VariableSmm.c; sourceTree = ""; }; - A5AAF4EB237F13B1009CD413 /* TcgMorLockSmm.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = TcgMorLockSmm.c; sourceTree = ""; }; - A5AAF4EC237F13B1009CD413 /* Reclaim.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = Reclaim.c; sourceTree = ""; }; - A5AAF4ED237F13B1009CD413 /* VariableDxe.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = VariableDxe.c; sourceTree = ""; }; - A5AAF4EE237F13B1009CD413 /* VariableSmmRuntimeDxe.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = VariableSmmRuntimeDxe.uni; sourceTree = ""; }; - A5AAF4EF237F13B1009CD413 /* TcgMorLockDxe.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = TcgMorLockDxe.c; sourceTree = ""; }; - A5AAF4F0237F13B1009CD413 /* VarCheck.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = VarCheck.c; sourceTree = ""; }; - A5AAF4F1237F13B1009CD413 /* VariableRuntimeDxe.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = VariableRuntimeDxe.inf; sourceTree = ""; }; - A5AAF4F2237F13B1009CD413 /* VariableRuntimeDxeExtra.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = VariableRuntimeDxeExtra.uni; sourceTree = ""; }; - A5AAF4F3237F13B1009CD413 /* VariableRuntimeDxe.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = VariableRuntimeDxe.uni; sourceTree = ""; }; - A5AAF4F4237F13B1009CD413 /* Variable.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = Variable.c; sourceTree = ""; }; - A5AAF4F6237F13B1009CD413 /* PeiVariableExtra.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = PeiVariableExtra.uni; sourceTree = ""; }; - A5AAF4F7237F13B1009CD413 /* PeiVariable.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = PeiVariable.uni; sourceTree = ""; }; - A5AAF4F8237F13B1009CD413 /* Variable.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Variable.h; sourceTree = ""; }; - A5AAF4F9237F13B1009CD413 /* VariablePei.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = VariablePei.inf; sourceTree = ""; }; - A5AAF4FA237F13B1009CD413 /* Variable.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = Variable.c; sourceTree = ""; }; - A5AAF4FC237F13B1009CD413 /* InputHandler.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = InputHandler.c; sourceTree = ""; }; - A5AAF4FD237F13B1009CD413 /* FormDisplay.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = FormDisplay.c; sourceTree = ""; }; - A5AAF4FE237F13B1009CD413 /* DisplayEngine.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = DisplayEngine.uni; sourceTree = ""; }; - A5AAF4FF237F13B1009CD413 /* FormDisplayStr.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = FormDisplayStr.uni; sourceTree = ""; }; - A5AAF500237F13B1009CD413 /* FormDisplay.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FormDisplay.h; sourceTree = ""; }; - A5AAF501237F13B1009CD413 /* Popup.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = Popup.c; sourceTree = ""; }; - A5AAF502237F13B1009CD413 /* ProcessOptions.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ProcessOptions.c; sourceTree = ""; }; - A5AAF503237F13B1009CD413 /* DisplayEngineDxe.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = DisplayEngineDxe.inf; sourceTree = ""; }; - A5AAF504237F13B1009CD413 /* DisplayEngineExtra.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = DisplayEngineExtra.uni; sourceTree = ""; }; - A5AAF506237F13B1009CD413 /* CapsuleOnDiskLoadPeiExtra.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = CapsuleOnDiskLoadPeiExtra.uni; sourceTree = ""; }; - A5AAF507237F13B1009CD413 /* CapsuleOnDiskLoadPei.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = CapsuleOnDiskLoadPei.c; sourceTree = ""; }; - A5AAF508237F13B1009CD413 /* CapsuleOnDiskLoadPei.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = CapsuleOnDiskLoadPei.inf; sourceTree = ""; }; - A5AAF509237F13B1009CD413 /* CapsuleOnDiskLoadPei.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = CapsuleOnDiskLoadPei.uni; sourceTree = ""; }; - A5AAF50B237F13B1009CD413 /* DriverHealthManagerDxeExtra.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = DriverHealthManagerDxeExtra.uni; sourceTree = ""; }; - A5AAF50C237F13B1009CD413 /* DriverHealthManagerDxe.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DriverHealthManagerDxe.h; sourceTree = ""; }; - A5AAF50D237F13B1009CD413 /* DriverHealthManagerVfr.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DriverHealthManagerVfr.h; sourceTree = ""; }; - A5AAF50E237F13B1009CD413 /* DriverHealthManagerStrings.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = DriverHealthManagerStrings.uni; sourceTree = ""; }; - A5AAF50F237F13B1009CD413 /* DriverHealthManagerVfr.Vfr */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = DriverHealthManagerVfr.Vfr; sourceTree = ""; }; - A5AAF510237F13B1009CD413 /* DriverHealthManagerDxe.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = DriverHealthManagerDxe.uni; sourceTree = ""; }; - A5AAF511237F13B1009CD413 /* DriverHealthConfigureVfr.Vfr */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = DriverHealthConfigureVfr.Vfr; sourceTree = ""; }; - A5AAF512237F13B1009CD413 /* DriverHealthManagerDxe.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = DriverHealthManagerDxe.c; sourceTree = ""; }; - A5AAF513237F13B1009CD413 /* DriverHealthManagerDxe.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = DriverHealthManagerDxe.inf; sourceTree = ""; }; - A5AAF515237F13B1009CD413 /* MonotonicCounterRuntimeDxeExtra.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = MonotonicCounterRuntimeDxeExtra.uni; sourceTree = ""; }; - A5AAF516237F13B1009CD413 /* MonotonicCounterRuntimeDxe.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = MonotonicCounterRuntimeDxe.inf; sourceTree = ""; }; - A5AAF517237F13B1009CD413 /* MonotonicCounter.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = MonotonicCounter.c; sourceTree = ""; }; - A5AAF518237F13B1009CD413 /* MonotonicCounterRuntimeDxe.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = MonotonicCounterRuntimeDxe.uni; sourceTree = ""; }; - A5AAF51A237F13B1009CD413 /* LegacyRegion2Dxe.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = LegacyRegion2Dxe.uni; sourceTree = ""; }; - A5AAF51B237F13B1009CD413 /* LegacyRegion2.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = LegacyRegion2.c; sourceTree = ""; }; - A5AAF51C237F13B1009CD413 /* LegacyRegion2Dxe.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = LegacyRegion2Dxe.inf; sourceTree = ""; }; - A5AAF51D237F13B1009CD413 /* LegacyRegion2.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LegacyRegion2.h; sourceTree = ""; }; - A5AAF51E237F13B1009CD413 /* LegacyRegion2DxeExtra.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = LegacyRegion2DxeExtra.uni; sourceTree = ""; }; - A5AAF520237F13B1009CD413 /* WatchdogTimer.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = WatchdogTimer.inf; sourceTree = ""; }; - A5AAF521237F13B1009CD413 /* WatchdogTimer.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = WatchdogTimer.uni; sourceTree = ""; }; - A5AAF522237F13B1009CD413 /* WatchdogTimer.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = WatchdogTimer.c; sourceTree = ""; }; - A5AAF523237F13B1009CD413 /* WatchdogTimerExtra.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = WatchdogTimerExtra.uni; sourceTree = ""; }; - A5AAF524237F13B1009CD413 /* WatchdogTimer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WatchdogTimer.h; sourceTree = ""; }; - A5AAF526237F13B1009CD413 /* FaultTolerantWriteSmmDxeExtra.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = FaultTolerantWriteSmmDxeExtra.uni; sourceTree = ""; }; - A5AAF527237F13B1009CD413 /* FaultTolerantWriteSmmCommon.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FaultTolerantWriteSmmCommon.h; sourceTree = ""; }; - A5AAF528237F13B1009CD413 /* FaultTolerantWriteSmmDxe.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FaultTolerantWriteSmmDxe.h; sourceTree = ""; }; - A5AAF529237F13B1009CD413 /* FaultTolerantWriteStandaloneMm.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = FaultTolerantWriteStandaloneMm.inf; sourceTree = ""; }; - A5AAF52A237F13B1009CD413 /* SmmFaultTolerantWriteDxeExtra.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = SmmFaultTolerantWriteDxeExtra.uni; sourceTree = ""; }; - A5AAF52B237F13B1009CD413 /* FaultTolerantWrite.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = FaultTolerantWrite.c; sourceTree = ""; }; - A5AAF52C237F13B1009CD413 /* FaultTolerantWriteDxe.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = FaultTolerantWriteDxe.inf; sourceTree = ""; }; - A5AAF52D237F13B1009CD413 /* FaultTolerantWriteStandaloneMm.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = FaultTolerantWriteStandaloneMm.c; sourceTree = ""; }; - A5AAF52E237F13B1009CD413 /* FaultTolerantWriteSmmDxe.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = FaultTolerantWriteSmmDxe.c; sourceTree = ""; }; - A5AAF52F237F13B1009CD413 /* FaultTolerantWriteDxeExtra.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = FaultTolerantWriteDxeExtra.uni; sourceTree = ""; }; - A5AAF530237F13B1009CD413 /* FaultTolerantWriteDxe.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = FaultTolerantWriteDxe.uni; sourceTree = ""; }; - A5AAF531237F13B1009CD413 /* FaultTolerantWriteSmm.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = FaultTolerantWriteSmm.inf; sourceTree = ""; }; - A5AAF532237F13B1009CD413 /* FaultTolerantWriteTraditionalMm.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = FaultTolerantWriteTraditionalMm.c; sourceTree = ""; }; - A5AAF533237F13B1009CD413 /* FaultTolerantWriteDxe.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = FaultTolerantWriteDxe.c; sourceTree = ""; }; - A5AAF534237F13B1009CD413 /* FaultTolerantWriteSmmDxe.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = FaultTolerantWriteSmmDxe.uni; sourceTree = ""; }; - A5AAF535237F13B1009CD413 /* FaultTolerantWriteSmm.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = FaultTolerantWriteSmm.c; sourceTree = ""; }; - A5AAF536237F13B1009CD413 /* FtwMisc.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = FtwMisc.c; sourceTree = ""; }; - A5AAF537237F13B1009CD413 /* SmmFaultTolerantWriteDxe.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = SmmFaultTolerantWriteDxe.uni; sourceTree = ""; }; - A5AAF538237F13B1009CD413 /* UpdateWorkingBlock.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = UpdateWorkingBlock.c; sourceTree = ""; }; - A5AAF539237F13B1009CD413 /* FaultTolerantWriteSmmDxe.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = FaultTolerantWriteSmmDxe.inf; sourceTree = ""; }; - A5AAF53A237F13B1009CD413 /* FaultTolerantWrite.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FaultTolerantWrite.h; sourceTree = ""; }; - A5AAF53C237F13B1009CD413 /* DevicePath.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = DevicePath.c; sourceTree = ""; }; - A5AAF53D237F13B1009CD413 /* DevicePathDxe.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = DevicePathDxe.inf; sourceTree = ""; }; - A5AAF53E237F13B1009CD413 /* DevicePathDxeExtra.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = DevicePathDxeExtra.uni; sourceTree = ""; }; - A5AAF53F237F13B1009CD413 /* DevicePathDxe.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = DevicePathDxe.uni; sourceTree = ""; }; - A5AAF541237F13B1009CD413 /* NVDataStruc.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NVDataStruc.h; sourceTree = ""; }; - A5AAF542237F13B1009CD413 /* DriverSample.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = DriverSample.c; sourceTree = ""; }; - A5AAF543237F13B1009CD413 /* DriverSampleDxe.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = DriverSampleDxe.inf; sourceTree = ""; }; - A5AAF544237F13B1009CD413 /* Inventory.vfr */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Inventory.vfr; sourceTree = ""; }; - A5AAF545237F13B1009CD413 /* Vfr.vfr */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Vfr.vfr; sourceTree = ""; }; - A5AAF546237F13B1009CD413 /* DriverSample.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = DriverSample.uni; sourceTree = ""; }; - A5AAF547237F13B1009CD413 /* InventoryStrings.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = InventoryStrings.uni; sourceTree = ""; }; - A5AAF548237F13B1009CD413 /* DriverSampleExtra.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = DriverSampleExtra.uni; sourceTree = ""; }; - A5AAF549237F13B1009CD413 /* DriverSample.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DriverSample.h; sourceTree = ""; }; - A5AAF54A237F13B1009CD413 /* VfrStrings.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = VfrStrings.uni; sourceTree = ""; }; - A5AAF54C237F13B1009CD413 /* SmbiosMeasurementDxeExtra.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = SmbiosMeasurementDxeExtra.uni; sourceTree = ""; }; - A5AAF54D237F13B1009CD413 /* SmbiosMeasurementDxe.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SmbiosMeasurementDxe.c; sourceTree = ""; }; - A5AAF54E237F13B1009CD413 /* SmbiosMeasurementDxe.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = SmbiosMeasurementDxe.inf; sourceTree = ""; }; - A5AAF54F237F13B1009CD413 /* SmbiosMeasurementDxe.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = SmbiosMeasurementDxe.uni; sourceTree = ""; }; - A5AAF551237F13B1009CD413 /* HiiResourcesSample.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = HiiResourcesSample.c; sourceTree = ""; }; - A5AAF552237F13B1009CD413 /* HiiResourcesSample.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = HiiResourcesSample.uni; sourceTree = ""; }; - A5AAF553237F13B1009CD413 /* HiiResourcesSampleDxe.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = HiiResourcesSampleDxe.inf; sourceTree = ""; }; - A5AAF554237F13B1009CD413 /* HiiResourcesSampleExtra.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = HiiResourcesSampleExtra.uni; sourceTree = ""; }; - A5AAF555237F13B1009CD413 /* SampleStrings.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = SampleStrings.uni; sourceTree = ""; }; - A5AAF556237F13B1009CD413 /* Sample.vfr */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Sample.vfr; sourceTree = ""; }; - A5AAF558237F13B1009CD413 /* InternalPlatDriOverrideDxe.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = InternalPlatDriOverrideDxe.h; sourceTree = ""; }; - A5AAF559237F13B1009CD413 /* Vfr.vfr */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Vfr.vfr; sourceTree = ""; }; - A5AAF55A237F13B1009CD413 /* PlatOverMngr.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PlatOverMngr.h; sourceTree = ""; }; - A5AAF55B237F13B1009CD413 /* PlatformDriOverrideDxe.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = PlatformDriOverrideDxe.inf; sourceTree = ""; }; - A5AAF55C237F13B1009CD413 /* PlatDriOverrideLib.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = PlatDriOverrideLib.c; sourceTree = ""; }; - A5AAF55D237F13B1009CD413 /* PlatDriOverrideDxe.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = PlatDriOverrideDxe.uni; sourceTree = ""; }; - A5AAF55E237F13B1009CD413 /* PlatDriOverrideDxeExtra.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = PlatDriOverrideDxeExtra.uni; sourceTree = ""; }; - A5AAF55F237F13B1009CD413 /* PlatDriOverrideDxe.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = PlatDriOverrideDxe.c; sourceTree = ""; }; - A5AAF560237F13B1009CD413 /* VfrStrings.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = VfrStrings.uni; sourceTree = ""; }; - A5AAF562237F13B1009CD413 /* LoadFileOnFv2.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = LoadFileOnFv2.c; sourceTree = ""; }; - A5AAF563237F13B1009CD413 /* LoadFileOnFv2.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = LoadFileOnFv2.inf; sourceTree = ""; }; - A5AAF564237F13B1009CD413 /* LoadFileOnFv2.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = LoadFileOnFv2.uni; sourceTree = ""; }; - A5AAF565237F13B1009CD413 /* LoadFileOnFv2Extra.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = LoadFileOnFv2Extra.uni; sourceTree = ""; }; - A5AAF567237F13B1009CD413 /* BootManagerPolicyDxe.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = BootManagerPolicyDxe.uni; sourceTree = ""; }; - A5AAF568237F13B1009CD413 /* BootManagerPolicyDxe.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = BootManagerPolicyDxe.inf; sourceTree = ""; }; - A5AAF569237F13B1009CD413 /* BootManagerPolicyDxeExtra.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = BootManagerPolicyDxeExtra.uni; sourceTree = ""; }; - A5AAF56A237F13B1009CD413 /* BootManagerPolicyDxe.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = BootManagerPolicyDxe.c; sourceTree = ""; }; - A5AAF56D237F13B1009CD413 /* Pcd.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = Pcd.c; sourceTree = ""; }; - A5AAF56E237F13B1009CD413 /* PcdDxeExtra.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = PcdDxeExtra.uni; sourceTree = ""; }; - A5AAF56F237F13B1009CD413 /* Service.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Service.h; sourceTree = ""; }; - A5AAF570237F13B1009CD413 /* Pcd.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Pcd.inf; sourceTree = ""; }; - A5AAF571237F13B1009CD413 /* Service.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = Service.c; sourceTree = ""; }; - A5AAF572237F13B1009CD413 /* PcdDxe.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = PcdDxe.uni; sourceTree = ""; }; - A5AAF574237F13B1009CD413 /* Pcd.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = Pcd.c; sourceTree = ""; }; - A5AAF575237F13B1009CD413 /* Service.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Service.h; sourceTree = ""; }; - A5AAF576237F13B1009CD413 /* Pcd.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Pcd.inf; sourceTree = ""; }; - A5AAF577237F13B1009CD413 /* PcdPeim.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = PcdPeim.uni; sourceTree = ""; }; - A5AAF578237F13B1009CD413 /* PcdPeimExtra.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = PcdPeimExtra.uni; sourceTree = ""; }; - A5AAF579237F13B1009CD413 /* Service.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = Service.c; sourceTree = ""; }; - A5AAF57B237F13B1009CD413 /* SectionExtractionPei.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SectionExtractionPei.c; sourceTree = ""; }; - A5AAF57C237F13B1009CD413 /* SectionExtractionPeiExtra.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = SectionExtractionPeiExtra.uni; sourceTree = ""; }; - A5AAF57D237F13B1009CD413 /* SectionExtractionPei.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = SectionExtractionPei.uni; sourceTree = ""; }; - A5AAF57E237F13B1009CD413 /* SectionExtractionPei.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = SectionExtractionPei.inf; sourceTree = ""; }; - A5AAF581237F13B1009CD413 /* StatusCodeHandlerRuntimeDxe.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = StatusCodeHandlerRuntimeDxe.c; sourceTree = ""; }; - A5AAF582237F13B1009CD413 /* MemoryStatusCodeWorker.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = MemoryStatusCodeWorker.c; sourceTree = ""; }; - A5AAF583237F13B1009CD413 /* StatusCodeHandlerRuntimeDxeExtra.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = StatusCodeHandlerRuntimeDxeExtra.uni; sourceTree = ""; }; - A5AAF584237F13B1009CD413 /* StatusCodeHandlerRuntimeDxe.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = StatusCodeHandlerRuntimeDxe.uni; sourceTree = ""; }; - A5AAF585237F13B1009CD413 /* StatusCodeHandlerRuntimeDxe.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = StatusCodeHandlerRuntimeDxe.inf; sourceTree = ""; }; - A5AAF586237F13B1009CD413 /* StatusCodeHandlerRuntimeDxe.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = StatusCodeHandlerRuntimeDxe.h; sourceTree = ""; }; - A5AAF587237F13B1009CD413 /* SerialStatusCodeWorker.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SerialStatusCodeWorker.c; sourceTree = ""; }; - A5AAF589237F13B1009CD413 /* StatusCodeHandlerPei.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = StatusCodeHandlerPei.uni; sourceTree = ""; }; - A5AAF58A237F13B1009CD413 /* StatusCodeHandlerPeiExtra.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = StatusCodeHandlerPeiExtra.uni; sourceTree = ""; }; - A5AAF58B237F13B1009CD413 /* StatusCodeHandlerPei.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = StatusCodeHandlerPei.inf; sourceTree = ""; }; - A5AAF58C237F13B1009CD413 /* StatusCodeHandlerPei.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = StatusCodeHandlerPei.h; sourceTree = ""; }; - A5AAF58D237F13B1009CD413 /* MemoryStausCodeWorker.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = MemoryStausCodeWorker.c; sourceTree = ""; }; - A5AAF58E237F13B1009CD413 /* SerialStatusCodeWorker.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SerialStatusCodeWorker.c; sourceTree = ""; }; - A5AAF58F237F13B1009CD413 /* StatusCodeHandlerPei.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = StatusCodeHandlerPei.c; sourceTree = ""; }; - A5AAF591237F13B1009CD413 /* MemoryStatusCodeWorker.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = MemoryStatusCodeWorker.c; sourceTree = ""; }; - A5AAF592237F13B1009CD413 /* StatusCodeHandlerSmm.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = StatusCodeHandlerSmm.c; sourceTree = ""; }; - A5AAF593237F13B1009CD413 /* StatusCodeHandlerSmmExtra.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = StatusCodeHandlerSmmExtra.uni; sourceTree = ""; }; - A5AAF594237F13B1009CD413 /* StatusCodeHandlerSmm.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = StatusCodeHandlerSmm.inf; sourceTree = ""; }; - A5AAF595237F13B1009CD413 /* SerialStatusCodeWorker.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SerialStatusCodeWorker.c; sourceTree = ""; }; - A5AAF596237F13B1009CD413 /* StatusCodeHandlerSmm.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = StatusCodeHandlerSmm.h; sourceTree = ""; }; - A5AAF597237F13B1009CD413 /* StatusCodeHandlerSmm.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = StatusCodeHandlerSmm.uni; sourceTree = ""; }; - A5AAF599237F13B1009CD413 /* DebugServicePei.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = DebugServicePei.c; sourceTree = ""; }; - A5AAF59A237F13B1009CD413 /* DebugService.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DebugService.h; sourceTree = ""; }; - A5AAF59B237F13B1009CD413 /* DebugServicePei.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = DebugServicePei.inf; sourceTree = ""; }; - A5AAF59C237F13B1009CD413 /* DebugServicePei.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = DebugServicePei.uni; sourceTree = ""; }; - A5AAF59E237F13B1009CD413 /* TimestampDxe.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = TimestampDxe.c; sourceTree = ""; }; - A5AAF59F237F13B1009CD413 /* TimestampDxe.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = TimestampDxe.uni; sourceTree = ""; }; - A5AAF5A0237F13B1009CD413 /* TimestampDxe.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = TimestampDxe.inf; sourceTree = ""; }; - A5AAF5A1237F13B1009CD413 /* TimestampDxeExtra.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = TimestampDxeExtra.uni; sourceTree = ""; }; - A5AAF5A3237F13B1009CD413 /* ResetSystemPeiExtra.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = ResetSystemPeiExtra.uni; sourceTree = ""; }; - A5AAF5A4237F13B1009CD413 /* ResetSystem.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ResetSystem.h; sourceTree = ""; }; - A5AAF5A5237F13B1009CD413 /* ResetSystemPei.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = ResetSystemPei.inf; sourceTree = ""; }; - A5AAF5A6237F13B1009CD413 /* ResetSystem.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ResetSystem.c; sourceTree = ""; }; - A5AAF5A7237F13B1009CD413 /* ResetSystemPei.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = ResetSystemPei.uni; sourceTree = ""; }; - A5AAF5A9237F13B1009CD413 /* FvSimpleFileSystemEntryPoint.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = FvSimpleFileSystemEntryPoint.c; sourceTree = ""; }; - A5AAF5AA237F13B1009CD413 /* FvSimpleFileSystem.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = FvSimpleFileSystem.c; sourceTree = ""; }; - A5AAF5AB237F13B1009CD413 /* FvSimpleFileSystemDxe.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = FvSimpleFileSystemDxe.inf; sourceTree = ""; }; - A5AAF5AC237F13B1009CD413 /* ComponentName.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ComponentName.c; sourceTree = ""; }; - A5AAF5AD237F13B1009CD413 /* FvSimpleFileSystemInternal.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FvSimpleFileSystemInternal.h; sourceTree = ""; }; - A5AAF5AE237F13B1009CD413 /* FvSimpleFileSystem.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = FvSimpleFileSystem.uni; sourceTree = ""; }; - A5AAF5AF237F13B1009CD413 /* FvSimpleFileSystemExtra.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = FvSimpleFileSystemExtra.uni; sourceTree = ""; }; - A5AAF5B1237F13B1009CD413 /* Defer3rdPartyImageLoad.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = Defer3rdPartyImageLoad.c; sourceTree = ""; }; - A5AAF5B2237F13B1009CD413 /* SecurityStubDxe.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = SecurityStubDxe.uni; sourceTree = ""; }; - A5AAF5B3237F13B1009CD413 /* SecurityStub.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SecurityStub.c; sourceTree = ""; }; - A5AAF5B4237F13B1009CD413 /* SecurityStubDxe.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = SecurityStubDxe.inf; sourceTree = ""; }; - A5AAF5B5237F13B1009CD413 /* SecurityStubDxeExtra.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = SecurityStubDxeExtra.uni; sourceTree = ""; }; - A5AAF5B6237F13B1009CD413 /* Defer3rdPartyImageLoad.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Defer3rdPartyImageLoad.h; sourceTree = ""; }; - A5AAF5B9237F13B1009CD413 /* DiskIoDxe.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = DiskIoDxe.uni; sourceTree = ""; }; - A5AAF5BA237F13B1009CD413 /* DiskIo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DiskIo.h; sourceTree = ""; }; - A5AAF5BB237F13B1009CD413 /* DiskIoDxe.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = DiskIoDxe.inf; sourceTree = ""; }; - A5AAF5BC237F13B1009CD413 /* ComponentName.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ComponentName.c; sourceTree = ""; }; - A5AAF5BD237F13B1009CD413 /* DiskIoDxeExtra.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = DiskIoDxeExtra.uni; sourceTree = ""; }; - A5AAF5BE237F13B1009CD413 /* DiskIo.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = DiskIo.c; sourceTree = ""; }; - A5AAF5C0237F13B1009CD413 /* CdExpressPei.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = CdExpressPei.inf; sourceTree = ""; }; - A5AAF5C1237F13B1009CD413 /* PeiCdExpress.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = PeiCdExpress.c; sourceTree = ""; }; - A5AAF5C2237F13B1009CD413 /* CdExpressPei.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = CdExpressPei.uni; sourceTree = ""; }; - A5AAF5C3237F13B1009CD413 /* PeiCdExpress.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PeiCdExpress.h; sourceTree = ""; }; - A5AAF5C4237F13B1009CD413 /* CdExpressPeiExtra.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = CdExpressPeiExtra.uni; sourceTree = ""; }; - A5AAF5C6237F13B1009CD413 /* Partition.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = Partition.c; sourceTree = ""; }; - A5AAF5C7237F13B1009CD413 /* Udf.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = Udf.c; sourceTree = ""; }; - A5AAF5C8237F13B1009CD413 /* PartitionDxeExtra.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = PartitionDxeExtra.uni; sourceTree = ""; }; - A5AAF5C9237F13B1009CD413 /* ComponentName.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ComponentName.c; sourceTree = ""; }; - A5AAF5CA237F13B1009CD413 /* ElTorito.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ElTorito.c; sourceTree = ""; }; - A5AAF5CB237F13B1009CD413 /* PartitionDxe.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = PartitionDxe.uni; sourceTree = ""; }; - A5AAF5CC237F13B1009CD413 /* Partition.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Partition.h; sourceTree = ""; }; - A5AAF5CD237F13B1009CD413 /* PartitionDxe.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = PartitionDxe.inf; sourceTree = ""; }; - A5AAF5CE237F13B1009CD413 /* Mbr.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = Mbr.c; sourceTree = ""; }; - A5AAF5CF237F13B1009CD413 /* Gpt.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = Gpt.c; sourceTree = ""; }; - A5AAF5D1237F13B1009CD413 /* RamDiskImpl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RamDiskImpl.h; sourceTree = ""; }; - A5AAF5D2237F13B1009CD413 /* RamDiskFileExplorer.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = RamDiskFileExplorer.c; sourceTree = ""; }; - A5AAF5D3237F13B1009CD413 /* RamDiskNVData.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RamDiskNVData.h; sourceTree = ""; }; - A5AAF5D4237F13B1009CD413 /* RamDiskHiiStrings.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = RamDiskHiiStrings.uni; sourceTree = ""; }; - A5AAF5D5237F13B1009CD413 /* RamDiskImpl.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = RamDiskImpl.c; sourceTree = ""; }; - A5AAF5D6237F13B1009CD413 /* RamDiskBlockIo.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = RamDiskBlockIo.c; sourceTree = ""; }; - A5AAF5D7237F13B1009CD413 /* RamDiskProtocol.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = RamDiskProtocol.c; sourceTree = ""; }; - A5AAF5D8237F13B1009CD413 /* RamDiskHii.vfr */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = RamDiskHii.vfr; sourceTree = ""; }; - A5AAF5D9237F13B1009CD413 /* RamDisk.asl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = RamDisk.asl; sourceTree = ""; }; - A5AAF5DA237F13B1009CD413 /* RamDiskDxe.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = RamDiskDxe.inf; sourceTree = ""; }; - A5AAF5DB237F13B1009CD413 /* RamDiskDriver.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = RamDiskDriver.c; sourceTree = ""; }; - A5AAF5DC237F13B1009CD413 /* RamDiskDxe.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = RamDiskDxe.uni; sourceTree = ""; }; - A5AAF5DF237F13B1009CD413 /* EnglishDxe.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = EnglishDxe.uni; sourceTree = ""; }; - A5AAF5E0237F13B1009CD413 /* EnglishDxeExtra.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = EnglishDxeExtra.uni; sourceTree = ""; }; - A5AAF5E1237F13B1009CD413 /* UnicodeCollationEng.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = UnicodeCollationEng.c; sourceTree = ""; }; - A5AAF5E2237F13B1009CD413 /* EnglishDxe.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = EnglishDxe.inf; sourceTree = ""; }; - A5AAF5E3237F13B1009CD413 /* UnicodeCollationEng.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UnicodeCollationEng.h; sourceTree = ""; }; - A5AAF5E5237F13B1009CD413 /* FileName.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = FileName.c; sourceTree = ""; }; - A5AAF5E6237F13B1009CD413 /* Udf.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = Udf.c; sourceTree = ""; }; - A5AAF5E7237F13B1009CD413 /* FileSystemOperations.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = FileSystemOperations.c; sourceTree = ""; }; - A5AAF5E8237F13B1009CD413 /* ComponentName.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ComponentName.c; sourceTree = ""; }; - A5AAF5E9237F13B1009CD413 /* UdfDxe.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = UdfDxe.inf; sourceTree = ""; }; - A5AAF5EA237F13B1009CD413 /* Udf.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Udf.h; sourceTree = ""; }; - A5AAF5EB237F13B1009CD413 /* File.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = File.c; sourceTree = ""; }; - A5AAF5EE237F13B1009CD413 /* LightMemoryTest.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = LightMemoryTest.c; sourceTree = ""; }; - A5AAF5EF237F13B1009CD413 /* GenericMemoryTestDxe.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = GenericMemoryTestDxe.inf; sourceTree = ""; }; - A5AAF5F0237F13B1009CD413 /* GenericMemoryTestDxeExtra.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = GenericMemoryTestDxeExtra.uni; sourceTree = ""; }; - A5AAF5F1237F13B1009CD413 /* GenericMemoryTestDxe.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = GenericMemoryTestDxe.uni; sourceTree = ""; }; - A5AAF5F2237F13B1009CD413 /* LightMemoryTest.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LightMemoryTest.h; sourceTree = ""; }; - A5AAF5F4237F13B1009CD413 /* NullMemoryTest.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NullMemoryTest.h; sourceTree = ""; }; - A5AAF5F5237F13B1009CD413 /* NullMemoryTestDxeExtra.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = NullMemoryTestDxeExtra.uni; sourceTree = ""; }; - A5AAF5F6237F13B1009CD413 /* NullMemoryTestDxe.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = NullMemoryTestDxe.inf; sourceTree = ""; }; - A5AAF5F7237F13B1009CD413 /* NullMemoryTest.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = NullMemoryTest.c; sourceTree = ""; }; - A5AAF5F8237F13B1009CD413 /* NullMemoryTestDxe.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = NullMemoryTestDxe.uni; sourceTree = ""; }; - A5AAF5FA237F13B1009CD413 /* HiiDatabaseDxe.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = HiiDatabaseDxe.inf; sourceTree = ""; }; - A5AAF5FB237F13B1009CD413 /* HiiDatabase.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = HiiDatabase.uni; sourceTree = ""; }; - A5AAF5FC237F13B1009CD413 /* Database.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = Database.c; sourceTree = ""; }; - A5AAF5FD237F13B1009CD413 /* ConfigRouting.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ConfigRouting.c; sourceTree = ""; }; - A5AAF5FE237F13B1009CD413 /* Font.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = Font.c; sourceTree = ""; }; - A5AAF5FF237F13B1009CD413 /* String.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = String.c; sourceTree = ""; }; - A5AAF600237F13B1009CD413 /* Image.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = Image.c; sourceTree = ""; }; - A5AAF601237F13B1009CD413 /* HiiDatabaseExtra.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = HiiDatabaseExtra.uni; sourceTree = ""; }; - A5AAF602237F13B1009CD413 /* HiiDatabase.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HiiDatabase.h; sourceTree = ""; }; - A5AAF603237F13B1009CD413 /* ConfigKeywordHandler.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ConfigKeywordHandler.c; sourceTree = ""; }; - A5AAF604237F13B1009CD413 /* HiiDatabaseEntry.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = HiiDatabaseEntry.c; sourceTree = ""; }; - A5AAF605237F13B1009CD413 /* ImageEx.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ImageEx.c; sourceTree = ""; }; - A5AAF607237F13B1009CD413 /* PciCfg2.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = PciCfg2.c; sourceTree = ""; }; - A5AAF608237F13B1009CD413 /* PcatSingleSegmentPciCfg2Pei.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = PcatSingleSegmentPciCfg2Pei.inf; sourceTree = ""; }; - A5AAF609237F13B1009CD413 /* PcatSingleSegmentPciCfg2Pei.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = PcatSingleSegmentPciCfg2Pei.uni; sourceTree = ""; }; - A5AAF60A237F13B1009CD413 /* PcatSingleSegmentPciCfg2PeiExtra.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = PcatSingleSegmentPciCfg2PeiExtra.uni; sourceTree = ""; }; - A5AAF60C237F13B1009CD413 /* FaultTolerantWritePei.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = FaultTolerantWritePei.inf; sourceTree = ""; }; - A5AAF60D237F13B1009CD413 /* FaultTolerantWritePei.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = FaultTolerantWritePei.uni; sourceTree = ""; }; - A5AAF60E237F13B1009CD413 /* FaultTolerantWritePei.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = FaultTolerantWritePei.c; sourceTree = ""; }; - A5AAF60F237F13B1009CD413 /* FaultTolerantWritePeiExtra.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = FaultTolerantWritePeiExtra.uni; sourceTree = ""; }; - A5AAF611237F13B1009CD413 /* Language.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Language.h; sourceTree = ""; }; - A5AAF612237F13B1009CD413 /* BdsEntry.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = BdsEntry.c; sourceTree = ""; }; - A5AAF613237F13B1009CD413 /* HwErrRecSupport.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = HwErrRecSupport.c; sourceTree = ""; }; - A5AAF614237F13B1009CD413 /* BdsDxe.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = BdsDxe.inf; sourceTree = ""; }; - A5AAF615237F13B1009CD413 /* BdsDxeExtra.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = BdsDxeExtra.uni; sourceTree = ""; }; - A5AAF616237F13B1009CD413 /* BdsDxe.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = BdsDxe.uni; sourceTree = ""; }; - A5AAF617237F13B1009CD413 /* Bds.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Bds.h; sourceTree = ""; }; - A5AAF618237F13B1009CD413 /* Language.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = Language.c; sourceTree = ""; }; - A5AAF619237F13B1009CD413 /* HwErrRecSupport.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HwErrRecSupport.h; sourceTree = ""; }; - A5AAF61B237F13B1009CD413 /* SmmCommunicationBufferExtraDxe.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = SmmCommunicationBufferExtraDxe.uni; sourceTree = ""; }; - A5AAF61C237F13B1009CD413 /* SmmCommunicationBufferDxe.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SmmCommunicationBufferDxe.c; sourceTree = ""; }; - A5AAF61D237F13B1009CD413 /* SmmCommunicationBufferDxe.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = SmmCommunicationBufferDxe.uni; sourceTree = ""; }; - A5AAF61E237F13B1009CD413 /* SmmCommunicationBufferDxe.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = SmmCommunicationBufferDxe.inf; sourceTree = ""; }; - A5AAF620237F13B1009CD413 /* CapsulePei.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = CapsulePei.uni; sourceTree = ""; }; - A5AAF621237F13B1009CD413 /* CapsulePei.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = CapsulePei.inf; sourceTree = ""; }; - A5AAF622237F13B1009CD413 /* CapsuleX64Extra.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = CapsuleX64Extra.uni; sourceTree = ""; }; - A5AAF623237F13B1009CD413 /* CapsulePeiExtra.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = CapsulePeiExtra.uni; sourceTree = ""; }; - A5AAF625237F13B1009CD413 /* X64Entry.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = X64Entry.c; sourceTree = ""; }; - A5AAF626237F13B1009CD413 /* PageFaultHandler.nasm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.nasm; path = PageFaultHandler.nasm; sourceTree = ""; }; - A5AAF628237F13B1009CD413 /* CapsuleCoalesce.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = CapsuleCoalesce.c; sourceTree = ""; }; - A5AAF629237F13B1009CD413 /* CommonHeader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CommonHeader.h; sourceTree = ""; }; - A5AAF62A237F13B1009CD413 /* CapsuleX64.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = CapsuleX64.uni; sourceTree = ""; }; - A5AAF62B237F13B1009CD413 /* Capsule.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Capsule.h; sourceTree = ""; }; - A5AAF62C237F13B1009CD413 /* CapsuleX64.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = CapsuleX64.inf; sourceTree = ""; }; - A5AAF62D237F13B1009CD413 /* UefiCapsule.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = UefiCapsule.c; sourceTree = ""; }; - A5AAF62F237F13B1009CD413 /* ResetSystem.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ResetSystem.h; sourceTree = ""; }; - A5AAF630237F13B1009CD413 /* ResetSystemRuntimeDxeExtra.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = ResetSystemRuntimeDxeExtra.uni; sourceTree = ""; }; - A5AAF631237F13B1009CD413 /* ResetSystemRuntimeDxe.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = ResetSystemRuntimeDxe.uni; sourceTree = ""; }; - A5AAF632237F13B1009CD413 /* ResetSystemRuntimeDxe.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = ResetSystemRuntimeDxe.inf; sourceTree = ""; }; - A5AAF633237F13B1009CD413 /* ResetSystem.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ResetSystem.c; sourceTree = ""; }; - A5AAF635237F13B1009CD413 /* Print.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = Print.c; sourceTree = ""; }; - A5AAF636237F13B1009CD413 /* PrintDxeExtra.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = PrintDxeExtra.uni; sourceTree = ""; }; - A5AAF637237F13B1009CD413 /* PrintDxe.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = PrintDxe.uni; sourceTree = ""; }; - A5AAF638237F13B1009CD413 /* PrintDxe.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = PrintDxe.inf; sourceTree = ""; }; - A5AAF63A237F13B1009CD413 /* SerialIo.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SerialIo.c; sourceTree = ""; }; - A5AAF63B237F13B1009CD413 /* SerialDxe.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = SerialDxe.inf; sourceTree = ""; }; - A5AAF63C237F13B1009CD413 /* SerialDxe.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = SerialDxe.uni; sourceTree = ""; }; - A5AAF63D237F13B1009CD413 /* SerialDxeExtra.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = SerialDxeExtra.uni; sourceTree = ""; }; - A5AAF640237F13B1009CD413 /* SmmLockBoxExtra.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = SmmLockBoxExtra.uni; sourceTree = ""; }; - A5AAF641237F13B1009CD413 /* SmmLockBox.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = SmmLockBox.inf; sourceTree = ""; }; - A5AAF642237F13B1009CD413 /* SmmLockBox.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = SmmLockBox.uni; sourceTree = ""; }; - A5AAF643237F13B1009CD413 /* SmmLockBox.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SmmLockBox.c; sourceTree = ""; }; - A5AAF645237F13B1009CD413 /* FileExplorerDxe.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = FileExplorerDxe.c; sourceTree = ""; }; - A5AAF646237F13B1009CD413 /* FileExplorerDxe.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = FileExplorerDxe.uni; sourceTree = ""; }; - A5AAF647237F13B1009CD413 /* FileExplorerDxeExtra.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = FileExplorerDxeExtra.uni; sourceTree = ""; }; - A5AAF648237F13B1009CD413 /* FileExplorerDxe.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = FileExplorerDxe.inf; sourceTree = ""; }; - A5AAF64B237F13B1009CD413 /* ReportStatusCodeRouterRuntimeDxe.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ReportStatusCodeRouterRuntimeDxe.c; sourceTree = ""; }; - A5AAF64C237F13B1009CD413 /* ReportStatusCodeRouterRuntimeDxeExtra.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = ReportStatusCodeRouterRuntimeDxeExtra.uni; sourceTree = ""; }; - A5AAF64D237F13B1009CD413 /* ReportStatusCodeRouterRuntimeDxe.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = ReportStatusCodeRouterRuntimeDxe.uni; sourceTree = ""; }; - A5AAF64E237F13B1009CD413 /* ReportStatusCodeRouterRuntimeDxe.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = ReportStatusCodeRouterRuntimeDxe.inf; sourceTree = ""; }; - A5AAF64F237F13B1009CD413 /* ReportStatusCodeRouterRuntimeDxe.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ReportStatusCodeRouterRuntimeDxe.h; sourceTree = ""; }; - A5AAF651237F13B1009CD413 /* ReportStatusCodeRouterPei.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = ReportStatusCodeRouterPei.inf; sourceTree = ""; }; - A5AAF652237F13B1009CD413 /* ReportStatusCodeRouterPei.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = ReportStatusCodeRouterPei.uni; sourceTree = ""; }; - A5AAF653237F13B1009CD413 /* ReportStatusCodeRouterPeiExtra.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = ReportStatusCodeRouterPeiExtra.uni; sourceTree = ""; }; - A5AAF654237F13B1009CD413 /* ReportStatusCodeRouterPei.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ReportStatusCodeRouterPei.h; sourceTree = ""; }; - A5AAF655237F13B1009CD413 /* ReportStatusCodeRouterPei.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ReportStatusCodeRouterPei.c; sourceTree = ""; }; - A5AAF657237F13B1009CD413 /* ReportStatusCodeRouterSmm.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ReportStatusCodeRouterSmm.c; sourceTree = ""; }; - A5AAF658237F13B1009CD413 /* ReportStatusCodeRouterSmmExtra.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = ReportStatusCodeRouterSmmExtra.uni; sourceTree = ""; }; - A5AAF659237F13B1009CD413 /* ReportStatusCodeRouterSmm.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = ReportStatusCodeRouterSmm.uni; sourceTree = ""; }; - A5AAF65A237F13B1009CD413 /* ReportStatusCodeRouterSmm.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ReportStatusCodeRouterSmm.h; sourceTree = ""; }; - A5AAF65B237F13B1009CD413 /* ReportStatusCodeRouterSmm.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = ReportStatusCodeRouterSmm.inf; sourceTree = ""; }; - A5AAF65D237F13B1009CD413 /* CapsuleCache.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = CapsuleCache.c; sourceTree = ""; }; - A5AAF65E237F13B1009CD413 /* CapsuleCacheNull.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = CapsuleCacheNull.c; sourceTree = ""; }; - A5AAF660237F13B1009CD413 /* SaveLongModeContext.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SaveLongModeContext.c; sourceTree = ""; }; - A5AAF661237F13B1009CD413 /* CapsuleService.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CapsuleService.h; sourceTree = ""; }; - A5AAF662237F13B1009CD413 /* CapsuleRuntimeDxe.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = CapsuleRuntimeDxe.uni; sourceTree = ""; }; - A5AAF663237F13B1009CD413 /* CapsuleRuntimeDxe.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = CapsuleRuntimeDxe.inf; sourceTree = ""; }; - A5AAF664237F13B1009CD413 /* CapsuleRuntimeDxeExtra.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = CapsuleRuntimeDxeExtra.uni; sourceTree = ""; }; - A5AAF665237F13B1009CD413 /* CapsuleReset.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = CapsuleReset.c; sourceTree = ""; }; - A5AAF666237F13B1009CD413 /* SaveLongModeContext.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SaveLongModeContext.c; sourceTree = ""; }; - A5AAF668237F13B1009CD413 /* CapsuleReset.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = CapsuleReset.c; sourceTree = ""; }; - A5AAF669237F13B1009CD413 /* CapsuleService.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = CapsuleService.c; sourceTree = ""; }; - A5AAF66B237F13B1009CD413 /* Expression.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = Expression.c; sourceTree = ""; }; - A5AAF66C237F13B1009CD413 /* SetupBrowserExtra.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = SetupBrowserExtra.uni; sourceTree = ""; }; - A5AAF66D237F13B1009CD413 /* Setup.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Setup.h; sourceTree = ""; }; - A5AAF66E237F13B1009CD413 /* Presentation.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = Presentation.c; sourceTree = ""; }; - A5AAF66F237F13B1009CD413 /* SetupBrowserDxe.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = SetupBrowserDxe.inf; sourceTree = ""; }; - A5AAF670237F13B1009CD413 /* Setup.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = Setup.c; sourceTree = ""; }; - A5AAF671237F13B1009CD413 /* Expression.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Expression.h; sourceTree = ""; }; - A5AAF672237F13B1009CD413 /* IfrParse.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = IfrParse.c; sourceTree = ""; }; - A5AAF673237F13B1009CD413 /* SetupBrowser.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = SetupBrowser.uni; sourceTree = ""; }; - A5AAF676237F13B1009CD413 /* GraphicsConsoleDxeExtra.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = GraphicsConsoleDxeExtra.uni; sourceTree = ""; }; - A5AAF677237F13B1009CD413 /* GraphicsConsole.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GraphicsConsole.h; sourceTree = ""; }; - A5AAF678237F13B1009CD413 /* ComponentName.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ComponentName.c; sourceTree = ""; }; - A5AAF679237F13B1009CD413 /* GraphicsConsoleDxe.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = GraphicsConsoleDxe.inf; sourceTree = ""; }; - A5AAF67A237F13B1009CD413 /* GraphicsConsoleDxe.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = GraphicsConsoleDxe.uni; sourceTree = ""; }; - A5AAF67B237F13B1009CD413 /* LaffStd.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = LaffStd.c; sourceTree = ""; }; - A5AAF67C237F13B1009CD413 /* GraphicsConsole.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = GraphicsConsole.c; sourceTree = ""; }; - A5AAF67E237F13B1009CD413 /* TerminalDxeExtra.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = TerminalDxeExtra.uni; sourceTree = ""; }; - A5AAF67F237F13B1009CD413 /* TerminalDxe.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = TerminalDxe.uni; sourceTree = ""; }; - A5AAF680237F13B1009CD413 /* TerminalConOut.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = TerminalConOut.c; sourceTree = ""; }; - A5AAF681237F13B1009CD413 /* TerminalConIn.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = TerminalConIn.c; sourceTree = ""; }; - A5AAF682237F13B1009CD413 /* TerminalDxe.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = TerminalDxe.inf; sourceTree = ""; }; - A5AAF683237F13B1009CD413 /* Terminal.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = Terminal.c; sourceTree = ""; }; - A5AAF684237F13B1009CD413 /* Vtutf8.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = Vtutf8.c; sourceTree = ""; }; - A5AAF685237F13B1009CD413 /* ComponentName.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ComponentName.c; sourceTree = ""; }; - A5AAF686237F13B1009CD413 /* Terminal.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Terminal.h; sourceTree = ""; }; - A5AAF687237F13B1009CD413 /* Ansi.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = Ansi.c; sourceTree = ""; }; - A5AAF689237F13B1009CD413 /* ConPlatformDxeExtra.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = ConPlatformDxeExtra.uni; sourceTree = ""; }; - A5AAF68A237F13B1009CD413 /* ConPlatform.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ConPlatform.c; sourceTree = ""; }; - A5AAF68B237F13B1009CD413 /* ConPlatformDxe.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = ConPlatformDxe.inf; sourceTree = ""; }; - A5AAF68C237F13B1009CD413 /* ComponentName.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ComponentName.c; sourceTree = ""; }; - A5AAF68D237F13B1009CD413 /* ConPlatformDxe.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = ConPlatformDxe.uni; sourceTree = ""; }; - A5AAF68E237F13B1009CD413 /* ConPlatform.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ConPlatform.h; sourceTree = ""; }; - A5AAF690237F13B1009CD413 /* ConSplitter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ConSplitter.h; sourceTree = ""; }; - A5AAF691237F13B1009CD413 /* ConSplitterGraphics.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ConSplitterGraphics.c; sourceTree = ""; }; - A5AAF692237F13B1009CD413 /* ComponentName.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ComponentName.c; sourceTree = ""; }; - A5AAF693237F13B1009CD413 /* ConSplitter.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ConSplitter.c; sourceTree = ""; }; - A5AAF694237F13B1009CD413 /* ConSplitterDxe.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = ConSplitterDxe.uni; sourceTree = ""; }; - A5AAF695237F13B1009CD413 /* ConSplitterDxeExtra.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = ConSplitterDxeExtra.uni; sourceTree = ""; }; - A5AAF696237F13B1009CD413 /* ConSplitterDxe.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = ConSplitterDxe.inf; sourceTree = ""; }; - A5AAF698237F13B1009CD413 /* GraphicsOutput.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GraphicsOutput.h; sourceTree = ""; }; - A5AAF699237F13B1009CD413 /* ComponentName.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ComponentName.c; sourceTree = ""; }; - A5AAF69A237F13B1009CD413 /* GraphicsOutputDxe.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = GraphicsOutputDxe.inf; sourceTree = ""; }; - A5AAF69B237F13B1009CD413 /* GraphicsOutput.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = GraphicsOutput.c; sourceTree = ""; }; - A5AAF69D237F13B1009CD413 /* Metronome.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Metronome.inf; sourceTree = ""; }; - A5AAF69E237F13B1009CD413 /* Metronome.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = Metronome.c; sourceTree = ""; }; - A5AAF69F237F13B1009CD413 /* Metronome.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Metronome.uni; sourceTree = ""; }; - A5AAF6A0237F13B1009CD413 /* MetronomeExtra.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = MetronomeExtra.uni; sourceTree = ""; }; - A5AAF6A1237F13B1009CD413 /* Metronome.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Metronome.h; sourceTree = ""; }; - A5AAF6A4237F13B1009CD413 /* FmpAuthenticationLib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FmpAuthenticationLib.h; sourceTree = ""; }; - A5AAF6A5237F13B1009CD413 /* PlatformHookLib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PlatformHookLib.h; sourceTree = ""; }; - A5AAF6A6237F13B1009CD413 /* UefiBootManagerLib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UefiBootManagerLib.h; sourceTree = ""; }; - A5AAF6A7237F13B1009CD413 /* HttpLib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HttpLib.h; sourceTree = ""; }; - A5AAF6A8237F13B1009CD413 /* TpmMeasurementLib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TpmMeasurementLib.h; sourceTree = ""; }; - A5AAF6A9237F13B1009CD413 /* PciHostBridgeLib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PciHostBridgeLib.h; sourceTree = ""; }; - A5AAF6AA237F13B1009CD413 /* SecurityManagementLib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SecurityManagementLib.h; sourceTree = ""; }; - A5AAF6AB237F13B1009CD413 /* DisplayUpdateProgressLib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DisplayUpdateProgressLib.h; sourceTree = ""; }; - A5AAF6AC237F13B1009CD413 /* IpmiLib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IpmiLib.h; sourceTree = ""; }; - A5AAF6AD237F13B1009CD413 /* DebugAgentLib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DebugAgentLib.h; sourceTree = ""; }; - A5AAF6AE237F13B1009CD413 /* UefiHiiServicesLib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UefiHiiServicesLib.h; sourceTree = ""; }; - A5AAF6AF237F13B1009CD413 /* PlatformBootManagerLib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PlatformBootManagerLib.h; sourceTree = ""; }; - A5AAF6B0237F13B1009CD413 /* UdpIoLib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UdpIoLib.h; sourceTree = ""; }; - A5AAF6B1237F13B1009CD413 /* MemoryProfileLib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MemoryProfileLib.h; sourceTree = ""; }; - A5AAF6B2237F13B1009CD413 /* SmmCorePlatformHookLib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SmmCorePlatformHookLib.h; sourceTree = ""; }; - A5AAF6B3237F13B1009CD413 /* CustomizedDisplayLib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CustomizedDisplayLib.h; sourceTree = ""; }; - A5AAF6B4237F13B1009CD413 /* ResetUtilityLib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ResetUtilityLib.h; sourceTree = ""; }; - A5AAF6B5237F13B1009CD413 /* SortLib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SortLib.h; sourceTree = ""; }; - A5AAF6B6237F13B1009CD413 /* FrameBufferBltLib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FrameBufferBltLib.h; sourceTree = ""; }; - A5AAF6B7237F13B1009CD413 /* NetLib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NetLib.h; sourceTree = ""; }; - A5AAF6B8237F13B1009CD413 /* OemHookStatusCodeLib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OemHookStatusCodeLib.h; sourceTree = ""; }; - A5AAF6B9237F13B1009CD413 /* BmpSupportLib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BmpSupportLib.h; sourceTree = ""; }; - A5AAF6BA237F13B1009CD413 /* LockBoxLib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LockBoxLib.h; sourceTree = ""; }; - A5AAF6BB237F13B1009CD413 /* ResetSystemLib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ResetSystemLib.h; sourceTree = ""; }; - A5AAF6BC237F13B1009CD413 /* VarCheckLib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = VarCheckLib.h; sourceTree = ""; }; - A5AAF6BD237F13B1009CD413 /* RecoveryLib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RecoveryLib.h; sourceTree = ""; }; - A5AAF6BE237F13B1009CD413 /* AuthVariableLib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AuthVariableLib.h; sourceTree = ""; }; - A5AAF6BF237F13B1009CD413 /* HiiLib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HiiLib.h; sourceTree = ""; }; - A5AAF6C0237F13B1009CD413 /* NonDiscoverableDeviceRegistrationLib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NonDiscoverableDeviceRegistrationLib.h; sourceTree = ""; }; - A5AAF6C1237F13B1009CD413 /* TcpIoLib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TcpIoLib.h; sourceTree = ""; }; - A5AAF6C2237F13B1009CD413 /* BootLogoLib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BootLogoLib.h; sourceTree = ""; }; - A5AAF6C3237F13B1009CD413 /* PlatformVarCleanupLib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PlatformVarCleanupLib.h; sourceTree = ""; }; - A5AAF6C4237F13B1009CD413 /* CpuExceptionHandlerLib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CpuExceptionHandlerLib.h; sourceTree = ""; }; - A5AAF6C5237F13B1009CD413 /* CapsuleLib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CapsuleLib.h; sourceTree = ""; }; - A5AAF6C6237F13B1009CD413 /* S3Lib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = S3Lib.h; sourceTree = ""; }; - A5AAF6C7237F13B1009CD413 /* FileExplorerLib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FileExplorerLib.h; sourceTree = ""; }; - A5AAF6C9237F13B1009CD413 /* Ps2Policy.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Ps2Policy.h; sourceTree = ""; }; - A5AAF6CA237F13B1009CD413 /* FileExplorer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FileExplorer.h; sourceTree = ""; }; - A5AAF6CB237F13B1009CD413 /* UfsHostControllerPlatform.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UfsHostControllerPlatform.h; sourceTree = ""; }; - A5AAF6CC237F13B1009CD413 /* EsrtManagement.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EsrtManagement.h; sourceTree = ""; }; - A5AAF6CD237F13B1009CD413 /* NonDiscoverableDevice.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NonDiscoverableDevice.h; sourceTree = ""; }; - A5AAF6CE237F13B1009CD413 /* PlatformSpecificResetFilter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PlatformSpecificResetFilter.h; sourceTree = ""; }; - A5AAF6CF237F13B1009CD413 /* IpmiProtocol.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IpmiProtocol.h; sourceTree = ""; }; - A5AAF6D0237F13B1009CD413 /* SwapAddressRange.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SwapAddressRange.h; sourceTree = ""; }; - A5AAF6D1237F13B1009CD413 /* DebuggerConfiguration.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DebuggerConfiguration.h; sourceTree = ""; }; - A5AAF6D2237F13B1009CD413 /* IoMmu.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IoMmu.h; sourceTree = ""; }; - A5AAF6D3237F13B1009CD413 /* PlatformSpecificResetHandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PlatformSpecificResetHandler.h; sourceTree = ""; }; - A5AAF6D4237F13B1009CD413 /* LoadPe32Image.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LoadPe32Image.h; sourceTree = ""; }; - A5AAF6D5237F13B1009CD413 /* VarCheck.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = VarCheck.h; sourceTree = ""; }; - A5AAF6D6237F13B1009CD413 /* FirmwareManagementProgress.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FirmwareManagementProgress.h; sourceTree = ""; }; - A5AAF6D7237F13B1009CD413 /* AtaAtapiPolicy.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AtaAtapiPolicy.h; sourceTree = ""; }; - A5AAF6D8237F13B1009CD413 /* SmmMemoryAttribute.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SmmMemoryAttribute.h; sourceTree = ""; }; - A5AAF6D9237F13B1009CD413 /* SdMmcOverride.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SdMmcOverride.h; sourceTree = ""; }; - A5AAF6DA237F13B1009CD413 /* FormBrowserEx2.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FormBrowserEx2.h; sourceTree = ""; }; - A5AAF6DB237F13B1009CD413 /* SmmSwapAddressRange.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SmmSwapAddressRange.h; sourceTree = ""; }; - A5AAF6DC237F13B1009CD413 /* UfsHostController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UfsHostController.h; sourceTree = ""; }; - A5AAF6DD237F13B1009CD413 /* SmmFirmwareVolumeBlock.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SmmFirmwareVolumeBlock.h; sourceTree = ""; }; - A5AAF6DE237F13B1009CD413 /* EbcVmTest.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EbcVmTest.h; sourceTree = ""; }; - A5AAF6DF237F13B1009CD413 /* PlatformLogo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PlatformLogo.h; sourceTree = ""; }; - A5AAF6E0237F13B1009CD413 /* PeCoffImageEmulator.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PeCoffImageEmulator.h; sourceTree = ""; }; - A5AAF6E1237F13B1009CD413 /* Print2.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Print2.h; sourceTree = ""; }; - A5AAF6E2237F13B1009CD413 /* BootLogo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BootLogo.h; sourceTree = ""; }; - A5AAF6E3237F13B1009CD413 /* SmmReadyToBoot.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SmmReadyToBoot.h; sourceTree = ""; }; - A5AAF6E4237F13B1009CD413 /* SmmLegacyBoot.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SmmLegacyBoot.h; sourceTree = ""; }; - A5AAF6E5237F13B1009CD413 /* SmmVariable.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SmmVariable.h; sourceTree = ""; }; - A5AAF6E6237F13B1009CD413 /* SmmFaultTolerantWrite.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SmmFaultTolerantWrite.h; sourceTree = ""; }; - A5AAF6E7237F13B1009CD413 /* LockBox.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LockBox.h; sourceTree = ""; }; - A5AAF6E8237F13B1009CD413 /* GenericMemoryTest.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GenericMemoryTest.h; sourceTree = ""; }; - A5AAF6E9237F13B1009CD413 /* DisplayProtocol.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DisplayProtocol.h; sourceTree = ""; }; - A5AAF6EA237F13B1009CD413 /* BootLogo2.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BootLogo2.h; sourceTree = ""; }; - A5AAF6EB237F13B1009CD413 /* FormBrowserEx.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FormBrowserEx.h; sourceTree = ""; }; - A5AAF6EC237F13B1009CD413 /* VariableLock.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = VariableLock.h; sourceTree = ""; }; - A5AAF6ED237F13B1009CD413 /* EbcSimpleDebugger.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EbcSimpleDebugger.h; sourceTree = ""; }; - A5AAF6EE237F13B1009CD413 /* SmmVarCheck.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SmmVarCheck.h; sourceTree = ""; }; - A5AAF6EF237F13B1009CD413 /* SmmExitBootServices.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SmmExitBootServices.h; sourceTree = ""; }; - A5AAF6F0237F13B1009CD413 /* FaultTolerantWrite.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FaultTolerantWrite.h; sourceTree = ""; }; - A5AAF6F2237F13B1009CD413 /* EndOfS3Resume.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EndOfS3Resume.h; sourceTree = ""; }; - A5AAF6F3237F13B1009CD413 /* MdeModulePkgTokenSpace.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MdeModulePkgTokenSpace.h; sourceTree = ""; }; - A5AAF6F4237F13B1009CD413 /* LoadModuleAtFixedAddress.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LoadModuleAtFixedAddress.h; sourceTree = ""; }; - A5AAF6F5237F13B1009CD413 /* SystemNvDataGuid.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SystemNvDataGuid.h; sourceTree = ""; }; - A5AAF6F6237F13B1009CD413 /* ExtendedFirmwarePerformance.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ExtendedFirmwarePerformance.h; sourceTree = ""; }; - A5AAF6F7237F13B1009CD413 /* MdeModuleHii.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MdeModuleHii.h; sourceTree = ""; }; - A5AAF6F8237F13B1009CD413 /* NonDiscoverableDevice.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NonDiscoverableDevice.h; sourceTree = ""; }; - A5AAF6F9237F13B1009CD413 /* PlatformHasAcpi.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PlatformHasAcpi.h; sourceTree = ""; }; - A5AAF6FA237F13B1009CD413 /* SmmVariableCommon.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SmmVariableCommon.h; sourceTree = ""; }; - A5AAF6FB237F13B1009CD413 /* MemoryProfile.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MemoryProfile.h; sourceTree = ""; }; - A5AAF6FC237F13B1009CD413 /* RamDiskHii.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RamDiskHii.h; sourceTree = ""; }; - A5AAF6FD237F13B1009CD413 /* PcdDataBaseSignatureGuid.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PcdDataBaseSignatureGuid.h; sourceTree = ""; }; - A5AAF6FE237F13B1009CD413 /* VariableIndexTable.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = VariableIndexTable.h; sourceTree = ""; }; - A5AAF6FF237F13B1009CD413 /* ConsoleInDevice.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ConsoleInDevice.h; sourceTree = ""; }; - A5AAF700237F13B1009CD413 /* SerialPortLibVendor.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SerialPortLibVendor.h; sourceTree = ""; }; - A5AAF701237F13B1009CD413 /* RecoveryDevice.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RecoveryDevice.h; sourceTree = ""; }; - A5AAF702237F13B1009CD413 /* IdleLoopEvent.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IdleLoopEvent.h; sourceTree = ""; }; - A5AAF703237F13B1009CD413 /* Performance.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Performance.h; sourceTree = ""; }; - A5AAF704237F13B1009CD413 /* UsbKeyBoardLayout.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UsbKeyBoardLayout.h; sourceTree = ""; }; - A5AAF705237F13B1009CD413 /* ZeroGuid.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ZeroGuid.h; sourceTree = ""; }; - A5AAF706237F13B1009CD413 /* PcdDataBaseHobGuid.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PcdDataBaseHobGuid.h; sourceTree = ""; }; - A5AAF707237F13B1009CD413 /* LzmaDecompress.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LzmaDecompress.h; sourceTree = ""; }; - A5AAF708237F13B1009CD413 /* Ip4Config2Hii.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Ip4Config2Hii.h; sourceTree = ""; }; - A5AAF709237F13B1009CD413 /* PiSmmMemoryAttributesTable.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PiSmmMemoryAttributesTable.h; sourceTree = ""; }; - A5AAF70A237F13B1009CD413 /* VarErrorFlag.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = VarErrorFlag.h; sourceTree = ""; }; - A5AAF70B237F13B1009CD413 /* ConsoleOutDevice.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ConsoleOutDevice.h; sourceTree = ""; }; - A5AAF70C237F13B1009CD413 /* SmmLockBox.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SmmLockBox.h; sourceTree = ""; }; - A5AAF70D237F13B1009CD413 /* BootScriptExecutorVariable.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BootScriptExecutorVariable.h; sourceTree = ""; }; - A5AAF70E237F13B1009CD413 /* MtcVendor.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MtcVendor.h; sourceTree = ""; }; - A5AAF70F237F13B1009CD413 /* DriverSampleHii.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DriverSampleHii.h; sourceTree = ""; }; - A5AAF710237F13B1009CD413 /* StandardErrorDevice.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = StandardErrorDevice.h; sourceTree = ""; }; - A5AAF711237F13B1009CD413 /* MemoryStatusCodeRecord.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MemoryStatusCodeRecord.h; sourceTree = ""; }; - A5AAF712237F13B1009CD413 /* S3SmmInitDone.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = S3SmmInitDone.h; sourceTree = ""; }; - A5AAF713237F13B1009CD413 /* StatusCodeDataTypeDebug.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = StatusCodeDataTypeDebug.h; sourceTree = ""; }; - A5AAF714237F13B1009CD413 /* EventExitBootServiceFailed.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EventExitBootServiceFailed.h; sourceTree = ""; }; - A5AAF715237F13B1009CD413 /* S3StorageDeviceInitList.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = S3StorageDeviceInitList.h; sourceTree = ""; }; - A5AAF716237F13B1009CD413 /* CapsuleVendor.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CapsuleVendor.h; sourceTree = ""; }; - A5AAF717237F13B1009CD413 /* ConnectConInEvent.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ConnectConInEvent.h; sourceTree = ""; }; - A5AAF718237F13B1009CD413 /* VlanConfigHii.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = VlanConfigHii.h; sourceTree = ""; }; - A5AAF719237F13B1009CD413 /* SmiHandlerProfile.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SmiHandlerProfile.h; sourceTree = ""; }; - A5AAF71A237F13B1009CD413 /* PerformanceMeasurement.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PerformanceMeasurement.h; sourceTree = ""; }; - A5AAF71B237F13B1009CD413 /* HiiBootMaintenanceFormset.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HiiBootMaintenanceFormset.h; sourceTree = ""; }; - A5AAF71C237F13B1009CD413 /* PlatDriOverrideHii.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PlatDriOverrideHii.h; sourceTree = ""; }; - A5AAF71D237F13B1009CD413 /* DebugMask.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DebugMask.h; sourceTree = ""; }; - A5AAF71E237F13B1009CD413 /* VariableFormat.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = VariableFormat.h; sourceTree = ""; }; - A5AAF71F237F13B1009CD413 /* AcpiS3Context.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AcpiS3Context.h; sourceTree = ""; }; - A5AAF720237F13B1009CD413 /* StatusCodeDataTypeVariable.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = StatusCodeDataTypeVariable.h; sourceTree = ""; }; - A5AAF721237F13B1009CD413 /* Ip4IScsiConfigHii.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Ip4IScsiConfigHii.h; sourceTree = ""; }; - A5AAF722237F13B1009CD413 /* Crc32GuidedSectionExtraction.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Crc32GuidedSectionExtraction.h; sourceTree = ""; }; - A5AAF723237F13B1009CD413 /* TtyTerm.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TtyTerm.h; sourceTree = ""; }; - A5AAF724237F13B1009CD413 /* PiSmmCommunicationRegionTable.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PiSmmCommunicationRegionTable.h; sourceTree = ""; }; - A5AAF725237F13B1009CD413 /* StatusCodeCallbackGuid.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = StatusCodeCallbackGuid.h; sourceTree = ""; }; - A5AAF726237F13B1009CD413 /* HiiResourceSampleHii.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HiiResourceSampleHii.h; sourceTree = ""; }; - A5AAF727237F13B1009CD413 /* MemoryTypeInformation.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MemoryTypeInformation.h; sourceTree = ""; }; - A5AAF728237F13B1009CD413 /* FirmwarePerformance.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FirmwarePerformance.h; sourceTree = ""; }; - A5AAF729237F13B1009CD413 /* FaultTolerantWrite.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FaultTolerantWrite.h; sourceTree = ""; }; - A5AAF72B237F13B1009CD413 /* SerialPortPei.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SerialPortPei.h; sourceTree = ""; }; - A5AAF72C237F13B1009CD413 /* PlatformSpecificResetFilter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PlatformSpecificResetFilter.h; sourceTree = ""; }; - A5AAF72D237F13B1009CD413 /* Debug.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Debug.h; sourceTree = ""; }; - A5AAF72E237F13B1009CD413 /* SdMmcHostController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SdMmcHostController.h; sourceTree = ""; }; - A5AAF72F237F13B1009CD413 /* IoMmu.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IoMmu.h; sourceTree = ""; }; - A5AAF730237F13B1009CD413 /* Usb2HostController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Usb2HostController.h; sourceTree = ""; }; - A5AAF731237F13B1009CD413 /* AtaController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AtaController.h; sourceTree = ""; }; - A5AAF732237F13B1009CD413 /* AtaAhciController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AtaAhciController.h; sourceTree = ""; }; - A5AAF733237F13B1009CD413 /* PlatformSpecificResetHandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PlatformSpecificResetHandler.h; sourceTree = ""; }; - A5AAF734237F13B1009CD413 /* AtaPassThru.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AtaPassThru.h; sourceTree = ""; }; - A5AAF735237F13B1009CD413 /* IpmiPpi.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IpmiPpi.h; sourceTree = ""; }; - A5AAF736237F13B1009CD413 /* UfsHostController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UfsHostController.h; sourceTree = ""; }; - A5AAF737237F13B1009CD413 /* PlatformSpecificResetNotification.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PlatformSpecificResetNotification.h; sourceTree = ""; }; - A5AAF738237F13B1009CD413 /* StorageSecurityCommand.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = StorageSecurityCommand.h; sourceTree = ""; }; - A5AAF739237F13B1009CD413 /* SmmControl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SmmControl.h; sourceTree = ""; }; - A5AAF73A237F13B1009CD413 /* SmmCommunication.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SmmCommunication.h; sourceTree = ""; }; - A5AAF73B237F13B1009CD413 /* NvmExpressPassThru.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NvmExpressPassThru.h; sourceTree = ""; }; - A5AAF73C237F13B1009CD413 /* UsbHostController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UsbHostController.h; sourceTree = ""; }; - A5AAF73D237F13B1009CD413 /* UsbIo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UsbIo.h; sourceTree = ""; }; - A5AAF73E237F13B1009CD413 /* NvmExpressHostController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NvmExpressHostController.h; sourceTree = ""; }; - A5AAF73F237F13B1009CD413 /* UsbController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UsbController.h; sourceTree = ""; }; - A5AAF740237F13B1009CD413 /* SmmAccess.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SmmAccess.h; sourceTree = ""; }; - A5AAF741237F13B1009CD413 /* CapsuleOnDisk.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CapsuleOnDisk.h; sourceTree = ""; }; - A5AAF742237F13B1009CD413 /* PostBootScriptTable.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PostBootScriptTable.h; sourceTree = ""; }; - A5AAF743237F13B1009CD413 /* SecPerformance.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SecPerformance.h; sourceTree = ""; }; - A5AAF744237F13B1009CD413 /* MdeModulePkgExtra.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = MdeModulePkgExtra.uni; sourceTree = ""; }; - A5AAF748237F13B1009CD413 /* SdBlockIoPei.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SdBlockIoPei.c; sourceTree = ""; }; - A5AAF749237F13B1009CD413 /* SdHcMem.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SdHcMem.c; sourceTree = ""; }; - A5AAF74A237F13B2009CD413 /* SdBlockIoPeiExtra.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = SdBlockIoPeiExtra.uni; sourceTree = ""; }; - A5AAF74B237F13B2009CD413 /* SdHci.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SdHci.h; sourceTree = ""; }; - A5AAF74C237F13B2009CD413 /* SdBlockIoPei.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = SdBlockIoPei.uni; sourceTree = ""; }; - A5AAF74D237F13B2009CD413 /* SdBlockIoPei.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = SdBlockIoPei.inf; sourceTree = ""; }; - A5AAF74E237F13B2009CD413 /* SdHcMem.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SdHcMem.h; sourceTree = ""; }; - A5AAF74F237F13B2009CD413 /* SdBlockIoPei.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SdBlockIoPei.h; sourceTree = ""; }; - A5AAF750237F13B2009CD413 /* DmaMem.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = DmaMem.c; sourceTree = ""; }; - A5AAF751237F13B2009CD413 /* SdHci.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SdHci.c; sourceTree = ""; }; - A5AAF753237F13B2009CD413 /* EmmcHcMem.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = EmmcHcMem.c; sourceTree = ""; }; - A5AAF754237F13B2009CD413 /* EmmcHci.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = EmmcHci.c; sourceTree = ""; }; - A5AAF755237F13B2009CD413 /* EmmcBlockIoPei.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = EmmcBlockIoPei.c; sourceTree = ""; }; - A5AAF756237F13B2009CD413 /* EmmcBlockIoPeiExtra.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = EmmcBlockIoPeiExtra.uni; sourceTree = ""; }; - A5AAF757237F13B2009CD413 /* EmmcHcMem.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EmmcHcMem.h; sourceTree = ""; }; - A5AAF758237F13B2009CD413 /* EmmcHci.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EmmcHci.h; sourceTree = ""; }; - A5AAF759237F13B2009CD413 /* EmmcBlockIoPei.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EmmcBlockIoPei.h; sourceTree = ""; }; - A5AAF75A237F13B2009CD413 /* DmaMem.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = DmaMem.c; sourceTree = ""; }; - A5AAF75B237F13B2009CD413 /* EmmcBlockIoPei.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = EmmcBlockIoPei.uni; sourceTree = ""; }; - A5AAF75C237F13B2009CD413 /* EmmcBlockIoPei.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = EmmcBlockIoPei.inf; sourceTree = ""; }; - A5AAF75E237F13B2009CD413 /* SdBlockIo.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SdBlockIo.c; sourceTree = ""; }; - A5AAF75F237F13B2009CD413 /* SdDxe.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = SdDxe.uni; sourceTree = ""; }; - A5AAF760237F13B2009CD413 /* SdDxe.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SdDxe.c; sourceTree = ""; }; - A5AAF761237F13B2009CD413 /* SdDxe.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = SdDxe.inf; sourceTree = ""; }; - A5AAF762237F13B2009CD413 /* ComponentName.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ComponentName.c; sourceTree = ""; }; - A5AAF763237F13B2009CD413 /* SdDiskInfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SdDiskInfo.h; sourceTree = ""; }; - A5AAF764237F13B2009CD413 /* SdBlockIo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SdBlockIo.h; sourceTree = ""; }; - A5AAF765237F13B2009CD413 /* SdDxe.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SdDxe.h; sourceTree = ""; }; - A5AAF766237F13B2009CD413 /* SdDxeExtra.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = SdDxeExtra.uni; sourceTree = ""; }; - A5AAF767237F13B2009CD413 /* SdDiskInfo.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SdDiskInfo.c; sourceTree = ""; }; - A5AAF769237F13B2009CD413 /* EmmcDxe.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EmmcDxe.h; sourceTree = ""; }; - A5AAF76A237F13B2009CD413 /* EmmcDiskInfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EmmcDiskInfo.h; sourceTree = ""; }; - A5AAF76B237F13B2009CD413 /* EmmcDxe.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = EmmcDxe.uni; sourceTree = ""; }; - A5AAF76C237F13B2009CD413 /* EmmcBlockIo.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = EmmcBlockIo.c; sourceTree = ""; }; - A5AAF76D237F13B2009CD413 /* ComponentName.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ComponentName.c; sourceTree = ""; }; - A5AAF76E237F13B2009CD413 /* EmmcDxe.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = EmmcDxe.inf; sourceTree = ""; }; - A5AAF76F237F13B2009CD413 /* EmmcDxe.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = EmmcDxe.c; sourceTree = ""; }; - A5AAF770237F13B2009CD413 /* EmmcDiskInfo.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = EmmcDiskInfo.c; sourceTree = ""; }; - A5AAF771237F13B2009CD413 /* EmmcBlockIo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EmmcBlockIo.h; sourceTree = ""; }; - A5AAF772237F13B2009CD413 /* EmmcDxeExtra.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = EmmcDxeExtra.uni; sourceTree = ""; }; - A5AAF775237F13B2009CD413 /* AtapiPeim.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AtapiPeim.h; sourceTree = ""; }; - A5AAF776237F13B2009CD413 /* IdeBusPei.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = IdeBusPei.uni; sourceTree = ""; }; - A5AAF777237F13B2009CD413 /* IdeBusPeiExtra.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = IdeBusPeiExtra.uni; sourceTree = ""; }; - A5AAF778237F13B2009CD413 /* IdeBusPei.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = IdeBusPei.inf; sourceTree = ""; }; - A5AAF779237F13B2009CD413 /* AtapiPeim.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = AtapiPeim.c; sourceTree = ""; }; - A5AAF77B237F13B2009CD413 /* SdMmcPciHci.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SdMmcPciHci.c; sourceTree = ""; }; - A5AAF77C237F13B2009CD413 /* SdMmcPciHcDxeExtra.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = SdMmcPciHcDxeExtra.uni; sourceTree = ""; }; - A5AAF77D237F13B2009CD413 /* SdDevice.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SdDevice.c; sourceTree = ""; }; - A5AAF77E237F13B2009CD413 /* ComponentName.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ComponentName.c; sourceTree = ""; }; - A5AAF77F237F13B2009CD413 /* SdMmcPciHcDxe.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SdMmcPciHcDxe.h; sourceTree = ""; }; - A5AAF780237F13B2009CD413 /* SdMmcPciHci.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SdMmcPciHci.h; sourceTree = ""; }; - A5AAF781237F13B2009CD413 /* EmmcDevice.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = EmmcDevice.c; sourceTree = ""; }; - A5AAF782237F13B2009CD413 /* SdMmcPciHcDxe.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = SdMmcPciHcDxe.inf; sourceTree = ""; }; - A5AAF783237F13B2009CD413 /* SdMmcPciHcDxe.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = SdMmcPciHcDxe.uni; sourceTree = ""; }; - A5AAF784237F13B2009CD413 /* SdMmcPciHcDxe.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SdMmcPciHcDxe.c; sourceTree = ""; }; - A5AAF786237F13B2009CD413 /* IncompatiblePciDeviceSupportDxe.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = IncompatiblePciDeviceSupportDxe.inf; sourceTree = ""; }; - A5AAF787237F13B2009CD413 /* IncompatiblePciDeviceSupportExtra.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = IncompatiblePciDeviceSupportExtra.uni; sourceTree = ""; }; - A5AAF788237F13B2009CD413 /* IncompatiblePciDeviceSupport.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = IncompatiblePciDeviceSupport.uni; sourceTree = ""; }; - A5AAF789237F13B2009CD413 /* IncompatiblePciDeviceSupport.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = IncompatiblePciDeviceSupport.c; sourceTree = ""; }; - A5AAF78B237F13B2009CD413 /* PciEnumerator.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = PciEnumerator.c; sourceTree = ""; }; - A5AAF78C237F13B2009CD413 /* PciDriverOverride.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = PciDriverOverride.c; sourceTree = ""; }; - A5AAF78D237F13B2009CD413 /* PciResourceSupport.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = PciResourceSupport.c; sourceTree = ""; }; - A5AAF78E237F13B2009CD413 /* PciDeviceSupport.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = PciDeviceSupport.c; sourceTree = ""; }; - A5AAF78F237F13B2009CD413 /* PciIo.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = PciIo.c; sourceTree = ""; }; - A5AAF790237F13B2009CD413 /* PciCommand.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = PciCommand.c; sourceTree = ""; }; - A5AAF791237F13B2009CD413 /* PciHotPlugSupport.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = PciHotPlugSupport.c; sourceTree = ""; }; - A5AAF792237F13B2009CD413 /* PciOptionRomSupport.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PciOptionRomSupport.h; sourceTree = ""; }; - A5AAF793237F13B2009CD413 /* PciRomTable.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PciRomTable.h; sourceTree = ""; }; - A5AAF794237F13B2009CD413 /* PciEnumeratorSupport.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = PciEnumeratorSupport.c; sourceTree = ""; }; - A5AAF795237F13B2009CD413 /* PciLib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PciLib.h; sourceTree = ""; }; - A5AAF796237F13B2009CD413 /* PciBusDxeExtra.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = PciBusDxeExtra.uni; sourceTree = ""; }; - A5AAF797237F13B2009CD413 /* ComponentName.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ComponentName.c; sourceTree = ""; }; - A5AAF798237F13B2009CD413 /* PciBus.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = PciBus.c; sourceTree = ""; }; - A5AAF799237F13B2009CD413 /* PciPowerManagement.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = PciPowerManagement.c; sourceTree = ""; }; - A5AAF79A237F13B2009CD413 /* PciResourceSupport.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PciResourceSupport.h; sourceTree = ""; }; - A5AAF79B237F13B2009CD413 /* PciDriverOverride.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PciDriverOverride.h; sourceTree = ""; }; - A5AAF79C237F13B2009CD413 /* PciEnumerator.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PciEnumerator.h; sourceTree = ""; }; - A5AAF79D237F13B2009CD413 /* PciCommand.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PciCommand.h; sourceTree = ""; }; - A5AAF79E237F13B2009CD413 /* PciIo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PciIo.h; sourceTree = ""; }; - A5AAF79F237F13B2009CD413 /* PciDeviceSupport.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PciDeviceSupport.h; sourceTree = ""; }; - A5AAF7A0237F13B2009CD413 /* PciRomTable.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = PciRomTable.c; sourceTree = ""; }; - A5AAF7A1237F13B2009CD413 /* PciBusDxe.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = PciBusDxe.inf; sourceTree = ""; }; - A5AAF7A2237F13B2009CD413 /* PciOptionRomSupport.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = PciOptionRomSupport.c; sourceTree = ""; }; - A5AAF7A3237F13B2009CD413 /* PciHotPlugSupport.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PciHotPlugSupport.h; sourceTree = ""; }; - A5AAF7A4237F13B2009CD413 /* PciPowerManagement.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PciPowerManagement.h; sourceTree = ""; }; - A5AAF7A5237F13B2009CD413 /* PciBus.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PciBus.h; sourceTree = ""; }; - A5AAF7A6237F13B2009CD413 /* ComponentName.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ComponentName.h; sourceTree = ""; }; - A5AAF7A7237F13B2009CD413 /* PciBusDxe.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = PciBusDxe.uni; sourceTree = ""; }; - A5AAF7A8237F13B2009CD413 /* PciEnumeratorSupport.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PciEnumeratorSupport.h; sourceTree = ""; }; - A5AAF7A9237F13B2009CD413 /* PciLib.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = PciLib.c; sourceTree = ""; }; - A5AAF7AB237F13B2009CD413 /* XhciSched.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XhciSched.h; sourceTree = ""; }; - A5AAF7AC237F13B2009CD413 /* XhciPei.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = XhciPei.inf; sourceTree = ""; }; - A5AAF7AD237F13B2009CD413 /* XhcPeim.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XhcPeim.h; sourceTree = ""; }; - A5AAF7AE237F13B2009CD413 /* XhciPei.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = XhciPei.uni; sourceTree = ""; }; - A5AAF7AF237F13B2009CD413 /* UsbHcMem.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UsbHcMem.h; sourceTree = ""; }; - A5AAF7B0237F13B2009CD413 /* XhciSched.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = XhciSched.c; sourceTree = ""; }; - A5AAF7B1237F13B2009CD413 /* DmaMem.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = DmaMem.c; sourceTree = ""; }; - A5AAF7B2237F13B2009CD413 /* XhciPeiExtra.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = XhciPeiExtra.uni; sourceTree = ""; }; - A5AAF7B3237F13B2009CD413 /* UsbHcMem.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = UsbHcMem.c; sourceTree = ""; }; - A5AAF7B4237F13B2009CD413 /* XhciReg.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XhciReg.h; sourceTree = ""; }; - A5AAF7B5237F13B2009CD413 /* XhcPeim.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = XhcPeim.c; sourceTree = ""; }; - A5AAF7B7237F13B2009CD413 /* EhciPeiExtra.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = EhciPeiExtra.uni; sourceTree = ""; }; - A5AAF7B8237F13B2009CD413 /* EhciUrb.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EhciUrb.h; sourceTree = ""; }; - A5AAF7B9237F13B2009CD413 /* EhcPeim.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EhcPeim.h; sourceTree = ""; }; - A5AAF7BA237F13B2009CD413 /* UsbHcMem.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UsbHcMem.h; sourceTree = ""; }; - A5AAF7BB237F13B2009CD413 /* EhciSched.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = EhciSched.c; sourceTree = ""; }; - A5AAF7BC237F13B2009CD413 /* EhciPei.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = EhciPei.uni; sourceTree = ""; }; - A5AAF7BD237F13B2009CD413 /* EhciPei.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = EhciPei.inf; sourceTree = ""; }; - A5AAF7BE237F13B2009CD413 /* DmaMem.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = DmaMem.c; sourceTree = ""; }; - A5AAF7BF237F13B2009CD413 /* EhciReg.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EhciReg.h; sourceTree = ""; }; - A5AAF7C0237F13B2009CD413 /* EhcPeim.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = EhcPeim.c; sourceTree = ""; }; - A5AAF7C1237F13B2009CD413 /* EhciUrb.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = EhciUrb.c; sourceTree = ""; }; - A5AAF7C2237F13B2009CD413 /* EhciSched.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EhciSched.h; sourceTree = ""; }; - A5AAF7C3237F13B2009CD413 /* UsbHcMem.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = UsbHcMem.c; sourceTree = ""; }; - A5AAF7C5237F13B2009CD413 /* UfsPciHcDxeExtra.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = UfsPciHcDxeExtra.uni; sourceTree = ""; }; - A5AAF7C6237F13B2009CD413 /* ComponentName.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ComponentName.c; sourceTree = ""; }; - A5AAF7C7237F13B2009CD413 /* UfsPciHcDxe.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = UfsPciHcDxe.c; sourceTree = ""; }; - A5AAF7C8237F13B2009CD413 /* UfsPciHcDxe.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = UfsPciHcDxe.uni; sourceTree = ""; }; - A5AAF7C9237F13B2009CD413 /* UfsPciHcDxe.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UfsPciHcDxe.h; sourceTree = ""; }; - A5AAF7CA237F13B2009CD413 /* UfsPciHcDxe.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = UfsPciHcDxe.inf; sourceTree = ""; }; - A5AAF7CC237F13B2009CD413 /* UhciSched.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UhciSched.h; sourceTree = ""; }; - A5AAF7CD237F13B2009CD413 /* UhciReg.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UhciReg.h; sourceTree = ""; }; - A5AAF7CE237F13B2009CD413 /* UhciDebug.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = UhciDebug.c; sourceTree = ""; }; - A5AAF7CF237F13B2009CD413 /* UhciQueue.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UhciQueue.h; sourceTree = ""; }; - A5AAF7D0237F13B2009CD413 /* Uhci.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = Uhci.c; sourceTree = ""; }; - A5AAF7D1237F13B2009CD413 /* UhciDxeExtra.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = UhciDxeExtra.uni; sourceTree = ""; }; - A5AAF7D2237F13B2009CD413 /* ComponentName.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ComponentName.c; sourceTree = ""; }; - A5AAF7D3237F13B2009CD413 /* UsbHcMem.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UsbHcMem.h; sourceTree = ""; }; - A5AAF7D4237F13B2009CD413 /* UhciSched.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = UhciSched.c; sourceTree = ""; }; - A5AAF7D5237F13B2009CD413 /* UhciDxe.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = UhciDxe.inf; sourceTree = ""; }; - A5AAF7D6237F13B2009CD413 /* UhciDebug.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UhciDebug.h; sourceTree = ""; }; - A5AAF7D7237F13B2009CD413 /* UhciReg.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = UhciReg.c; sourceTree = ""; }; - A5AAF7D8237F13B2009CD413 /* UhciDxe.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = UhciDxe.uni; sourceTree = ""; }; - A5AAF7D9237F13B2009CD413 /* UhciQueue.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = UhciQueue.c; sourceTree = ""; }; - A5AAF7DA237F13B2009CD413 /* UsbHcMem.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = UsbHcMem.c; sourceTree = ""; }; - A5AAF7DB237F13B2009CD413 /* Uhci.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Uhci.h; sourceTree = ""; }; - A5AAF7DC237F13B2009CD413 /* ComponentName.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ComponentName.h; sourceTree = ""; }; - A5AAF7DE237F13B2009CD413 /* DevicePath.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = DevicePath.c; sourceTree = ""; }; - A5AAF7DF237F13B2009CD413 /* NvmExpressPeiHci.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NvmExpressPeiHci.h; sourceTree = ""; }; - A5AAF7E0237F13B2009CD413 /* NvmExpressPeiStorageSecurity.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NvmExpressPeiStorageSecurity.h; sourceTree = ""; }; - A5AAF7E1237F13B2009CD413 /* NvmExpressPei.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = NvmExpressPei.c; sourceTree = ""; }; - A5AAF7E2237F13B2009CD413 /* NvmExpressPeiBlockIo.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = NvmExpressPeiBlockIo.c; sourceTree = ""; }; - A5AAF7E3237F13B2009CD413 /* NvmExpressPeiExtra.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = NvmExpressPeiExtra.uni; sourceTree = ""; }; - A5AAF7E4237F13B2009CD413 /* NvmExpressPeiPassThru.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NvmExpressPeiPassThru.h; sourceTree = ""; }; - A5AAF7E5237F13B2009CD413 /* NvmExpressPeiS3.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = NvmExpressPeiS3.c; sourceTree = ""; }; - A5AAF7E6237F13B2009CD413 /* NvmExpressPeiStorageSecurity.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = NvmExpressPeiStorageSecurity.c; sourceTree = ""; }; - A5AAF7E7237F13B2009CD413 /* NvmExpressPei.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NvmExpressPei.h; sourceTree = ""; }; - A5AAF7E8237F13B2009CD413 /* NvmExpressPei.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = NvmExpressPei.inf; sourceTree = ""; }; - A5AAF7E9237F13B2009CD413 /* NvmExpressPeiHci.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = NvmExpressPeiHci.c; sourceTree = ""; }; - A5AAF7EA237F13B2009CD413 /* NvmExpressPei.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = NvmExpressPei.uni; sourceTree = ""; }; - A5AAF7EB237F13B2009CD413 /* NvmExpressPeiBlockIo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NvmExpressPeiBlockIo.h; sourceTree = ""; }; - A5AAF7EC237F13B2009CD413 /* DmaMem.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = DmaMem.c; sourceTree = ""; }; - A5AAF7ED237F13B2009CD413 /* NvmExpressPeiPassThru.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = NvmExpressPeiPassThru.c; sourceTree = ""; }; - A5AAF7EF237F13B2009CD413 /* SdMmcPciHcPei.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = SdMmcPciHcPei.inf; sourceTree = ""; }; - A5AAF7F0237F13B2009CD413 /* SdMmcPciHcPei.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SdMmcPciHcPei.c; sourceTree = ""; }; - A5AAF7F1237F13B2009CD413 /* SdMmcPciHcPei.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = SdMmcPciHcPei.uni; sourceTree = ""; }; - A5AAF7F2237F13B2009CD413 /* SdMmcPciHcPeiExtra.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = SdMmcPciHcPeiExtra.uni; sourceTree = ""; }; - A5AAF7F3237F13B2009CD413 /* SdMmcPciHcPei.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SdMmcPciHcPei.h; sourceTree = ""; }; - A5AAF7F5237F13B2009CD413 /* SataController.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SataController.c; sourceTree = ""; }; - A5AAF7F6237F13B2009CD413 /* SataControllerDxe.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = SataControllerDxe.uni; sourceTree = ""; }; - A5AAF7F7237F13B2009CD413 /* SataControllerDxeExtra.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = SataControllerDxeExtra.uni; sourceTree = ""; }; - A5AAF7F8237F13B2009CD413 /* ComponentName.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ComponentName.c; sourceTree = ""; }; - A5AAF7F9237F13B2009CD413 /* SataControllerDxe.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = SataControllerDxe.inf; sourceTree = ""; }; - A5AAF7FA237F13B2009CD413 /* SataController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SataController.h; sourceTree = ""; }; - A5AAF7FC237F13B2009CD413 /* PciSioSerialDxe.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = PciSioSerialDxe.inf; sourceTree = ""; }; - A5AAF7FD237F13B2009CD413 /* Serial.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = Serial.c; sourceTree = ""; }; - A5AAF7FE237F13B2009CD413 /* SerialIo.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SerialIo.c; sourceTree = ""; }; - A5AAF7FF237F13B2009CD413 /* PciSioSerialDxe.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = PciSioSerialDxe.uni; sourceTree = ""; }; - A5AAF800237F13B2009CD413 /* PciSioSerialDxeExtra.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = PciSioSerialDxeExtra.uni; sourceTree = ""; }; - A5AAF801237F13B2009CD413 /* ComponentName.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ComponentName.c; sourceTree = ""; }; - A5AAF802237F13B2009CD413 /* Serial.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Serial.h; sourceTree = ""; }; - A5AAF804237F13B2009CD413 /* PciRootBridgeIo.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = PciRootBridgeIo.c; sourceTree = ""; }; - A5AAF805237F13B2009CD413 /* PciHostResource.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PciHostResource.h; sourceTree = ""; }; - A5AAF806237F13B2009CD413 /* PciHostBridge.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PciHostBridge.h; sourceTree = ""; }; - A5AAF807237F13B2009CD413 /* PciRootBridge.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PciRootBridge.h; sourceTree = ""; }; - A5AAF808237F13B2009CD413 /* PciHostBridgeDxe.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = PciHostBridgeDxe.inf; sourceTree = ""; }; - A5AAF809237F13B2009CD413 /* PciHostBridge.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = PciHostBridge.c; sourceTree = ""; }; - A5AAF80B237F13B2009CD413 /* XhciDxeExtra.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = XhciDxeExtra.uni; sourceTree = ""; }; - A5AAF80C237F13B2009CD413 /* XhciSched.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XhciSched.h; sourceTree = ""; }; - A5AAF80D237F13B2009CD413 /* Xhci.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = Xhci.c; sourceTree = ""; }; - A5AAF80E237F13B2009CD413 /* XhciReg.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = XhciReg.c; sourceTree = ""; }; - A5AAF80F237F13B2009CD413 /* ComponentName.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ComponentName.c; sourceTree = ""; }; - A5AAF810237F13B2009CD413 /* UsbHcMem.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UsbHcMem.h; sourceTree = ""; }; - A5AAF811237F13B2009CD413 /* XhciSched.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = XhciSched.c; sourceTree = ""; }; - A5AAF812237F13B2009CD413 /* XhciDxe.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = XhciDxe.inf; sourceTree = ""; }; - A5AAF813237F13B2009CD413 /* XhciDxe.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = XhciDxe.uni; sourceTree = ""; }; - A5AAF814237F13B2009CD413 /* Xhci.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Xhci.h; sourceTree = ""; }; - A5AAF815237F13B2009CD413 /* UsbHcMem.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = UsbHcMem.c; sourceTree = ""; }; - A5AAF816237F13B2009CD413 /* ComponentName.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ComponentName.h; sourceTree = ""; }; - A5AAF817237F13B2009CD413 /* XhciReg.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XhciReg.h; sourceTree = ""; }; - A5AAF819237F13B2009CD413 /* UhcPeim.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = UhcPeim.c; sourceTree = ""; }; - A5AAF81A237F13B2009CD413 /* UhciPei.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = UhciPei.inf; sourceTree = ""; }; - A5AAF81B237F13B2009CD413 /* UhciPei.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = UhciPei.uni; sourceTree = ""; }; - A5AAF81C237F13B2009CD413 /* UhciPeiExtra.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = UhciPeiExtra.uni; sourceTree = ""; }; - A5AAF81D237F13B2009CD413 /* UhcPeim.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UhcPeim.h; sourceTree = ""; }; - A5AAF81E237F13B2009CD413 /* DmaMem.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = DmaMem.c; sourceTree = ""; }; - A5AAF820237F13B2009CD413 /* NvmExpressHci.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = NvmExpressHci.c; sourceTree = ""; }; - A5AAF821237F13B2009CD413 /* NvmExpressPassthru.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = NvmExpressPassthru.c; sourceTree = ""; }; - A5AAF822237F13B2009CD413 /* NvmExpressBlockIo.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = NvmExpressBlockIo.c; sourceTree = ""; }; - A5AAF823237F13B2009CD413 /* NvmExpressDxe.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = NvmExpressDxe.inf; sourceTree = ""; }; - A5AAF824237F13B2009CD413 /* NvmExpressDxe.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = NvmExpressDxe.uni; sourceTree = ""; }; - A5AAF825237F13B2009CD413 /* NvmExpress.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = NvmExpress.c; sourceTree = ""; }; - A5AAF826237F13B2009CD413 /* NvmExpressDiskInfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NvmExpressDiskInfo.h; sourceTree = ""; }; - A5AAF827237F13B2009CD413 /* ComponentName.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ComponentName.c; sourceTree = ""; }; - A5AAF828237F13B2009CD413 /* NvmExpressBlockIo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NvmExpressBlockIo.h; sourceTree = ""; }; - A5AAF829237F13B2009CD413 /* NvmExpressHci.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NvmExpressHci.h; sourceTree = ""; }; - A5AAF82A237F13B2009CD413 /* NvmExpressDxeExtra.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = NvmExpressDxeExtra.uni; sourceTree = ""; }; - A5AAF82B237F13B2009CD413 /* NvmExpressDiskInfo.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = NvmExpressDiskInfo.c; sourceTree = ""; }; - A5AAF82C237F13B2009CD413 /* NvmExpress.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NvmExpress.h; sourceTree = ""; }; - A5AAF82E237F13B2009CD413 /* NonDiscoverablePciDeviceDxe.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = NonDiscoverablePciDeviceDxe.inf; sourceTree = ""; }; - A5AAF82F237F13B2009CD413 /* NonDiscoverablePciDeviceIo.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = NonDiscoverablePciDeviceIo.c; sourceTree = ""; }; - A5AAF830237F13B2009CD413 /* ComponentName.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ComponentName.c; sourceTree = ""; }; - A5AAF831237F13B2009CD413 /* NonDiscoverablePciDeviceDxe.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = NonDiscoverablePciDeviceDxe.c; sourceTree = ""; }; - A5AAF832237F13B2009CD413 /* NonDiscoverablePciDeviceIo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NonDiscoverablePciDeviceIo.h; sourceTree = ""; }; - A5AAF834237F13B2009CD413 /* EhciReg.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = EhciReg.c; sourceTree = ""; }; - A5AAF835237F13B2009CD413 /* EhciUrb.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EhciUrb.h; sourceTree = ""; }; - A5AAF836237F13B2009CD413 /* EhciDebug.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EhciDebug.h; sourceTree = ""; }; - A5AAF837237F13B2009CD413 /* EhciDxe.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = EhciDxe.uni; sourceTree = ""; }; - A5AAF838237F13B2009CD413 /* Ehci.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Ehci.h; sourceTree = ""; }; - A5AAF839237F13B2009CD413 /* ComponentName.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ComponentName.c; sourceTree = ""; }; - A5AAF83A237F13B2009CD413 /* EhciDxe.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = EhciDxe.inf; sourceTree = ""; }; - A5AAF83B237F13B2009CD413 /* UsbHcMem.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UsbHcMem.h; sourceTree = ""; }; - A5AAF83C237F13B2009CD413 /* EhciSched.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = EhciSched.c; sourceTree = ""; }; - A5AAF83D237F13B2009CD413 /* EhciDxeExtra.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = EhciDxeExtra.uni; sourceTree = ""; }; - A5AAF83E237F13B2009CD413 /* Ehci.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = Ehci.c; sourceTree = ""; }; - A5AAF83F237F13B2009CD413 /* EhciDebug.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = EhciDebug.c; sourceTree = ""; }; - A5AAF840237F13B2009CD413 /* EhciReg.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EhciReg.h; sourceTree = ""; }; - A5AAF841237F13B2009CD413 /* EhciUrb.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = EhciUrb.c; sourceTree = ""; }; - A5AAF842237F13B2009CD413 /* EhciSched.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EhciSched.h; sourceTree = ""; }; - A5AAF843237F13B2009CD413 /* UsbHcMem.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = UsbHcMem.c; sourceTree = ""; }; - A5AAF844237F13B2009CD413 /* ComponentName.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ComponentName.h; sourceTree = ""; }; - A5AAF846237F13B2009CD413 /* UfsPciHcPei.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = UfsPciHcPei.uni; sourceTree = ""; }; - A5AAF847237F13B2009CD413 /* UfsPciHcPei.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = UfsPciHcPei.inf; sourceTree = ""; }; - A5AAF848237F13B2009CD413 /* UfsPciHcPei.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UfsPciHcPei.h; sourceTree = ""; }; - A5AAF849237F13B2009CD413 /* UfsPciHcPeiExtra.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = UfsPciHcPeiExtra.uni; sourceTree = ""; }; - A5AAF84A237F13B2009CD413 /* UfsPciHcPei.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = UfsPciHcPei.c; sourceTree = ""; }; - A5AAF84D237F13B2009CD413 /* IsaBusDxeExtra.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = IsaBusDxeExtra.uni; sourceTree = ""; }; - A5AAF84E237F13B2009CD413 /* ComponentName.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ComponentName.c; sourceTree = ""; }; - A5AAF84F237F13B2009CD413 /* IsaBusDxe.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IsaBusDxe.h; sourceTree = ""; }; - A5AAF850237F13B2009CD413 /* IsaBusDxe.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = IsaBusDxe.inf; sourceTree = ""; }; - A5AAF851237F13B2009CD413 /* IsaBusDxe.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = IsaBusDxe.uni; sourceTree = ""; }; - A5AAF852237F13B2009CD413 /* IsaBusDxe.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = IsaBusDxe.c; sourceTree = ""; }; - A5AAF853237F13B2009CD413 /* ComponentName.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ComponentName.h; sourceTree = ""; }; - A5AAF855237F13B2009CD413 /* Ps2KbdTextIn.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = Ps2KbdTextIn.c; sourceTree = ""; }; - A5AAF856237F13B2009CD413 /* Ps2KeyboardDxeExtra.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Ps2KeyboardDxeExtra.uni; sourceTree = ""; }; - A5AAF857237F13B2009CD413 /* Ps2Keyboard.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = Ps2Keyboard.c; sourceTree = ""; }; - A5AAF858237F13B2009CD413 /* Ps2KbdCtrller.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = Ps2KbdCtrller.c; sourceTree = ""; }; - A5AAF859237F13B2009CD413 /* ComponentName.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ComponentName.c; sourceTree = ""; }; - A5AAF85A237F13B2009CD413 /* Ps2KeyboardDxe.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Ps2KeyboardDxe.inf; sourceTree = ""; }; - A5AAF85B237F13B2009CD413 /* Ps2KeyboardDxe.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Ps2KeyboardDxe.uni; sourceTree = ""; }; - A5AAF85C237F13B2009CD413 /* Ps2Keyboard.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Ps2Keyboard.h; sourceTree = ""; }; - A5AAF85E237F13B2009CD413 /* Ps2Mouse.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = Ps2Mouse.c; sourceTree = ""; }; - A5AAF85F237F13B2009CD413 /* ComponentName.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ComponentName.c; sourceTree = ""; }; - A5AAF860237F13B2009CD413 /* CommPs2.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CommPs2.h; sourceTree = ""; }; - A5AAF861237F13B2009CD413 /* Ps2Mouse.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Ps2Mouse.h; sourceTree = ""; }; - A5AAF862237F13B2009CD413 /* Ps2MouseDxeExtra.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Ps2MouseDxeExtra.uni; sourceTree = ""; }; - A5AAF863237F13B2009CD413 /* Ps2MouseDxe.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Ps2MouseDxe.inf; sourceTree = ""; }; - A5AAF864237F13B2009CD413 /* CommPs2.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = CommPs2.c; sourceTree = ""; }; - A5AAF865237F13B2009CD413 /* Ps2MouseDxe.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Ps2MouseDxe.uni; sourceTree = ""; }; - A5AAF868237F13B2009CD413 /* ScsiDiskDxe.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = ScsiDiskDxe.inf; sourceTree = ""; }; - A5AAF869237F13B2009CD413 /* ScsiDisk.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ScsiDisk.c; sourceTree = ""; }; - A5AAF86A237F13B2009CD413 /* ComponentName.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ComponentName.c; sourceTree = ""; }; - A5AAF86B237F13B2009CD413 /* ScsiDisk.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = ScsiDisk.uni; sourceTree = ""; }; - A5AAF86C237F13B2009CD413 /* ScsiDiskExtra.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = ScsiDiskExtra.uni; sourceTree = ""; }; - A5AAF86D237F13B2009CD413 /* ScsiDisk.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ScsiDisk.h; sourceTree = ""; }; - A5AAF86F237F13B2009CD413 /* ScsiBusExtra.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = ScsiBusExtra.uni; sourceTree = ""; }; - A5AAF870237F13B2009CD413 /* ScsiBus.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ScsiBus.c; sourceTree = ""; }; - A5AAF871237F13B2009CD413 /* ComponentName.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ComponentName.c; sourceTree = ""; }; - A5AAF872237F13B2009CD413 /* ScsiBus.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = ScsiBus.uni; sourceTree = ""; }; - A5AAF873237F13B2009CD413 /* ScsiBusDxe.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = ScsiBusDxe.inf; sourceTree = ""; }; - A5AAF874237F13B2009CD413 /* ScsiBus.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ScsiBus.h; sourceTree = ""; }; - A5AAF877237F13B2009CD413 /* UfsBlockIoPei.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = UfsBlockIoPei.inf; sourceTree = ""; }; - A5AAF878237F13B2009CD413 /* UfsHcMem.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = UfsHcMem.c; sourceTree = ""; }; - A5AAF879237F13B2009CD413 /* UfsBlockIoPeiExtra.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = UfsBlockIoPeiExtra.uni; sourceTree = ""; }; - A5AAF87A237F13B2009CD413 /* UfsHci.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = UfsHci.c; sourceTree = ""; }; - A5AAF87B237F13B2009CD413 /* UfsBlockIoPei.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = UfsBlockIoPei.uni; sourceTree = ""; }; - A5AAF87C237F13B2009CD413 /* UfsBlockIoPei.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = UfsBlockIoPei.c; sourceTree = ""; }; - A5AAF87D237F13B2009CD413 /* UfsHcMem.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UfsHcMem.h; sourceTree = ""; }; - A5AAF87E237F13B2009CD413 /* UfsHci.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UfsHci.h; sourceTree = ""; }; - A5AAF87F237F13B2009CD413 /* UfsBlockIoPei.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UfsBlockIoPei.h; sourceTree = ""; }; - A5AAF880237F13B2009CD413 /* DmaMem.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = DmaMem.c; sourceTree = ""; }; - A5AAF882237F13B2009CD413 /* UfsPassThru.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = UfsPassThru.uni; sourceTree = ""; }; - A5AAF883237F13B2009CD413 /* UfsPassThruHci.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = UfsPassThruHci.c; sourceTree = ""; }; - A5AAF884237F13B2009CD413 /* UfsPassThru.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UfsPassThru.h; sourceTree = ""; }; - A5AAF885237F13B2009CD413 /* ComponentName.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ComponentName.c; sourceTree = ""; }; - A5AAF886237F13B2009CD413 /* UfsDevConfigProtocol.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = UfsDevConfigProtocol.c; sourceTree = ""; }; - A5AAF887237F13B2009CD413 /* UfsPassThruHci.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UfsPassThruHci.h; sourceTree = ""; }; - A5AAF888237F13B2009CD413 /* UfsPassThruDxe.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = UfsPassThruDxe.inf; sourceTree = ""; }; - A5AAF889237F13B2009CD413 /* UfsPassThruExtra.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = UfsPassThruExtra.uni; sourceTree = ""; }; - A5AAF88A237F13B2009CD413 /* UfsPassThru.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = UfsPassThru.c; sourceTree = ""; }; - A5AAF88D237F13B2009CD413 /* I2cBusDxeExtra.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = I2cBusDxeExtra.uni; sourceTree = ""; }; - A5AAF88E237F13B2009CD413 /* I2cDxeExtra.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = I2cDxeExtra.uni; sourceTree = ""; }; - A5AAF88F237F13B2009CD413 /* I2cDxe.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = I2cDxe.inf; sourceTree = ""; }; - A5AAF890237F13B2009CD413 /* I2cBus.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = I2cBus.c; sourceTree = ""; }; - A5AAF891237F13B2009CD413 /* I2cDxe.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = I2cDxe.h; sourceTree = ""; }; - A5AAF892237F13B2009CD413 /* I2cDxe.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = I2cDxe.uni; sourceTree = ""; }; - A5AAF893237F13B2009CD413 /* I2cHost.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = I2cHost.c; sourceTree = ""; }; - A5AAF894237F13B2009CD413 /* I2cBusDxe.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = I2cBusDxe.uni; sourceTree = ""; }; - A5AAF895237F13B2009CD413 /* I2cBusDxe.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = I2cBusDxe.inf; sourceTree = ""; }; - A5AAF896237F13B2009CD413 /* I2cHostDxe.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = I2cHostDxe.inf; sourceTree = ""; }; - A5AAF897237F13B2009CD413 /* I2cHostDxeExtra.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = I2cHostDxeExtra.uni; sourceTree = ""; }; - A5AAF898237F13B2009CD413 /* I2cDxe.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = I2cDxe.c; sourceTree = ""; }; - A5AAF899237F13B2009CD413 /* I2cHostDxe.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = I2cHostDxe.uni; sourceTree = ""; }; - A5AAF89C237F13B2009CD413 /* UsbMouseDxeExtra.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = UsbMouseDxeExtra.uni; sourceTree = ""; }; - A5AAF89D237F13B2009CD413 /* UsbMouse.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UsbMouse.h; sourceTree = ""; }; - A5AAF89E237F13B2009CD413 /* ComponentName.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ComponentName.c; sourceTree = ""; }; - A5AAF89F237F13B2009CD413 /* UsbMouseDxe.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = UsbMouseDxe.inf; sourceTree = ""; }; - A5AAF8A0237F13B2009CD413 /* UsbMouse.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = UsbMouse.c; sourceTree = ""; }; - A5AAF8A1237F13B2009CD413 /* MouseHid.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = MouseHid.c; sourceTree = ""; }; - A5AAF8A2237F13B2009CD413 /* UsbMouseDxe.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = UsbMouseDxe.uni; sourceTree = ""; }; - A5AAF8A4237F13B2009CD413 /* UsbMouseAbsolutePointerDxeExtra.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = UsbMouseAbsolutePointerDxeExtra.uni; sourceTree = ""; }; - A5AAF8A5237F13B2009CD413 /* UsbMouseAbsolutePointer.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = UsbMouseAbsolutePointer.c; sourceTree = ""; }; - A5AAF8A6237F13B2009CD413 /* UsbMouseAbsolutePointerDxe.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = UsbMouseAbsolutePointerDxe.inf; sourceTree = ""; }; - A5AAF8A7237F13B2009CD413 /* ComponentName.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ComponentName.c; sourceTree = ""; }; - A5AAF8A8237F13B2009CD413 /* UsbMouseAbsolutePointerDxe.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = UsbMouseAbsolutePointerDxe.uni; sourceTree = ""; }; - A5AAF8A9237F13B2009CD413 /* UsbMouseAbsolutePointer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UsbMouseAbsolutePointer.h; sourceTree = ""; }; - A5AAF8AA237F13B2009CD413 /* MouseHid.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = MouseHid.c; sourceTree = ""; }; - A5AAF8AC237F13B2009CD413 /* UsbEnumer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UsbEnumer.h; sourceTree = ""; }; - A5AAF8AD237F13B2009CD413 /* UsbBusDxe.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = UsbBusDxe.uni; sourceTree = ""; }; - A5AAF8AE237F13B2009CD413 /* UsbDesc.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = UsbDesc.c; sourceTree = ""; }; - A5AAF8AF237F13B2009CD413 /* UsbBusDxe.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = UsbBusDxe.inf; sourceTree = ""; }; - A5AAF8B0237F13B2009CD413 /* UsbHub.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UsbHub.h; sourceTree = ""; }; - A5AAF8B1237F13B2009CD413 /* UsbBus.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = UsbBus.c; sourceTree = ""; }; - A5AAF8B2237F13B2009CD413 /* ComponentName.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ComponentName.c; sourceTree = ""; }; - A5AAF8B3237F13B2009CD413 /* UsbUtility.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UsbUtility.h; sourceTree = ""; }; - A5AAF8B4237F13B2009CD413 /* UsbEnumer.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = UsbEnumer.c; sourceTree = ""; }; - A5AAF8B5237F13B2009CD413 /* UsbBusDxeExtra.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = UsbBusDxeExtra.uni; sourceTree = ""; }; - A5AAF8B6237F13B2009CD413 /* UsbDesc.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UsbDesc.h; sourceTree = ""; }; - A5AAF8B7237F13B2009CD413 /* UsbHub.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = UsbHub.c; sourceTree = ""; }; - A5AAF8B8237F13B2009CD413 /* UsbUtility.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = UsbUtility.c; sourceTree = ""; }; - A5AAF8B9237F13B2009CD413 /* UsbBus.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UsbBus.h; sourceTree = ""; }; - A5AAF8BB237F13B2009CD413 /* UsbKbDxeExtra.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = UsbKbDxeExtra.uni; sourceTree = ""; }; - A5AAF8BC237F13B2009CD413 /* KeyBoard.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = KeyBoard.c; sourceTree = ""; }; - A5AAF8BD237F13B2009CD413 /* UsbKbDxe.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = UsbKbDxe.inf; sourceTree = ""; }; - A5AAF8BE237F13B2009CD413 /* EfiKey.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EfiKey.h; sourceTree = ""; }; - A5AAF8BF237F13B2009CD413 /* UsbKbDxe.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = UsbKbDxe.uni; sourceTree = ""; }; - A5AAF8C0237F13B2009CD413 /* ComponentName.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ComponentName.c; sourceTree = ""; }; - A5AAF8C1237F13B2009CD413 /* KeyBoard.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KeyBoard.h; sourceTree = ""; }; - A5AAF8C2237F13B2009CD413 /* EfiKey.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = EfiKey.c; sourceTree = ""; }; - A5AAF8C4237F13B2009CD413 /* PeiUsbLib.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = PeiUsbLib.c; sourceTree = ""; }; - A5AAF8C5237F13B2009CD413 /* HubPeim.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HubPeim.h; sourceTree = ""; }; - A5AAF8C6237F13B2009CD413 /* UsbBusPeiExtra.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = UsbBusPeiExtra.uni; sourceTree = ""; }; - A5AAF8C7237F13B2009CD413 /* UsbPeim.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UsbPeim.h; sourceTree = ""; }; - A5AAF8C8237F13B2009CD413 /* UsbIoPeim.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = UsbIoPeim.c; sourceTree = ""; }; - A5AAF8C9237F13B2009CD413 /* PeiUsbLib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PeiUsbLib.h; sourceTree = ""; }; - A5AAF8CA237F13B2009CD413 /* HubPeim.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = HubPeim.c; sourceTree = ""; }; - A5AAF8CB237F13B2009CD413 /* UsbBusPei.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = UsbBusPei.uni; sourceTree = ""; }; - A5AAF8CC237F13B2009CD413 /* UsbPeim.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = UsbPeim.c; sourceTree = ""; }; - A5AAF8CD237F13B2009CD413 /* UsbBusPei.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = UsbBusPei.inf; sourceTree = ""; }; - A5AAF8CF237F13B2009CD413 /* PeiUsbLib.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = PeiUsbLib.c; sourceTree = ""; }; - A5AAF8D0237F13B2009CD413 /* UsbBotPeiExtra.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = UsbBotPeiExtra.uni; sourceTree = ""; }; - A5AAF8D1237F13B2009CD413 /* UsbBotPeim.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UsbBotPeim.h; sourceTree = ""; }; - A5AAF8D2237F13B2009CD413 /* UsbPeim.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UsbPeim.h; sourceTree = ""; }; - A5AAF8D3237F13B2009CD413 /* BotPeim.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = BotPeim.c; sourceTree = ""; }; - A5AAF8D4237F13B2009CD413 /* UsbBotPei.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = UsbBotPei.inf; sourceTree = ""; }; - A5AAF8D5237F13B2009CD413 /* PeiUsbLib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PeiUsbLib.h; sourceTree = ""; }; - A5AAF8D6237F13B2009CD413 /* PeiAtapi.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = PeiAtapi.c; sourceTree = ""; }; - A5AAF8D7237F13B2009CD413 /* UsbBotPei.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = UsbBotPei.uni; sourceTree = ""; }; - A5AAF8D8237F13B2009CD413 /* UsbBotPeim.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = UsbBotPeim.c; sourceTree = ""; }; - A5AAF8D9237F13B2009CD413 /* BotPeim.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BotPeim.h; sourceTree = ""; }; - A5AAF8DB237F13B2009CD413 /* UsbMassDiskInfo.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = UsbMassDiskInfo.c; sourceTree = ""; }; - A5AAF8DC237F13B2009CD413 /* UsbMassCbi.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UsbMassCbi.h; sourceTree = ""; }; - A5AAF8DD237F13B2009CD413 /* UsbMassImpl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UsbMassImpl.h; sourceTree = ""; }; - A5AAF8DE237F13B2009CD413 /* UsbMassBoot.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = UsbMassBoot.c; sourceTree = ""; }; - A5AAF8DF237F13B2009CD413 /* UsbMassBot.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UsbMassBot.h; sourceTree = ""; }; - A5AAF8E0237F13B2009CD413 /* UsbMassStorageDxe.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = UsbMassStorageDxe.uni; sourceTree = ""; }; - A5AAF8E1237F13B2009CD413 /* UsbMassStorageDxeExtra.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = UsbMassStorageDxeExtra.uni; sourceTree = ""; }; - A5AAF8E2237F13B2009CD413 /* UsbMassStorageDxe.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = UsbMassStorageDxe.inf; sourceTree = ""; }; - A5AAF8E3237F13B2009CD413 /* ComponentName.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ComponentName.c; sourceTree = ""; }; - A5AAF8E4237F13B2009CD413 /* UsbMassCbi.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = UsbMassCbi.c; sourceTree = ""; }; - A5AAF8E5237F13B2009CD413 /* UsbMass.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UsbMass.h; sourceTree = ""; }; - A5AAF8E6237F13B2009CD413 /* UsbMassImpl.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = UsbMassImpl.c; sourceTree = ""; }; - A5AAF8E7237F13B2009CD413 /* UsbMassDiskInfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UsbMassDiskInfo.h; sourceTree = ""; }; - A5AAF8E8237F13B2009CD413 /* UsbMassBoot.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UsbMassBoot.h; sourceTree = ""; }; - A5AAF8E9237F13B2009CD413 /* UsbMassBot.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = UsbMassBot.c; sourceTree = ""; }; - A5AAF8EC237F13B2009CD413 /* DevicePath.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = DevicePath.c; sourceTree = ""; }; - A5AAF8ED237F13B2009CD413 /* AhciPei.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = AhciPei.inf; sourceTree = ""; }; - A5AAF8EE237F13B2009CD413 /* AhciPei.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AhciPei.h; sourceTree = ""; }; - A5AAF8EF237F13B2009CD413 /* AhciPeiBlockIo.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = AhciPeiBlockIo.c; sourceTree = ""; }; - A5AAF8F0237F13B2009CD413 /* AhciPei.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = AhciPei.uni; sourceTree = ""; }; - A5AAF8F1237F13B2009CD413 /* AhciPeiPassThru.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = AhciPeiPassThru.c; sourceTree = ""; }; - A5AAF8F2237F13B2009CD413 /* AhciPeiExtra.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = AhciPeiExtra.uni; sourceTree = ""; }; - A5AAF8F3237F13B2009CD413 /* AhciPeiStorageSecurity.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = AhciPeiStorageSecurity.c; sourceTree = ""; }; - A5AAF8F4237F13B2009CD413 /* AhciPeiBlockIo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AhciPeiBlockIo.h; sourceTree = ""; }; - A5AAF8F5237F13B2009CD413 /* AhciPei.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = AhciPei.c; sourceTree = ""; }; - A5AAF8F6237F13B2009CD413 /* AhciPeiPassThru.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AhciPeiPassThru.h; sourceTree = ""; }; - A5AAF8F7237F13B2009CD413 /* DmaMem.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = DmaMem.c; sourceTree = ""; }; - A5AAF8F8237F13B2009CD413 /* AhciPeiStorageSecurity.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AhciPeiStorageSecurity.h; sourceTree = ""; }; - A5AAF8F9237F13B2009CD413 /* AhciMode.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = AhciMode.c; sourceTree = ""; }; - A5AAF8FA237F13B2009CD413 /* AhciPeiS3.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = AhciPeiS3.c; sourceTree = ""; }; - A5AAF8FC237F13B2009CD413 /* AtaAtapiPassThru.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AtaAtapiPassThru.h; sourceTree = ""; }; - A5AAF8FD237F13B2009CD413 /* AhciMode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AhciMode.h; sourceTree = ""; }; - A5AAF8FE237F13B2009CD413 /* ComponentName.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ComponentName.c; sourceTree = ""; }; - A5AAF8FF237F13B2009CD413 /* AtaAtapiPassThru.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = AtaAtapiPassThru.inf; sourceTree = ""; }; - A5AAF900237F13B2009CD413 /* IdeMode.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = IdeMode.c; sourceTree = ""; }; - A5AAF901237F13B2009CD413 /* AtaAtapiPassThruDxeExtra.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = AtaAtapiPassThruDxeExtra.uni; sourceTree = ""; }; - A5AAF902237F13B2009CD413 /* AtaAtapiPassThru.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = AtaAtapiPassThru.c; sourceTree = ""; }; - A5AAF903237F13B2009CD413 /* AtaAtapiPassThruDxe.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = AtaAtapiPassThruDxe.uni; sourceTree = ""; }; - A5AAF904237F13B2009CD413 /* IdeMode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IdeMode.h; sourceTree = ""; }; - A5AAF905237F13B2009CD413 /* AhciMode.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = AhciMode.c; sourceTree = ""; }; - A5AAF907237F13B2009CD413 /* AtaBusDxe.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = AtaBusDxe.inf; sourceTree = ""; }; - A5AAF908237F13B2009CD413 /* AtaPassThruExecute.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = AtaPassThruExecute.c; sourceTree = ""; }; - A5AAF909237F13B2009CD413 /* AtaBusDxe.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = AtaBusDxe.uni; sourceTree = ""; }; - A5AAF90A237F13B2009CD413 /* ComponentName.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ComponentName.c; sourceTree = ""; }; - A5AAF90B237F13B2009CD413 /* AtaBus.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AtaBus.h; sourceTree = ""; }; - A5AAF90C237F13B2009CD413 /* AtaBusDxeExtra.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = AtaBusDxeExtra.uni; sourceTree = ""; }; - A5AAF90D237F13B2009CD413 /* AtaBus.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = AtaBus.c; sourceTree = ""; }; - A5AAF910237F13B2009CD413 /* DxeCapsuleRuntime.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = DxeCapsuleRuntime.c; sourceTree = ""; }; - A5AAF911237F13B2009CD413 /* CapsuleOnDisk.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = CapsuleOnDisk.c; sourceTree = ""; }; - A5AAF912237F13B2009CD413 /* DxeCapsuleProcessLibNull.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = DxeCapsuleProcessLibNull.c; sourceTree = ""; }; - A5AAF913237F13B2009CD413 /* DxeCapsuleReportLibNull.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = DxeCapsuleReportLibNull.c; sourceTree = ""; }; - A5AAF914237F13B2009CD413 /* DxeCapsuleProcessLib.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = DxeCapsuleProcessLib.c; sourceTree = ""; }; - A5AAF915237F13B2009CD413 /* DxeCapsuleReportLib.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = DxeCapsuleReportLib.c; sourceTree = ""; }; - A5AAF916237F13B2009CD413 /* CapsuleOnDisk.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CapsuleOnDisk.h; sourceTree = ""; }; - A5AAF917237F13B2009CD413 /* DxeRuntimeCapsuleLib.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = DxeRuntimeCapsuleLib.inf; sourceTree = ""; }; - A5AAF918237F13B2009CD413 /* DxeCapsuleLib.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = DxeCapsuleLib.uni; sourceTree = ""; }; - A5AAF919237F13B2009CD413 /* DxeCapsuleLib.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = DxeCapsuleLib.c; sourceTree = ""; }; - A5AAF91A237F13B2009CD413 /* DxeRuntimeCapsuleLib.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = DxeRuntimeCapsuleLib.uni; sourceTree = ""; }; - A5AAF91B237F13B2009CD413 /* DxeCapsuleLib.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = DxeCapsuleLib.inf; sourceTree = ""; }; - A5AAF91D237F13B2009CD413 /* SmmIpmiLibSmmIpmiProtocol.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SmmIpmiLibSmmIpmiProtocol.c; sourceTree = ""; }; - A5AAF91E237F13B2009CD413 /* SmmIpmiLibSmmIpmiProtocol.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = SmmIpmiLibSmmIpmiProtocol.inf; sourceTree = ""; }; - A5AAF91F237F13B2009CD413 /* SmmIpmiLibSmmIpmiProtocol.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = SmmIpmiLibSmmIpmiProtocol.uni; sourceTree = ""; }; - A5AAF921237F13B2009CD413 /* OemHookStatusCodeLibNull.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = OemHookStatusCodeLibNull.inf; sourceTree = ""; }; - A5AAF922237F13B2009CD413 /* OemHookStatusCodeLibNull.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = OemHookStatusCodeLibNull.c; sourceTree = ""; }; - A5AAF923237F13B2009CD413 /* OemHookStatusCodeLibNull.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = OemHookStatusCodeLibNull.uni; sourceTree = ""; }; - A5AAF925237F13B2009CD413 /* DxeCrc32GuidedSectionExtractLib.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = DxeCrc32GuidedSectionExtractLib.c; sourceTree = ""; }; - A5AAF926237F13B2009CD413 /* DxeCrc32GuidedSectionExtractLib.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = DxeCrc32GuidedSectionExtractLib.inf; sourceTree = ""; }; - A5AAF927237F13B2009CD413 /* DxeCrc32GuidedSectionExtractLib.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = DxeCrc32GuidedSectionExtractLib.uni; sourceTree = ""; }; - A5AAF929237F13B2009CD413 /* BootLogoLib.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = BootLogoLib.c; sourceTree = ""; }; - A5AAF92A237F13B2009CD413 /* BootLogoLib.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = BootLogoLib.inf; sourceTree = ""; }; - A5AAF92B237F13B2009CD413 /* BootLogoLib.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = BootLogoLib.uni; sourceTree = ""; }; - A5AAF92D237F13B2009CD413 /* LockBoxNullLib.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = LockBoxNullLib.inf; sourceTree = ""; }; - A5AAF92E237F13B2009CD413 /* LockBoxNullLib.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = LockBoxNullLib.c; sourceTree = ""; }; - A5AAF92F237F13B2009CD413 /* LockBoxNullLib.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = LockBoxNullLib.uni; sourceTree = ""; }; - A5AAF931237F13B2009CD413 /* FmpAuthenticationLibNull.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = FmpAuthenticationLibNull.c; sourceTree = ""; }; - A5AAF932237F13B2009CD413 /* FmpAuthenticationLibNull.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = FmpAuthenticationLibNull.inf; sourceTree = ""; }; - A5AAF933237F13B2009CD413 /* FmpAuthenticationLibNull.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = FmpAuthenticationLibNull.uni; sourceTree = ""; }; - A5AAF935237F13B2009CD413 /* PlatVarCleanup.vfr */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = PlatVarCleanup.vfr; sourceTree = ""; }; - A5AAF936237F13B2009CD413 /* PlatVarCleanupLib.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = PlatVarCleanupLib.c; sourceTree = ""; }; - A5AAF937237F13B2009CD413 /* PlatVarCleanup.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PlatVarCleanup.h; sourceTree = ""; }; - A5AAF938237F13B2009CD413 /* PlatformVarCleanupLib.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = PlatformVarCleanupLib.inf; sourceTree = ""; }; - A5AAF939237F13B2009CD413 /* PlatVarCleanupHii.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PlatVarCleanupHii.h; sourceTree = ""; }; - A5AAF93A237F13B2009CD413 /* VfrStrings.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = VfrStrings.uni; sourceTree = ""; }; - A5AAF93B237F13B2009CD413 /* PlatformVarCleanupLib.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = PlatformVarCleanupLib.uni; sourceTree = ""; }; - A5AAF93D237F13B2009CD413 /* PeiIpmiLibIpmiPpi.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = PeiIpmiLibIpmiPpi.c; sourceTree = ""; }; - A5AAF93E237F13B2009CD413 /* PeiIpmiLibIpmiPpi.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = PeiIpmiLibIpmiPpi.inf; sourceTree = ""; }; - A5AAF93F237F13B2009CD413 /* PeiIpmiLibIpmiPpi.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = PeiIpmiLibIpmiPpi.uni; sourceTree = ""; }; - A5AAF941237F13B2009CD413 /* LzmaArchCustomDecompressLib.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = LzmaArchCustomDecompressLib.inf; sourceTree = ""; }; - A5AAF942237F13B2009CD413 /* F86GuidedSectionExtraction.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = F86GuidedSectionExtraction.c; sourceTree = ""; }; - A5AAF943237F13B2009CD413 /* LzmaCustomDecompressLib.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = LzmaCustomDecompressLib.inf; sourceTree = ""; }; - A5AAF946237F13B2009CD413 /* lzma-sdk.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "lzma-sdk.txt"; sourceTree = ""; }; - A5AAF947237F13B2009CD413 /* lzma-history.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "lzma-history.txt"; sourceTree = ""; }; - A5AAF949237F13B2009CD413 /* LzHash.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LzHash.h; sourceTree = ""; }; - A5AAF94A237F13B2009CD413 /* 7zTypes.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = 7zTypes.h; sourceTree = ""; }; - A5AAF94B237F13B2009CD413 /* Compiler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Compiler.h; sourceTree = ""; }; - A5AAF94C237F13B2009CD413 /* LzFind.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = LzFind.c; sourceTree = ""; }; - A5AAF94D237F13B2009CD413 /* Precomp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Precomp.h; sourceTree = ""; }; - A5AAF94E237F13B2009CD413 /* CpuArch.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CpuArch.h; sourceTree = ""; }; - A5AAF94F237F13B2009CD413 /* Bra86.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = Bra86.c; sourceTree = ""; }; - A5AAF950237F13B2009CD413 /* LzmaDec.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = LzmaDec.c; sourceTree = ""; }; - A5AAF951237F13B2009CD413 /* LzFind.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LzFind.h; sourceTree = ""; }; - A5AAF952237F13B2009CD413 /* 7zVersion.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = 7zVersion.h; sourceTree = ""; }; - A5AAF953237F13B2009CD413 /* Bra.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Bra.h; sourceTree = ""; }; - A5AAF954237F13B2009CD413 /* LzmaDec.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LzmaDec.h; sourceTree = ""; }; - A5AAF955237F13B2009CD413 /* LzmaDecompressLibInternal.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LzmaDecompressLibInternal.h; sourceTree = ""; }; - A5AAF956237F13B2009CD413 /* LZMA-SDK-README.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "LZMA-SDK-README.txt"; sourceTree = ""; }; - A5AAF957237F13B2009CD413 /* LzmaArchDecompressLib.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = LzmaArchDecompressLib.uni; sourceTree = ""; }; - A5AAF958237F13B2009CD413 /* LzmaDecompress.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = LzmaDecompress.c; sourceTree = ""; }; - A5AAF959237F13B2009CD413 /* LzmaDecompressLib.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = LzmaDecompressLib.uni; sourceTree = ""; }; - A5AAF95A237F13B2009CD413 /* GuidedSectionExtraction.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = GuidedSectionExtraction.c; sourceTree = ""; }; - A5AAF95B237F13B2009CD413 /* UefiLzma.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UefiLzma.h; sourceTree = ""; }; - A5AAF95D237F13B2009CD413 /* DeviceManagerUiLib.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = DeviceManagerUiLib.uni; sourceTree = ""; }; - A5AAF95E237F13B2009CD413 /* DeviceManagerStrings.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = DeviceManagerStrings.uni; sourceTree = ""; }; - A5AAF95F237F13B2009CD413 /* DeviceManagerUiLib.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = DeviceManagerUiLib.inf; sourceTree = ""; }; - A5AAF960237F13B2009CD413 /* DeviceManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DeviceManager.h; sourceTree = ""; }; - A5AAF961237F13B2009CD413 /* DeviceManagerVfr.Vfr */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = DeviceManagerVfr.Vfr; sourceTree = ""; }; - A5AAF962237F13B2009CD413 /* DeviceManager.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = DeviceManager.c; sourceTree = ""; }; - A5AAF964237F13B2009CD413 /* BaseIpmiLibNull.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = BaseIpmiLibNull.c; sourceTree = ""; }; - A5AAF965237F13B2009CD413 /* BaseIpmiLibNull.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = BaseIpmiLibNull.inf; sourceTree = ""; }; - A5AAF966237F13B2009CD413 /* BaseIpmiLibNull.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = BaseIpmiLibNull.uni; sourceTree = ""; }; - A5AAF968237F13B2009CD413 /* PeiCrc32GuidedSectionExtractLib.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = PeiCrc32GuidedSectionExtractLib.uni; sourceTree = ""; }; - A5AAF969237F13B2009CD413 /* PeiCrc32GuidedSectionExtractLib.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = PeiCrc32GuidedSectionExtractLib.inf; sourceTree = ""; }; - A5AAF96A237F13B2009CD413 /* PeiCrc32GuidedSectionExtractLib.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = PeiCrc32GuidedSectionExtractLib.c; sourceTree = ""; }; - A5AAF96C237F13B2009CD413 /* BmConnect.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = BmConnect.c; sourceTree = ""; }; - A5AAF96D237F13B2009CD413 /* BmConsole.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = BmConsole.c; sourceTree = ""; }; - A5AAF96E237F13B2009CD413 /* BmHotkey.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = BmHotkey.c; sourceTree = ""; }; - A5AAF96F237F13B2009CD413 /* InternalBm.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = InternalBm.h; sourceTree = ""; }; - A5AAF970237F13B2009CD413 /* UefiBootManagerLib.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = UefiBootManagerLib.inf; sourceTree = ""; }; - A5AAF971237F13B2009CD413 /* BmLoadOption.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = BmLoadOption.c; sourceTree = ""; }; - A5AAF972237F13B2009CD413 /* BmBootDescription.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = BmBootDescription.c; sourceTree = ""; }; - A5AAF973237F13B2009CD413 /* UefiBootManagerLib.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = UefiBootManagerLib.uni; sourceTree = ""; }; - A5AAF974237F13B2009CD413 /* BmDriverHealth.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = BmDriverHealth.c; sourceTree = ""; }; - A5AAF975237F13B2009CD413 /* BmBoot.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = BmBoot.c; sourceTree = ""; }; - A5AAF976237F13B2009CD413 /* BmMisc.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = BmMisc.c; sourceTree = ""; }; - A5AAF978237F13B2009CD413 /* DxeNetLib.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = DxeNetLib.inf; sourceTree = ""; }; - A5AAF979237F13B2009CD413 /* DxeNetLib.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = DxeNetLib.uni; sourceTree = ""; }; - A5AAF97A237F13B2009CD413 /* NetBuffer.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = NetBuffer.c; sourceTree = ""; }; - A5AAF97B237F13B2009CD413 /* DxeNetLib.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = DxeNetLib.c; sourceTree = ""; }; - A5AAF97D237F13B2009CD413 /* FileExplorer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FileExplorer.h; sourceTree = ""; }; - A5AAF97E237F13B2009CD413 /* FileExplorerString.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = FileExplorerString.uni; sourceTree = ""; }; - A5AAF97F237F13B2009CD413 /* FormGuid.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FormGuid.h; sourceTree = ""; }; - A5AAF980237F13B2009CD413 /* FileExplorer.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = FileExplorer.c; sourceTree = ""; }; - A5AAF981237F13B2009CD413 /* FileExplorerVfr.vfr */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = FileExplorerVfr.vfr; sourceTree = ""; }; - A5AAF982237F13B2009CD413 /* FileExplorerLib.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = FileExplorerLib.inf; sourceTree = ""; }; - A5AAF983237F13B2009CD413 /* FileExplorerLib.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = FileExplorerLib.uni; sourceTree = ""; }; - A5AAF985237F13B2009CD413 /* DxeIpmiLibIpmiProtocol.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = DxeIpmiLibIpmiProtocol.uni; sourceTree = ""; }; - A5AAF986237F13B2009CD413 /* DxeIpmiLibIpmiProtocol.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = DxeIpmiLibIpmiProtocol.inf; sourceTree = ""; }; - A5AAF987237F13B2009CD413 /* DxeIpmiLibIpmiProtocol.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = DxeIpmiLibIpmiProtocol.c; sourceTree = ""; }; - A5AAF989237F13B2009CD413 /* VarCheckLib.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = VarCheckLib.c; sourceTree = ""; }; - A5AAF98A237F13B2009CD413 /* VarCheckLib.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = VarCheckLib.inf; sourceTree = ""; }; - A5AAF98B237F13B2009CD413 /* VarCheckLib.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = VarCheckLib.uni; sourceTree = ""; }; - A5AAF98D237F13B2009CD413 /* DisplayUpdateProgressLibGraphics.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = DisplayUpdateProgressLibGraphics.uni; sourceTree = ""; }; - A5AAF98E237F13B2009CD413 /* DisplayUpdateProgressLibGraphics.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = DisplayUpdateProgressLibGraphics.inf; sourceTree = ""; }; - A5AAF98F237F13B2009CD413 /* DisplayUpdateProgressLibGraphics.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = DisplayUpdateProgressLibGraphics.c; sourceTree = ""; }; - A5AAF991237F13B2009CD413 /* AuthVariableLibNull.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = AuthVariableLibNull.uni; sourceTree = ""; }; - A5AAF992237F13B2009CD413 /* AuthVariableLibNull.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = AuthVariableLibNull.inf; sourceTree = ""; }; - A5AAF993237F13B2009CD413 /* AuthVariableLibNull.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = AuthVariableLibNull.c; sourceTree = ""; }; - A5AAF995237F13B2009CD413 /* SmmReportStatusCodeLib.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = SmmReportStatusCodeLib.uni; sourceTree = ""; }; - A5AAF996237F13B2009CD413 /* ReportStatusCodeLib.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ReportStatusCodeLib.c; sourceTree = ""; }; - A5AAF997237F13B2009CD413 /* SmmReportStatusCodeLib.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = SmmReportStatusCodeLib.inf; sourceTree = ""; }; - A5AAF999237F13B2009CD413 /* PeiReportStatusCodeLib.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = PeiReportStatusCodeLib.uni; sourceTree = ""; }; - A5AAF99A237F13B2009CD413 /* PeiReportStatusCodeLib.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = PeiReportStatusCodeLib.inf; sourceTree = ""; }; - A5AAF99B237F13B2009CD413 /* ReportStatusCodeLib.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ReportStatusCodeLib.c; sourceTree = ""; }; - A5AAF99D237F13B2009CD413 /* PeiPerformanceLib.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = PeiPerformanceLib.uni; sourceTree = ""; }; - A5AAF99E237F13B2009CD413 /* PeiPerformanceLib.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = PeiPerformanceLib.c; sourceTree = ""; }; - A5AAF99F237F13B2009CD413 /* PeiPerformanceLib.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = PeiPerformanceLib.inf; sourceTree = ""; }; - A5AAF9A1237F13B2009CD413 /* SmmLockBoxSmmLib.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SmmLockBoxSmmLib.c; sourceTree = ""; }; - A5AAF9A2237F13B2009CD413 /* SmmLockBoxPeiLib.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = SmmLockBoxPeiLib.uni; sourceTree = ""; }; - A5AAF9A3237F13B2009CD413 /* SmmLockBoxDxeLib.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = SmmLockBoxDxeLib.uni; sourceTree = ""; }; - A5AAF9A4237F13B2009CD413 /* SmmLockBoxPeiLib.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = SmmLockBoxPeiLib.inf; sourceTree = ""; }; - A5AAF9A5237F13B2009CD413 /* SmmLockBoxDxeLib.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = SmmLockBoxDxeLib.inf; sourceTree = ""; }; - A5AAF9A6237F13B2009CD413 /* SmmLockBoxSmmLib.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = SmmLockBoxSmmLib.inf; sourceTree = ""; }; - A5AAF9A7237F13B2009CD413 /* SmmLockBoxSmmLib.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = SmmLockBoxSmmLib.uni; sourceTree = ""; }; - A5AAF9A8237F13B2009CD413 /* SmmLockBoxPeiLib.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SmmLockBoxPeiLib.c; sourceTree = ""; }; - A5AAF9A9237F13B2009CD413 /* SmmLockBoxLibPrivate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SmmLockBoxLibPrivate.h; sourceTree = ""; }; - A5AAF9AA237F13B2009CD413 /* SmmLockBoxDxeLib.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SmmLockBoxDxeLib.c; sourceTree = ""; }; - A5AAF9AC237F13B2009CD413 /* DxePerformanceLib.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = DxePerformanceLib.c; sourceTree = ""; }; - A5AAF9AD237F13B2009CD413 /* DxePerformanceLib.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = DxePerformanceLib.uni; sourceTree = ""; }; - A5AAF9AE237F13B2009CD413 /* DxePerformanceLib.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = DxePerformanceLib.inf; sourceTree = ""; }; - A5AAF9B0237F13B2009CD413 /* SmmMemoryAllocationProfileLib.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = SmmMemoryAllocationProfileLib.uni; sourceTree = ""; }; - A5AAF9B1237F13B2009CD413 /* MemoryAllocationLib.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = MemoryAllocationLib.c; sourceTree = ""; }; - A5AAF9B2237F13B2009CD413 /* SmmMemoryAllocationProfileLib.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = SmmMemoryAllocationProfileLib.inf; sourceTree = ""; }; - A5AAF9B3237F13B2009CD413 /* SmmMemoryProfileLib.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SmmMemoryProfileLib.c; sourceTree = ""; }; - A5AAF9B5237F13B2009CD413 /* PlatformBootManager.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = PlatformBootManager.c; sourceTree = ""; }; - A5AAF9B6237F13B2009CD413 /* PlatformBootManagerLibNull.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = PlatformBootManagerLibNull.inf; sourceTree = ""; }; - A5AAF9B7237F13B2009CD413 /* PlatformBootManagerLibNull.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = PlatformBootManagerLibNull.uni; sourceTree = ""; }; - A5AAF9B9237F13B2009CD413 /* DxeFileExplorerProtocol.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = DxeFileExplorerProtocol.inf; sourceTree = ""; }; - A5AAF9BA237F13B2009CD413 /* DxeFileExplorerProtocol.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = DxeFileExplorerProtocol.uni; sourceTree = ""; }; - A5AAF9BB237F13B2009CD413 /* DxeFileExplorerProtocol.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = DxeFileExplorerProtocol.c; sourceTree = ""; }; - A5AAF9BD237F13B2009CD413 /* InternalBootScriptLib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = InternalBootScriptLib.h; sourceTree = ""; }; - A5AAF9BE237F13B2009CD413 /* BootScriptInternalFormat.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BootScriptInternalFormat.h; sourceTree = ""; }; - A5AAF9BF237F13B2009CD413 /* BootScriptSave.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = BootScriptSave.c; sourceTree = ""; }; - A5AAF9C0237F13B2009CD413 /* BootScriptExecute.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = BootScriptExecute.c; sourceTree = ""; }; - A5AAF9C1237F13B2009CD413 /* DxeS3BootScriptLib.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = DxeS3BootScriptLib.inf; sourceTree = ""; }; - A5AAF9C2237F13B2009CD413 /* DxeS3BootScriptLib.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = DxeS3BootScriptLib.uni; sourceTree = ""; }; - A5AAF9C4237F13B2009CD413 /* DxeHttpLib.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = DxeHttpLib.c; sourceTree = ""; }; - A5AAF9C5237F13B2009CD413 /* DxeHttpLib.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = DxeHttpLib.inf; sourceTree = ""; }; - A5AAF9C6237F13B2009CD413 /* DxeHttpLib.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = DxeHttpLib.uni; sourceTree = ""; }; - A5AAF9C7237F13B2009CD413 /* DxeHttpLib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DxeHttpLib.h; sourceTree = ""; }; - A5AAF9C9237F13B2009CD413 /* BasePlatformHookLibNull.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = BasePlatformHookLibNull.inf; sourceTree = ""; }; - A5AAF9CA237F13B2009CD413 /* BasePlatformHookLibNull.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = BasePlatformHookLibNull.uni; sourceTree = ""; }; - A5AAF9CB237F13B2009CD413 /* BasePlatformHookLibNull.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = BasePlatformHookLibNull.c; sourceTree = ""; }; - A5AAF9CD237F13B2009CD413 /* BaseResetSystemLibNull.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = BaseResetSystemLibNull.uni; sourceTree = ""; }; - A5AAF9CE237F13B2009CD413 /* BaseResetSystemLibNull.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = BaseResetSystemLibNull.inf; sourceTree = ""; }; - A5AAF9CF237F13B2009CD413 /* BaseResetSystemLibNull.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = BaseResetSystemLibNull.c; sourceTree = ""; }; - A5AAF9D1237F13B2009CD413 /* NonDiscoverableDeviceRegistrationLib.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = NonDiscoverableDeviceRegistrationLib.c; sourceTree = ""; }; - A5AAF9D2237F13B2009CD413 /* NonDiscoverableDeviceRegistrationLib.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = NonDiscoverableDeviceRegistrationLib.inf; sourceTree = ""; }; - A5AAF9D4237F13B2009CD413 /* FrameBufferBltLib.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = FrameBufferBltLib.c; sourceTree = ""; }; - A5AAF9D5237F13B2009CD413 /* FrameBufferBltLib.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = FrameBufferBltLib.inf; sourceTree = ""; }; - A5AAF9D7237F13B2009CD413 /* PciHostBridgeLibNull.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = PciHostBridgeLibNull.uni; sourceTree = ""; }; - A5AAF9D8237F13B2009CD413 /* PciHostBridgeLibNull.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = PciHostBridgeLibNull.inf; sourceTree = ""; }; - A5AAF9D9237F13B2009CD413 /* PciHostBridgeLibNull.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = PciHostBridgeLibNull.c; sourceTree = ""; }; - A5AAF9DB237F13B2009CD413 /* PeiDxeDebugLibReportStatusCode.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = PeiDxeDebugLibReportStatusCode.uni; sourceTree = ""; }; - A5AAF9DC237F13B2009CD413 /* DebugLib.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = DebugLib.c; sourceTree = ""; }; - A5AAF9DD237F13B2009CD413 /* PeiDxeDebugLibReportStatusCode.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = PeiDxeDebugLibReportStatusCode.inf; sourceTree = ""; }; - A5AAF9DF237F13B2009CD413 /* TpmMeasurementLibNull.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = TpmMeasurementLibNull.uni; sourceTree = ""; }; - A5AAF9E0237F13B2009CD413 /* TpmMeasurementLibNull.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = TpmMeasurementLibNull.c; sourceTree = ""; }; - A5AAF9E1237F13B2009CD413 /* TpmMeasurementLibNull.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = TpmMeasurementLibNull.inf; sourceTree = ""; }; - A5AAF9E3237F13B2009CD413 /* PeiDebugPrintHobLib.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = PeiDebugPrintHobLib.uni; sourceTree = ""; }; - A5AAF9E4237F13B2009CD413 /* PeiDebugPrintHobLib.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = PeiDebugPrintHobLib.c; sourceTree = ""; }; - A5AAF9E5237F13B2009CD413 /* PeiDebugPrintHobLib.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = PeiDebugPrintHobLib.inf; sourceTree = ""; }; - A5AAF9E7237F13B2009CD413 /* RuntimeDxeReportStatusCodeLib.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = RuntimeDxeReportStatusCodeLib.inf; sourceTree = ""; }; - A5AAF9E8237F13B2009CD413 /* RuntimeDxeReportStatusCodeLib.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = RuntimeDxeReportStatusCodeLib.uni; sourceTree = ""; }; - A5AAF9E9237F13B2009CD413 /* ReportStatusCodeLib.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ReportStatusCodeLib.c; sourceTree = ""; }; - A5AAF9EB237F13B2009CD413 /* UefiSortLib.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = UefiSortLib.inf; sourceTree = ""; }; - A5AAF9EC237F13B2009CD413 /* UefiSortLib.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = UefiSortLib.c; sourceTree = ""; }; - A5AAF9ED237F13B2009CD413 /* UefiSortLib.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = UefiSortLib.uni; sourceTree = ""; }; - A5AAF9EF237F13B2009CD413 /* VarCheckHiiGen.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = VarCheckHiiGen.c; sourceTree = ""; }; - A5AAF9F0237F13B2009CD413 /* VarCheckHii.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = VarCheckHii.h; sourceTree = ""; }; - A5AAF9F1237F13B2009CD413 /* VarCheckHiiLib.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = VarCheckHiiLib.uni; sourceTree = ""; }; - A5AAF9F2237F13B2009CD413 /* VarCheckHiiGenFromFv.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = VarCheckHiiGenFromFv.c; sourceTree = ""; }; - A5AAF9F3237F13B2009CD413 /* VarCheckHiiLib.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = VarCheckHiiLib.inf; sourceTree = ""; }; - A5AAF9F4237F13B2009CD413 /* InternalVarCheckStructure.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = InternalVarCheckStructure.h; sourceTree = ""; }; - A5AAF9F5237F13B2009CD413 /* VarCheckHiiGenFromHii.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = VarCheckHiiGenFromHii.c; sourceTree = ""; }; - A5AAF9F6237F13B2009CD413 /* VarCheckHiiLibNullClass.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = VarCheckHiiLibNullClass.c; sourceTree = ""; }; - A5AAF9F7237F13B2009CD413 /* VarCheckHiiGen.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = VarCheckHiiGen.h; sourceTree = ""; }; - A5AAF9F9237F13B2009CD413 /* BaseMemoryAllocationLibNull.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = BaseMemoryAllocationLibNull.c; sourceTree = ""; }; - A5AAF9FA237F13B2009CD413 /* BaseMemoryAllocationLibNull.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = BaseMemoryAllocationLibNull.inf; sourceTree = ""; }; - A5AAF9FB237F13B2009CD413 /* BaseMemoryAllocationLibNull.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = BaseMemoryAllocationLibNull.uni; sourceTree = ""; }; - A5AAF9FD237F13B2009CD413 /* DisplayUpdateProgressLibText.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = DisplayUpdateProgressLibText.c; sourceTree = ""; }; - A5AAF9FE237F13B2009CD413 /* DisplayUpdateProgressLibText.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = DisplayUpdateProgressLibText.inf; sourceTree = ""; }; - A5AAF9FF237F13B2009CD413 /* DisplayUpdateProgressLibText.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = DisplayUpdateProgressLibText.uni; sourceTree = ""; }; - A5AAFA01237F13B2009CD413 /* CustomizedDisplayLibModStrs.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = CustomizedDisplayLibModStrs.uni; sourceTree = ""; }; - A5AAFA02237F13B2009CD413 /* Colors.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Colors.h; sourceTree = ""; }; - A5AAFA03237F13B2009CD413 /* CustomizedDisplayLibInternal.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CustomizedDisplayLibInternal.h; sourceTree = ""; }; - A5AAFA04237F13B2009CD413 /* CustomizedDisplayLib.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = CustomizedDisplayLib.inf; sourceTree = ""; }; - A5AAFA05237F13B2009CD413 /* CustomizedDisplayLib.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = CustomizedDisplayLib.uni; sourceTree = ""; }; - A5AAFA06237F13B2009CD413 /* CustomizedDisplayLibInternal.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = CustomizedDisplayLibInternal.c; sourceTree = ""; }; - A5AAFA07237F13B2009CD413 /* CustomizedDisplayLib.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = CustomizedDisplayLib.c; sourceTree = ""; }; - A5AAFA09237F13B2009CD413 /* SmmCorePlatformHookLibNull.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = SmmCorePlatformHookLibNull.inf; sourceTree = ""; }; - A5AAFA0A237F13B2009CD413 /* SmmCorePlatformHookLibNull.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = SmmCorePlatformHookLibNull.uni; sourceTree = ""; }; - A5AAFA0B237F13B2009CD413 /* SmmCorePlatformHookLibNull.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SmmCorePlatformHookLibNull.c; sourceTree = ""; }; - A5AAFA0D237F13B2009CD413 /* DebugAgentLibNull.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = DebugAgentLibNull.uni; sourceTree = ""; }; - A5AAFA0E237F13B2009CD413 /* DebugAgentLibNull.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = DebugAgentLibNull.inf; sourceTree = ""; }; - A5AAFA0F237F13B2009CD413 /* DebugAgentLibNull.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = DebugAgentLibNull.c; sourceTree = ""; }; - A5AAFA11237F13B2009CD413 /* UefiHiiServicesLib.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = UefiHiiServicesLib.inf; sourceTree = ""; }; - A5AAFA12237F13B2009CD413 /* UefiHiiServicesLib.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = UefiHiiServicesLib.uni; sourceTree = ""; }; - A5AAFA13237F13B2009CD413 /* UefiHiiServicesLib.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = UefiHiiServicesLib.c; sourceTree = ""; }; - A5AAFA15237F13B2009CD413 /* BmLib.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = BmLib.c; sourceTree = ""; }; - A5AAFA16237F13B2009CD413 /* BootMaintenanceManagerUiLib.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = BootMaintenanceManagerUiLib.inf; sourceTree = ""; }; - A5AAFA17237F13B2009CD413 /* BootOption.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = BootOption.c; sourceTree = ""; }; - A5AAFA18237F13B2009CD413 /* BootMaintenanceManagerUiLib.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = BootMaintenanceManagerUiLib.uni; sourceTree = ""; }; - A5AAFA19237F13B2009CD413 /* BootMaintenanceManagerCustomizedUiSupport.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = BootMaintenanceManagerCustomizedUiSupport.c; sourceTree = ""; }; - A5AAFA1A237F13B2009CD413 /* BootMaintenanceManagerCustomizedUi.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = BootMaintenanceManagerCustomizedUi.c; sourceTree = ""; }; - A5AAFA1B237F13B2009CD413 /* BootMaintenanceManager.vfr */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = BootMaintenanceManager.vfr; sourceTree = ""; }; - A5AAFA1C237F13B2009CD413 /* BootMaintenanceManagerStrings.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = BootMaintenanceManagerStrings.uni; sourceTree = ""; }; - A5AAFA1D237F13B2009CD413 /* BootMaintenanceManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BootMaintenanceManager.h; sourceTree = ""; }; - A5AAFA1E237F13B2009CD413 /* BootMaintenance.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = BootMaintenance.c; sourceTree = ""; }; - A5AAFA1F237F13B2009CD413 /* FormGuid.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FormGuid.h; sourceTree = ""; }; - A5AAFA20237F13B2009CD413 /* BootMaintenanceManagerCustomizedUiSupport.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BootMaintenanceManagerCustomizedUiSupport.h; sourceTree = ""; }; - A5AAFA21237F13B2009CD413 /* UpdatePage.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = UpdatePage.c; sourceTree = ""; }; - A5AAFA22237F13B2009CD413 /* Data.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = Data.c; sourceTree = ""; }; - A5AAFA23237F13B2009CD413 /* BootMaintenanceManagerCustomizedUi.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BootMaintenanceManagerCustomizedUi.h; sourceTree = ""; }; - A5AAFA24237F13B2009CD413 /* ConsoleOption.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ConsoleOption.c; sourceTree = ""; }; - A5AAFA25237F13B2009CD413 /* Variable.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = Variable.c; sourceTree = ""; }; - A5AAFA27237F13B2009CD413 /* PlatformHookLibSerialPortPpi.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = PlatformHookLibSerialPortPpi.inf; sourceTree = ""; }; - A5AAFA28237F13B2009CD413 /* PlatformHookLibSerialPortPpi.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = PlatformHookLibSerialPortPpi.uni; sourceTree = ""; }; - A5AAFA29237F13B2009CD413 /* PlatformHookLibSerialPortPpi.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = PlatformHookLibSerialPortPpi.c; sourceTree = ""; }; - A5AAFA2B237F13B2009CD413 /* BaseSerialPortLib16550.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = BaseSerialPortLib16550.c; sourceTree = ""; }; - A5AAFA2C237F13B2009CD413 /* BaseSerialPortLib16550.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = BaseSerialPortLib16550.inf; sourceTree = ""; }; - A5AAFA2D237F13B2009CD413 /* BaseSerialPortLib16550.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = BaseSerialPortLib16550.uni; sourceTree = ""; }; - A5AAFA2F237F13B2009CD413 /* BaseHobLibNull.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = BaseHobLibNull.c; sourceTree = ""; }; - A5AAFA30237F13B2009CD413 /* BaseHobLibNull.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = BaseHobLibNull.inf; sourceTree = ""; }; - A5AAFA31237F13B2009CD413 /* BaseHobLibNull.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = BaseHobLibNull.uni; sourceTree = ""; }; - A5AAFA33237F13B2009CD413 /* SmmPerformanceLib.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SmmPerformanceLib.c; sourceTree = ""; }; - A5AAFA34237F13B2009CD413 /* SmmPerformanceLib.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = SmmPerformanceLib.inf; sourceTree = ""; }; - A5AAFA35237F13B2009CD413 /* SmmPerformanceLib.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = SmmPerformanceLib.uni; sourceTree = ""; }; - A5AAFA37237F13B2009CD413 /* DxeCapsuleLibNull.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = DxeCapsuleLibNull.inf; sourceTree = ""; }; - A5AAFA38237F13B2009CD413 /* DxeCapsuleLibNull.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = DxeCapsuleLibNull.uni; sourceTree = ""; }; - A5AAFA39237F13B2009CD413 /* DxeCapsuleLibNull.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = DxeCapsuleLibNull.c; sourceTree = ""; }; - A5AAFA3B237F13B2009CD413 /* DxeDebugPrintErrorLevelLib.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = DxeDebugPrintErrorLevelLib.inf; sourceTree = ""; }; - A5AAFA3C237F13B2009CD413 /* DxeDebugPrintErrorLevelLib.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = DxeDebugPrintErrorLevelLib.uni; sourceTree = ""; }; - A5AAFA3D237F13B2009CD413 /* DxeDebugPrintErrorLevelLib.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = DxeDebugPrintErrorLevelLib.c; sourceTree = ""; }; - A5AAFA3F237F13B2009CD413 /* PiSmmCoreSmmServicesTableLib.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = PiSmmCoreSmmServicesTableLib.uni; sourceTree = ""; }; - A5AAFA40237F13B2009CD413 /* PiSmmCoreSmmServicesTableLib.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = PiSmmCoreSmmServicesTableLib.inf; sourceTree = ""; }; - A5AAFA41237F13B2009CD413 /* PiSmmCoreSmmServicesTableLib.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = PiSmmCoreSmmServicesTableLib.c; sourceTree = ""; }; - A5AAFA43237F13B2009CD413 /* LICENSE */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = LICENSE; sourceTree = ""; }; - A5AAFA44237F13B2009CD413 /* BrotliDecompressLibInternal.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BrotliDecompressLibInternal.h; sourceTree = ""; }; - A5AAFA46237F13B2009CD413 /* port.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = port.h; sourceTree = ""; }; - A5AAFA47237F13B2009CD413 /* types.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = types.h; sourceTree = ""; }; - A5AAFA48237F13B2009CD413 /* decode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = decode.h; sourceTree = ""; }; - A5AAFA49237F13B2009CD413 /* BrotliDecompress.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = BrotliDecompress.c; sourceTree = ""; }; - A5AAFA4B237F13B2009CD413 /* brotli-comparison-study-2015-09-22.pdf */ = {isa = PBXFileReference; lastKnownFileType = image.pdf; path = "brotli-comparison-study-2015-09-22.pdf"; sourceTree = ""; }; - A5AAFA4C237F13B2009CD413 /* README.md */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = net.daringfireball.markdown; path = README.md; sourceTree = ""; }; - A5AAFA4E237F13B2009CD413 /* dictionary.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = dictionary.c; sourceTree = ""; }; - A5AAFA4F237F13B2009CD413 /* version.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = version.h; sourceTree = ""; }; - A5AAFA50237F13B2009CD413 /* transform.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = transform.c; sourceTree = ""; }; - A5AAFA51237F13B2009CD413 /* context.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = context.h; sourceTree = ""; }; - A5AAFA52237F13B2009CD413 /* constants.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = constants.h; sourceTree = ""; }; - A5AAFA53237F13B2009CD413 /* dictionary.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = dictionary.h; sourceTree = ""; }; - A5AAFA54237F13B2009CD413 /* transform.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = transform.h; sourceTree = ""; }; - A5AAFA55237F13B2009CD413 /* platform.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = platform.h; sourceTree = ""; }; - A5AAFA57237F13B2009CD413 /* state.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = state.c; sourceTree = ""; }; - A5AAFA58237F13B2009CD413 /* bit_reader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = bit_reader.h; sourceTree = ""; }; - A5AAFA59237F13B3009CD413 /* decode.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = decode.c; sourceTree = ""; }; - A5AAFA5A237F13B3009CD413 /* huffman.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = huffman.c; sourceTree = ""; }; - A5AAFA5B237F13B3009CD413 /* bit_reader.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = bit_reader.c; sourceTree = ""; }; - A5AAFA5C237F13B3009CD413 /* prefix.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = prefix.h; sourceTree = ""; }; - A5AAFA5D237F13B3009CD413 /* state.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = state.h; sourceTree = ""; }; - A5AAFA5E237F13B3009CD413 /* huffman.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = huffman.h; sourceTree = ""; }; - A5AAFA5F237F13B3009CD413 /* ReadMe.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = ReadMe.txt; sourceTree = ""; }; - A5AAFA60237F13B3009CD413 /* BrotliDecompressLib.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = BrotliDecompressLib.uni; sourceTree = ""; }; - A5AAFA61237F13B3009CD413 /* BrotliCustomDecompressLib.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = BrotliCustomDecompressLib.inf; sourceTree = ""; }; - A5AAFA62237F13B3009CD413 /* GuidedSectionExtraction.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = GuidedSectionExtraction.c; sourceTree = ""; }; - A5AAFA64237F13B3009CD413 /* ResetUtility.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ResetUtility.c; sourceTree = ""; }; - A5AAFA65237F13B3009CD413 /* ResetUtilityLib.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = ResetUtilityLib.inf; sourceTree = ""; }; - A5AAFA67237F13B3009CD413 /* SmmCorePerformanceLib.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SmmCorePerformanceLib.c; sourceTree = ""; }; - A5AAFA68237F13B3009CD413 /* SmmCorePerformanceLib.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = SmmCorePerformanceLib.uni; sourceTree = ""; }; - A5AAFA69237F13B3009CD413 /* SmmCorePerformanceLib.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = SmmCorePerformanceLib.inf; sourceTree = ""; }; - A5AAFA6A237F13B3009CD413 /* SmmCorePerformanceLibInternal.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SmmCorePerformanceLibInternal.h; sourceTree = ""; }; - A5AAFA6C237F13B3009CD413 /* MemoryAllocationLib.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = MemoryAllocationLib.c; sourceTree = ""; }; - A5AAFA6D237F13B3009CD413 /* UefiMemoryAllocationProfileLib.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = UefiMemoryAllocationProfileLib.uni; sourceTree = ""; }; - A5AAFA6E237F13B3009CD413 /* UefiMemoryAllocationProfileLib.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = UefiMemoryAllocationProfileLib.inf; sourceTree = ""; }; - A5AAFA6F237F13B3009CD413 /* DxeMemoryProfileLib.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = DxeMemoryProfileLib.c; sourceTree = ""; }; - A5AAFA71237F13B3009CD413 /* PeiDebugLibDebugPpi.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = PeiDebugLibDebugPpi.inf; sourceTree = ""; }; - A5AAFA72237F13B3009CD413 /* DebugLib.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = DebugLib.c; sourceTree = ""; }; - A5AAFA74237F13B3009CD413 /* SmmSmiHandlerProfileLib.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SmmSmiHandlerProfileLib.c; sourceTree = ""; }; - A5AAFA75237F13B3009CD413 /* SmmSmiHandlerProfileLib.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = SmmSmiHandlerProfileLib.inf; sourceTree = ""; }; - A5AAFA76237F13B3009CD413 /* SmmSmiHandlerProfileLib.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = SmmSmiHandlerProfileLib.uni; sourceTree = ""; }; - A5AAFA78237F13B3009CD413 /* DxeReportStatusCodeLib.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = DxeReportStatusCodeLib.inf; sourceTree = ""; }; - A5AAFA79237F13B3009CD413 /* DxeReportStatusCodeLib.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = DxeReportStatusCodeLib.uni; sourceTree = ""; }; - A5AAFA7A237F13B3009CD413 /* ReportStatusCodeLib.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ReportStatusCodeLib.c; sourceTree = ""; }; - A5AAFA7C237F13B3009CD413 /* VarCheckUefiLib.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = VarCheckUefiLib.inf; sourceTree = ""; }; - A5AAFA7D237F13B3009CD413 /* VarCheckUefiLib.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = VarCheckUefiLib.uni; sourceTree = ""; }; - A5AAFA7E237F13B3009CD413 /* VarCheckUefiLibNullClass.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = VarCheckUefiLibNullClass.c; sourceTree = ""; }; - A5AAFA80237F13B3009CD413 /* RuntimeResetSystemLib.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = RuntimeResetSystemLib.inf; sourceTree = ""; }; - A5AAFA81237F13B3009CD413 /* RuntimeResetSystemLib.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = RuntimeResetSystemLib.c; sourceTree = ""; }; - A5AAFA82237F13B3009CD413 /* RuntimeResetSystemLib.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = RuntimeResetSystemLib.uni; sourceTree = ""; }; - A5AAFA84237F13B3009CD413 /* VarCheckPcdLibNullClass.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = VarCheckPcdLibNullClass.c; sourceTree = ""; }; - A5AAFA85237F13B3009CD413 /* VarCheckPcdStructure.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = VarCheckPcdStructure.h; sourceTree = ""; }; - A5AAFA86237F13B3009CD413 /* VarCheckPcdLib.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = VarCheckPcdLib.uni; sourceTree = ""; }; - A5AAFA87237F13B3009CD413 /* VarCheckPcdLib.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = VarCheckPcdLib.inf; sourceTree = ""; }; - A5AAFA89237F13B3009CD413 /* DxeSecurityManagementLib.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = DxeSecurityManagementLib.c; sourceTree = ""; }; - A5AAFA8A237F13B3009CD413 /* DxeSecurityManagementLib.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = DxeSecurityManagementLib.uni; sourceTree = ""; }; - A5AAFA8B237F13B3009CD413 /* DxeSecurityManagementLib.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = DxeSecurityManagementLib.inf; sourceTree = ""; }; - A5AAFA8D237F13B3009CD413 /* PiSmmCoreMemoryProfileLib.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = PiSmmCoreMemoryProfileLib.c; sourceTree = ""; }; - A5AAFA8E237F13B3009CD413 /* PiSmmCoreMemoryAllocationServices.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PiSmmCoreMemoryAllocationServices.h; sourceTree = ""; }; - A5AAFA8F237F13B3009CD413 /* MemoryAllocationLib.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = MemoryAllocationLib.c; sourceTree = ""; }; - A5AAFA90237F13B3009CD413 /* PiSmmCoreMemoryProfileServices.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PiSmmCoreMemoryProfileServices.h; sourceTree = ""; }; - A5AAFA91237F13B3009CD413 /* PiSmmCoreMemoryAllocationLib.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = PiSmmCoreMemoryAllocationLib.uni; sourceTree = ""; }; - A5AAFA92237F13B3009CD413 /* PiSmmCoreMemoryAllocationProfileLib.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = PiSmmCoreMemoryAllocationProfileLib.inf; sourceTree = ""; }; - A5AAFA93237F13B3009CD413 /* PiSmmCoreMemoryProfileLibNull.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = PiSmmCoreMemoryProfileLibNull.c; sourceTree = ""; }; - A5AAFA94237F13B3009CD413 /* PiSmmCoreMemoryAllocationLib.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = PiSmmCoreMemoryAllocationLib.inf; sourceTree = ""; }; - A5AAFA95237F13B3009CD413 /* PiSmmCoreMemoryAllocationProfileLib.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = PiSmmCoreMemoryAllocationProfileLib.uni; sourceTree = ""; }; - A5AAFA97237F13B3009CD413 /* DxePrintLibPrint2Protocol.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = DxePrintLibPrint2Protocol.uni; sourceTree = ""; }; - A5AAFA98237F13B3009CD413 /* PrintLib.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = PrintLib.c; sourceTree = ""; }; - A5AAFA99237F13B3009CD413 /* DxePrintLibPrint2Protocol.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = DxePrintLibPrint2Protocol.inf; sourceTree = ""; }; - A5AAFA9B237F13B3009CD413 /* MemoryAllocationLib.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = MemoryAllocationLib.c; sourceTree = ""; }; - A5AAFA9C237F13B3009CD413 /* DxeCoreMemoryAllocationServices.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DxeCoreMemoryAllocationServices.h; sourceTree = ""; }; - A5AAFA9D237F13B3009CD413 /* DxeCoreMemoryProfileServices.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DxeCoreMemoryProfileServices.h; sourceTree = ""; }; - A5AAFA9E237F13B3009CD413 /* DxeCoreMemoryAllocationProfileLib.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = DxeCoreMemoryAllocationProfileLib.inf; sourceTree = ""; }; - A5AAFA9F237F13B3009CD413 /* DxeCoreMemoryAllocationProfileLib.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = DxeCoreMemoryAllocationProfileLib.uni; sourceTree = ""; }; - A5AAFAA0237F13B3009CD413 /* DxeCoreMemoryProfileLib.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = DxeCoreMemoryProfileLib.c; sourceTree = ""; }; - A5AAFAA1237F13B3009CD413 /* DxeCoreMemoryAllocationLib.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = DxeCoreMemoryAllocationLib.uni; sourceTree = ""; }; - A5AAFAA2237F13B3009CD413 /* DxeCoreMemoryAllocationLib.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = DxeCoreMemoryAllocationLib.inf; sourceTree = ""; }; - A5AAFAA3237F13B3009CD413 /* DxeCoreMemoryProfileLibNull.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = DxeCoreMemoryProfileLibNull.c; sourceTree = ""; }; - A5AAFAA5237F13B3009CD413 /* BootManagerStrings.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = BootManagerStrings.uni; sourceTree = ""; }; - A5AAFAA6237F13B3009CD413 /* BootManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BootManager.h; sourceTree = ""; }; - A5AAFAA7237F13B3009CD413 /* BootManagerUiLib.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = BootManagerUiLib.uni; sourceTree = ""; }; - A5AAFAA8237F13B3009CD413 /* BootManagerVfr.Vfr */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = BootManagerVfr.Vfr; sourceTree = ""; }; - A5AAFAA9237F13B3009CD413 /* BootManagerUiLib.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = BootManagerUiLib.inf; sourceTree = ""; }; - A5AAFAAA237F13B3009CD413 /* BootManager.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = BootManager.c; sourceTree = ""; }; - A5AAFAAC237F13B3009CD413 /* BmpSupportLib.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = BmpSupportLib.c; sourceTree = ""; }; - A5AAFAAD237F13B3009CD413 /* BaseBmpSupportLib.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = BaseBmpSupportLib.inf; sourceTree = ""; }; - A5AAFAAE237F13B3009CD413 /* BaseBmpSupportLib.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = BaseBmpSupportLib.uni; sourceTree = ""; }; - A5AAFAB0237F13B3009CD413 /* CpuExceptionHandlerLibNull.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = CpuExceptionHandlerLibNull.uni; sourceTree = ""; }; - A5AAFAB1237F13B3009CD413 /* CpuExceptionHandlerLibNull.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = CpuExceptionHandlerLibNull.inf; sourceTree = ""; }; - A5AAFAB2237F13B3009CD413 /* CpuExceptionHandlerLibNull.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = CpuExceptionHandlerLibNull.c; sourceTree = ""; }; - A5AAFAB4237F13B3009CD413 /* HiiLib.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = HiiLib.c; sourceTree = ""; }; - A5AAFAB5237F13B3009CD413 /* UefiHiiLib.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = UefiHiiLib.uni; sourceTree = ""; }; - A5AAFAB6237F13B3009CD413 /* UefiHiiLib.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = UefiHiiLib.inf; sourceTree = ""; }; - A5AAFAB7237F13B3009CD413 /* HiiString.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = HiiString.c; sourceTree = ""; }; - A5AAFAB8237F13B3009CD413 /* HiiLanguage.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = HiiLanguage.c; sourceTree = ""; }; - A5AAFAB9237F13B3009CD413 /* InternalHiiLib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = InternalHiiLib.h; sourceTree = ""; }; - A5AAFABB237F13B3009CD413 /* BaseSortLib.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = BaseSortLib.inf; sourceTree = ""; }; - A5AAFABC237F13B3009CD413 /* BaseSortLib.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = BaseSortLib.uni; sourceTree = ""; }; - A5AAFABD237F13B3009CD413 /* BaseSortLib.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = BaseSortLib.c; sourceTree = ""; }; - A5AAFABF237F13B3009CD413 /* DxeCorePerformanceLib.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = DxeCorePerformanceLib.c; sourceTree = ""; }; - A5AAFAC0237F13B3009CD413 /* DxeCorePerformanceLibInternal.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DxeCorePerformanceLibInternal.h; sourceTree = ""; }; - A5AAFAC1237F13B3009CD413 /* DxeCorePerformanceLib.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = DxeCorePerformanceLib.inf; sourceTree = ""; }; - A5AAFAC2237F13B3009CD413 /* DxeCorePerformanceLib.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = DxeCorePerformanceLib.uni; sourceTree = ""; }; - A5AAFAC4237F13B3009CD413 /* DxeResetSystemLib.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = DxeResetSystemLib.uni; sourceTree = ""; }; - A5AAFAC5237F13B3009CD413 /* DxeResetSystemLib.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = DxeResetSystemLib.inf; sourceTree = ""; }; - A5AAFAC6237F13B3009CD413 /* DxeResetSystemLib.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = DxeResetSystemLib.c; sourceTree = ""; }; - A5AAFAC8237F13B3009CD413 /* PeiResetSystemLib.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = PeiResetSystemLib.uni; sourceTree = ""; }; - A5AAFAC9237F13B3009CD413 /* PeiResetSystemLib.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = PeiResetSystemLib.inf; sourceTree = ""; }; - A5AAFACA237F13B3009CD413 /* PeiResetSystemLib.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = PeiResetSystemLib.c; sourceTree = ""; }; - A5AAFACB237F13B3009CD413 /* MdeModulePkgSample.dec */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = MdeModulePkgSample.dec; sourceTree = ""; }; - A5AAFACD237F13B3009CD413 /* LogoDxe.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = LogoDxe.uni; sourceTree = ""; }; - A5AAFACE237F13B3009CD413 /* LogoDxe.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = LogoDxe.inf; sourceTree = ""; }; - A5AAFACF237F13B3009CD413 /* Logo.bmp */ = {isa = PBXFileReference; lastKnownFileType = image.bmp; path = Logo.bmp; sourceTree = ""; }; - A5AAFAD0237F13B3009CD413 /* Logo.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Logo.uni; sourceTree = ""; }; - A5AAFAD1237F13B3009CD413 /* LogoDxeExtra.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = LogoDxeExtra.uni; sourceTree = ""; }; - A5AAFAD2237F13B3009CD413 /* LogoExtra.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = LogoExtra.uni; sourceTree = ""; }; - A5AAFAD3237F13B3009CD413 /* Logo.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Logo.inf; sourceTree = ""; }; - A5AAFAD4237F13B3009CD413 /* Logo.idf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Logo.idf; sourceTree = ""; }; - A5AAFAD5237F13B3009CD413 /* Logo.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = Logo.c; sourceTree = ""; }; - A5AAFAD6237F13B3009CD413 /* MdeModulePkg.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = MdeModulePkg.uni; sourceTree = ""; }; - A5AAFAD7237F13B3009CD413 /* MdeModulePkg.dec */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = MdeModulePkg.dec; sourceTree = ""; }; - A5AAFADA237F13B3009CD413 /* FrontPage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FrontPage.h; sourceTree = ""; }; - A5AAFADB237F13B3009CD413 /* FrontPageCustomizedUi.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FrontPageCustomizedUi.h; sourceTree = ""; }; - A5AAFADC237F13B3009CD413 /* Ui.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Ui.h; sourceTree = ""; }; - A5AAFADD237F13B3009CD413 /* FrontPageCustomizedUiSupport.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = FrontPageCustomizedUiSupport.c; sourceTree = ""; }; - A5AAFADE237F13B3009CD413 /* FrontPageVfr.Vfr */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = FrontPageVfr.Vfr; sourceTree = ""; }; - A5AAFADF237F13B3009CD413 /* String.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = String.c; sourceTree = ""; }; - A5AAFAE0237F13B3009CD413 /* FrontPageCustomizedUi.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = FrontPageCustomizedUi.c; sourceTree = ""; }; - A5AAFAE1237F13B3009CD413 /* UiApp.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = UiApp.uni; sourceTree = ""; }; - A5AAFAE2237F13B3009CD413 /* FrontPage.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = FrontPage.c; sourceTree = ""; }; - A5AAFAE3237F13B3009CD413 /* FrontPageStrings.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = FrontPageStrings.uni; sourceTree = ""; }; - A5AAFAE4237F13B3009CD413 /* UiAppExtra.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = UiAppExtra.uni; sourceTree = ""; }; - A5AAFAE5237F13B3009CD413 /* UiApp.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = UiApp.inf; sourceTree = ""; }; - A5AAFAE6237F13B3009CD413 /* FrontPageCustomizedUiSupport.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FrontPageCustomizedUiSupport.h; sourceTree = ""; }; - A5AAFAE7237F13B3009CD413 /* String.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = String.h; sourceTree = ""; }; - A5AAFAE9237F13B3009CD413 /* HelloWorldStr.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = HelloWorldStr.uni; sourceTree = ""; }; - A5AAFAEA237F13B3009CD413 /* HelloWorld.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = HelloWorld.uni; sourceTree = ""; }; - A5AAFAEB237F13B3009CD413 /* HelloWorld.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = HelloWorld.inf; sourceTree = ""; }; - A5AAFAEC237F13B3009CD413 /* HelloWorld.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = HelloWorld.c; sourceTree = ""; }; - A5AAFAED237F13B3009CD413 /* HelloWorldExtra.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = HelloWorldExtra.uni; sourceTree = ""; }; - A5AAFAEF237F13B3009CD413 /* BootManagerMenu.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = BootManagerMenu.c; sourceTree = ""; }; - A5AAFAF0237F13B3009CD413 /* BootManagerMenuAppExtra.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = BootManagerMenuAppExtra.uni; sourceTree = ""; }; - A5AAFAF1237F13B3009CD413 /* BootManagerMenuStrings.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = BootManagerMenuStrings.uni; sourceTree = ""; }; - A5AAFAF2237F13B3009CD413 /* BootManagerMenu.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BootManagerMenu.h; sourceTree = ""; }; - A5AAFAF3237F13B3009CD413 /* BootManagerMenuApp.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = BootManagerMenuApp.inf; sourceTree = ""; }; - A5AAFAF4237F13B3009CD413 /* BootManagerMenuApp.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = BootManagerMenuApp.uni; sourceTree = ""; }; - A5AAFAF6237F13B3009CD413 /* CapsuleApp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CapsuleApp.h; sourceTree = ""; }; - A5AAFAF7237F13B3009CD413 /* CapsuleApp.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = CapsuleApp.inf; sourceTree = ""; }; - A5AAFAF8237F13B3009CD413 /* AppSupport.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = AppSupport.c; sourceTree = ""; }; - A5AAFAF9237F13B3009CD413 /* CapsuleApp.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = CapsuleApp.uni; sourceTree = ""; }; - A5AAFAFA237F13B3009CD413 /* CapsuleAppExtra.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = CapsuleAppExtra.uni; sourceTree = ""; }; - A5AAFAFB237F13B3009CD413 /* CapsuleOnDisk.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = CapsuleOnDisk.c; sourceTree = ""; }; - A5AAFAFC237F13B3009CD413 /* CapsuleApp.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = CapsuleApp.c; sourceTree = ""; }; - A5AAFAFD237F13B3009CD413 /* CapsuleDump.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = CapsuleDump.c; sourceTree = ""; }; - A5AAFAFF237F13B3009CD413 /* MemoryProfileInfo.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = MemoryProfileInfo.inf; sourceTree = ""; }; - A5AAFB00237F13B3009CD413 /* MemoryProfileInfo.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = MemoryProfileInfo.c; sourceTree = ""; }; - A5AAFB01237F13B3009CD413 /* MemoryProfileInfo.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = MemoryProfileInfo.uni; sourceTree = ""; }; - A5AAFB02237F13B3009CD413 /* MemoryProfileInfoExtra.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = MemoryProfileInfoExtra.uni; sourceTree = ""; }; - A5AAFB04237F13B3009CD413 /* DumpDynPcd.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = DumpDynPcd.inf; sourceTree = ""; }; - A5AAFB05237F13B3009CD413 /* DumpDynPcdStr.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = DumpDynPcdStr.uni; sourceTree = ""; }; - A5AAFB06237F13B3009CD413 /* DumpDynPcd.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = DumpDynPcd.c; sourceTree = ""; }; - A5AAFB08237F13B3009CD413 /* VariableInfoExtra.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = VariableInfoExtra.uni; sourceTree = ""; }; - A5AAFB09237F13B3009CD413 /* VariableInfo.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = VariableInfo.inf; sourceTree = ""; }; - A5AAFB0A237F13B3009CD413 /* VariableInfo.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = VariableInfo.uni; sourceTree = ""; }; - A5AAFB0B237F13B3009CD413 /* VariableInfo.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = VariableInfo.c; sourceTree = ""; }; - A5AAFB0D237F13B3009CD413 /* SmiHandlerProfileInfoExtra.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = SmiHandlerProfileInfoExtra.uni; sourceTree = ""; }; - A5AAFB0E237F13B3009CD413 /* SmiHandlerProfileInfo.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = SmiHandlerProfileInfo.uni; sourceTree = ""; }; - A5AAFB0F237F13B3009CD413 /* SmiHandlerProfileInfo.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = SmiHandlerProfileInfo.inf; sourceTree = ""; }; - A5AAFB10237F13B3009CD413 /* SmiHandlerProfileInfo.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SmiHandlerProfileInfo.c; sourceTree = ""; }; - A5AAFB11237F13B3009CD413 /* MdeModulePkg.dsc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = MdeModulePkg.dsc; sourceTree = ""; }; - A5AAFD74237F13BC009CD413 /* PiPei.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PiPei.h; sourceTree = ""; }; - A5AAFD77237F13BC009CD413 /* PiMm.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PiMm.h; sourceTree = ""; }; - A5AAFD78237F13BC009CD413 /* Uefi.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Uefi.h; sourceTree = ""; }; - A5AAFD7A237F13BC009CD413 /* Nasm.inc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.pascal; path = Nasm.inc; sourceTree = ""; }; - A5AAFD7B237F13BC009CD413 /* ProcessorBind.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ProcessorBind.h; sourceTree = ""; }; - A5AAFD7D237F13BC009CD413 /* UefiAcpiDataTable.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UefiAcpiDataTable.h; sourceTree = ""; }; - A5AAFD7E237F13BC009CD413 /* UefiPxe.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UefiPxe.h; sourceTree = ""; }; - A5AAFD7F237F13BC009CD413 /* UefiSpec.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UefiSpec.h; sourceTree = ""; }; - A5AAFD80237F13BC009CD413 /* UefiGpt.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UefiGpt.h; sourceTree = ""; }; - A5AAFD81237F13BC009CD413 /* UefiBaseType.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UefiBaseType.h; sourceTree = ""; }; - A5AAFD82237F13BC009CD413 /* UefiInternalFormRepresentation.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UefiInternalFormRepresentation.h; sourceTree = ""; }; - A5AAFD83237F13BC009CD413 /* UefiMultiPhase.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UefiMultiPhase.h; sourceTree = ""; }; - A5AAFD85237F13BC009CD413 /* IpmiNetFnFirmware.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IpmiNetFnFirmware.h; sourceTree = ""; }; - A5AAFD86237F13BC009CD413 /* SdramSpdLpDdr.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SdramSpdLpDdr.h; sourceTree = ""; }; - A5AAFD87237F13BC009CD413 /* ElTorito.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ElTorito.h; sourceTree = ""; }; - A5AAFD88237F13BC009CD413 /* SdramSpdDdr3.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SdramSpdDdr3.h; sourceTree = ""; }; - A5AAFD89237F13BC009CD413 /* Acpi62.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Acpi62.h; sourceTree = ""; }; - A5AAFD8A237F13BC009CD413 /* WindowsSmmSecurityMitigationTable.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WindowsSmmSecurityMitigationTable.h; sourceTree = ""; }; - A5AAFD8B237F13BC009CD413 /* Nvme.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Nvme.h; sourceTree = ""; }; - A5AAFD8C237F13BC009CD413 /* IoRemappingTable.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IoRemappingTable.h; sourceTree = ""; }; - A5AAFD8D237F13BC009CD413 /* LowPowerIdleTable.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LowPowerIdleTable.h; sourceTree = ""; }; - A5AAFD8E237F13BC009CD413 /* Emmc.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Emmc.h; sourceTree = ""; }; - A5AAFD8F237F13BC009CD413 /* WatchdogActionTable.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WatchdogActionTable.h; sourceTree = ""; }; - A5AAFD90237F13BC009CD413 /* DmaRemappingReportingTable.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DmaRemappingReportingTable.h; sourceTree = ""; }; - A5AAFD91237F13BC009CD413 /* AlertStandardFormatTable.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AlertStandardFormatTable.h; sourceTree = ""; }; - A5AAFD92237F13BC009CD413 /* Acpi40.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Acpi40.h; sourceTree = ""; }; - A5AAFD93237F13BC009CD413 /* Bmp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Bmp.h; sourceTree = ""; }; - A5AAFD94237F13BC009CD413 /* UefiTcgPlatform.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UefiTcgPlatform.h; sourceTree = ""; }; - A5AAFD95237F13BC009CD413 /* SerialPortConsoleRedirectionTable.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SerialPortConsoleRedirectionTable.h; sourceTree = ""; }; - A5AAFD96237F13BC009CD413 /* Pci22.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Pci22.h; sourceTree = ""; }; - A5AAFD97237F13BC009CD413 /* Mbr.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Mbr.h; sourceTree = ""; }; - A5AAFD98237F13BC009CD413 /* Acpi61.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Acpi61.h; sourceTree = ""; }; - A5AAFD99237F13BC009CD413 /* SdramSpdDdr4.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SdramSpdDdr4.h; sourceTree = ""; }; - A5AAFD9A237F13BC009CD413 /* TcgStorageOpal.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TcgStorageOpal.h; sourceTree = ""; }; - A5AAFD9B237F13BC009CD413 /* IpmiNetFnChassis.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IpmiNetFnChassis.h; sourceTree = ""; }; - A5AAFD9C237F13BC009CD413 /* Acpi.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Acpi.h; sourceTree = ""; }; - A5AAFD9D237F13BC009CD413 /* Tpm2Acpi.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Tpm2Acpi.h; sourceTree = ""; }; - A5AAFD9E237F13BC009CD413 /* PeImage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PeImage.h; sourceTree = ""; }; - A5AAFD9F237F13BC009CD413 /* PciExpress30.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PciExpress30.h; sourceTree = ""; }; - A5AAFDA0237F13BC009CD413 /* SdramSpd.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SdramSpd.h; sourceTree = ""; }; - A5AAFDA1237F13BC009CD413 /* Acpi10.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Acpi10.h; sourceTree = ""; }; - A5AAFDA2237F13BC009CD413 /* MemoryMappedConfigurationSpaceAccessTable.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MemoryMappedConfigurationSpaceAccessTable.h; sourceTree = ""; }; - A5AAFDA3237F13BC009CD413 /* IpmiFruInformationStorage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IpmiFruInformationStorage.h; sourceTree = ""; }; - A5AAFDA4237F13BC009CD413 /* IpmiNetFnStorage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IpmiNetFnStorage.h; sourceTree = ""; }; - A5AAFDA5237F13BC009CD413 /* IScsiBootFirmwareTable.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IScsiBootFirmwareTable.h; sourceTree = ""; }; - A5AAFDA6237F13BC009CD413 /* Bluetooth.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Bluetooth.h; sourceTree = ""; }; - A5AAFDA7237F13BC009CD413 /* AcpiAml.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AcpiAml.h; sourceTree = ""; }; - A5AAFDA8237F13BC009CD413 /* Acpi50.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Acpi50.h; sourceTree = ""; }; - A5AAFDA9237F13BC009CD413 /* Tpm20.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Tpm20.h; sourceTree = ""; }; - A5AAFDAA237F13BC009CD413 /* PciCodeId.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PciCodeId.h; sourceTree = ""; }; - A5AAFDAB237F13BD009CD413 /* IpmiNetFnTransport.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IpmiNetFnTransport.h; sourceTree = ""; }; - A5AAFDAC237F13BD009CD413 /* Dhcp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Dhcp.h; sourceTree = ""; }; - A5AAFDAD237F13BD009CD413 /* TpmPtp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TpmPtp.h; sourceTree = ""; }; - A5AAFDAE237F13BD009CD413 /* Acpi20.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Acpi20.h; sourceTree = ""; }; - A5AAFDAF237F13BD009CD413 /* Pci23.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Pci23.h; sourceTree = ""; }; - A5AAFDB0237F13BD009CD413 /* IpmiNetFnApp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IpmiNetFnApp.h; sourceTree = ""; }; - A5AAFDB1237F13BD009CD413 /* PciExpress40.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PciExpress40.h; sourceTree = ""; }; - A5AAFDB2237F13BD009CD413 /* IpmiNetFnSensorEvent.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IpmiNetFnSensorEvent.h; sourceTree = ""; }; - A5AAFDB3237F13BD009CD413 /* Acpi60.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Acpi60.h; sourceTree = ""; }; - A5AAFDB4237F13BD009CD413 /* PciExpress21.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PciExpress21.h; sourceTree = ""; }; - A5AAFDB5237F13BD009CD413 /* PciExpress31.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PciExpress31.h; sourceTree = ""; }; - A5AAFDB6237F13BD009CD413 /* TcgStorageCore.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TcgStorageCore.h; sourceTree = ""; }; - A5AAFDB7237F13BD009CD413 /* HighPrecisionEventTimerTable.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HighPrecisionEventTimerTable.h; sourceTree = ""; }; - A5AAFDB8237F13BD009CD413 /* Usb.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Usb.h; sourceTree = ""; }; - A5AAFDB9237F13BD009CD413 /* Acpi51.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Acpi51.h; sourceTree = ""; }; - A5AAFDBA237F13BD009CD413 /* Sd.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Sd.h; sourceTree = ""; }; - A5AAFDBB237F13BD009CD413 /* WatchdogResourceTable.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WatchdogResourceTable.h; sourceTree = ""; }; - A5AAFDBC237F13BD009CD413 /* Acpi30.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Acpi30.h; sourceTree = ""; }; - A5AAFDBD237F13BD009CD413 /* Udf.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Udf.h; sourceTree = ""; }; - A5AAFDBE237F13BD009CD413 /* DebugPortTable.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DebugPortTable.h; sourceTree = ""; }; - A5AAFDBF237F13BD009CD413 /* SmBios.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SmBios.h; sourceTree = ""; }; - A5AAFDC0237F13BD009CD413 /* MemoryOverwriteRequestControlLock.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MemoryOverwriteRequestControlLock.h; sourceTree = ""; }; - A5AAFDC1237F13BD009CD413 /* Atapi.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Atapi.h; sourceTree = ""; }; - A5AAFDC2237F13BD009CD413 /* TcpaAcpi.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TcpaAcpi.h; sourceTree = ""; }; - A5AAFDC3237F13BD009CD413 /* LegacyBiosMpTable.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LegacyBiosMpTable.h; sourceTree = ""; }; - A5AAFDC4237F13BD009CD413 /* TpmTis.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TpmTis.h; sourceTree = ""; }; - A5AAFDC5237F13BD009CD413 /* Acpi63.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Acpi63.h; sourceTree = ""; }; - A5AAFDC6237F13BD009CD413 /* SmBus.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SmBus.h; sourceTree = ""; }; - A5AAFDC7237F13BD009CD413 /* Http11.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Http11.h; sourceTree = ""; }; - A5AAFDC8237F13BD009CD413 /* TcgPhysicalPresence.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TcgPhysicalPresence.h; sourceTree = ""; }; - A5AAFDC9237F13BD009CD413 /* IpmiNetFnGroupExtension.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IpmiNetFnGroupExtension.h; sourceTree = ""; }; - A5AAFDCA237F13BD009CD413 /* Tls1.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Tls1.h; sourceTree = ""; }; - A5AAFDCB237F13BD009CD413 /* Pci.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Pci.h; sourceTree = ""; }; - A5AAFDCC237F13BD009CD413 /* DebugPort2Table.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DebugPort2Table.h; sourceTree = ""; }; - A5AAFDCD237F13BD009CD413 /* Scsi.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Scsi.h; sourceTree = ""; }; - A5AAFDCE237F13BD009CD413 /* Pci30.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Pci30.h; sourceTree = ""; }; - A5AAFDCF237F13BD009CD413 /* Hsti.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Hsti.h; sourceTree = ""; }; - A5AAFDD0237F13BD009CD413 /* WindowsUxCapsule.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WindowsUxCapsule.h; sourceTree = ""; }; - A5AAFDD1237F13BD009CD413 /* Tpm12.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Tpm12.h; sourceTree = ""; }; - A5AAFDD2237F13BD009CD413 /* Ipmi.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Ipmi.h; sourceTree = ""; }; - A5AAFDD3237F13BD009CD413 /* IpmiNetFnBridge.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IpmiNetFnBridge.h; sourceTree = ""; }; - A5AAFDD4237F13BD009CD413 /* ServiceProcessorManagementInterfaceTable.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ServiceProcessorManagementInterfaceTable.h; sourceTree = ""; }; - A5AAFDD6237F13BD009CD413 /* OrderedCollectionLib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OrderedCollectionLib.h; sourceTree = ""; }; - A5AAFDD7237F13BD009CD413 /* TimerLib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TimerLib.h; sourceTree = ""; }; - A5AAFDD8237F13BD009CD413 /* PeiServicesTablePointerLib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PeiServicesTablePointerLib.h; sourceTree = ""; }; - A5AAFDD9237F13BD009CD413 /* SmiHandlerProfileLib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SmiHandlerProfileLib.h; sourceTree = ""; }; - A5AAFDDA237F13BD009CD413 /* UefiUsbLib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UefiUsbLib.h; sourceTree = ""; }; - A5AAFDDB237F13BD009CD413 /* UefiDecompressLib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UefiDecompressLib.h; sourceTree = ""; }; - A5AAFDDC237F13BD009CD413 /* UefiRuntimeServicesTableLib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UefiRuntimeServicesTableLib.h; sourceTree = ""; }; - A5AAFDDD237F13BD009CD413 /* PeimEntryPoint.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PeimEntryPoint.h; sourceTree = ""; }; - A5AAFDDE237F13BD009CD413 /* RngLib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RngLib.h; sourceTree = ""; }; - A5AAFDDF237F13BD009CD413 /* PciCf8Lib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PciCf8Lib.h; sourceTree = ""; }; - A5AAFDE0237F13BD009CD413 /* SmmPeriodicSmiLib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SmmPeriodicSmiLib.h; sourceTree = ""; }; - A5AAFDE1237F13BD009CD413 /* PeiCoreEntryPoint.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PeiCoreEntryPoint.h; sourceTree = ""; }; - A5AAFDE2237F13BD009CD413 /* S3PciLib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = S3PciLib.h; sourceTree = ""; }; - A5AAFDE3237F13BD009CD413 /* PciSegmentLib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PciSegmentLib.h; sourceTree = ""; }; - A5AAFDE4237F13BD009CD413 /* DebugLib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DebugLib.h; sourceTree = ""; }; - A5AAFDE5237F13BD009CD413 /* SynchronizationLib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SynchronizationLib.h; sourceTree = ""; }; - A5AAFDE6237F13BD009CD413 /* SafeIntLib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SafeIntLib.h; sourceTree = ""; }; - A5AAFDE7237F13BD009CD413 /* S3SmbusLib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = S3SmbusLib.h; sourceTree = ""; }; - A5AAFDE8237F13BD009CD413 /* DevicePathLib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DevicePathLib.h; sourceTree = ""; }; - A5AAFDE9237F13BD009CD413 /* PcdLib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PcdLib.h; sourceTree = ""; }; - A5AAFDEA237F13BD009CD413 /* FileHandleLib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FileHandleLib.h; sourceTree = ""; }; - A5AAFDEB237F13BD009CD413 /* UefiLib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UefiLib.h; sourceTree = ""; }; - A5AAFDEC237F13BD009CD413 /* SmmMemLib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SmmMemLib.h; sourceTree = ""; }; - A5AAFDED237F13BD009CD413 /* PostCodeLib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PostCodeLib.h; sourceTree = ""; }; - A5AAFDEE237F13BD009CD413 /* S3StallLib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = S3StallLib.h; sourceTree = ""; }; - A5AAFDEF237F13BD009CD413 /* PciLib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PciLib.h; sourceTree = ""; }; - A5AAFDF0237F13BD009CD413 /* UefiBootServicesTableLib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UefiBootServicesTableLib.h; sourceTree = ""; }; - A5AAFDF1237F13BD009CD413 /* MmServicesTableLib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MmServicesTableLib.h; sourceTree = ""; }; - A5AAFDF2237F13BD009CD413 /* PeCoffExtraActionLib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PeCoffExtraActionLib.h; sourceTree = ""; }; - A5AAFDF3237F13BD009CD413 /* PciExpressLib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PciExpressLib.h; sourceTree = ""; }; - A5AAFDF4237F13BD009CD413 /* S3IoLib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = S3IoLib.h; sourceTree = ""; }; - A5AAFDF5237F13BD009CD413 /* ReportStatusCodeLib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ReportStatusCodeLib.h; sourceTree = ""; }; - A5AAFDF6237F13BD009CD413 /* UefiScsiLib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UefiScsiLib.h; sourceTree = ""; }; - A5AAFDF7237F13BD009CD413 /* UefiRuntimeLib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UefiRuntimeLib.h; sourceTree = ""; }; - A5AAFDF8237F13BD009CD413 /* SmmServicesTableLib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SmmServicesTableLib.h; sourceTree = ""; }; - A5AAFDF9237F13BD009CD413 /* SerialPortLib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SerialPortLib.h; sourceTree = ""; }; - A5AAFDFA237F13BD009CD413 /* DxeCoreEntryPoint.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DxeCoreEntryPoint.h; sourceTree = ""; }; - A5AAFDFB237F13BD009CD413 /* PeCoffGetEntryPointLib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PeCoffGetEntryPointLib.h; sourceTree = ""; }; - A5AAFDFC237F13BD009CD413 /* UefiDriverEntryPoint.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UefiDriverEntryPoint.h; sourceTree = ""; }; - A5AAFDFD237F13BD009CD413 /* BaseMemoryLib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BaseMemoryLib.h; sourceTree = ""; }; - A5AAFDFE237F13BD009CD413 /* DxeServicesLib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DxeServicesLib.h; sourceTree = ""; }; - A5AAFDFF237F13BD009CD413 /* PeCoffLib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PeCoffLib.h; sourceTree = ""; }; - A5AAFE00237F13BD009CD413 /* S3PciSegmentLib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = S3PciSegmentLib.h; sourceTree = ""; }; - A5AAFE01237F13BD009CD413 /* BaseLib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BaseLib.h; sourceTree = ""; }; - A5AAFE02237F13BD009CD413 /* SmmLib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SmmLib.h; sourceTree = ""; }; - A5AAFE03237F13BD009CD413 /* PeiServicesLib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PeiServicesLib.h; sourceTree = ""; }; - A5AAFE04237F13BD009CD413 /* DxeServicesTableLib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DxeServicesTableLib.h; sourceTree = ""; }; - A5AAFE05237F13BD009CD413 /* SmbusLib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SmbusLib.h; sourceTree = ""; }; - A5AAFE06237F13BD009CD413 /* MemoryAllocationLib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MemoryAllocationLib.h; sourceTree = ""; }; - A5AAFE07237F13BD009CD413 /* HstiLib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HstiLib.h; sourceTree = ""; }; - A5AAFE08237F13BD009CD413 /* ExtractGuidedSectionLib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ExtractGuidedSectionLib.h; sourceTree = ""; }; - A5AAFE09237F13BD009CD413 /* ResourcePublicationLib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ResourcePublicationLib.h; sourceTree = ""; }; - A5AAFE0A237F13BD009CD413 /* S3BootScriptLib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = S3BootScriptLib.h; sourceTree = ""; }; - A5AAFE0B237F13BD009CD413 /* CacheMaintenanceLib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CacheMaintenanceLib.h; sourceTree = ""; }; - A5AAFE0C237F13BD009CD413 /* CpuLib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CpuLib.h; sourceTree = ""; }; - A5AAFE0D237F13BD009CD413 /* StandaloneMmDriverEntryPoint.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = StandaloneMmDriverEntryPoint.h; sourceTree = ""; }; - A5AAFE0E237F13BD009CD413 /* SmmIoLib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SmmIoLib.h; sourceTree = ""; }; - A5AAFE0F237F13BD009CD413 /* IoLib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IoLib.h; sourceTree = ""; }; - A5AAFE10237F13BD009CD413 /* PrintLib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PrintLib.h; sourceTree = ""; }; - A5AAFE11237F13BD009CD413 /* UefiApplicationEntryPoint.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UefiApplicationEntryPoint.h; sourceTree = ""; }; - A5AAFE12237F13BD009CD413 /* PerformanceLib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PerformanceLib.h; sourceTree = ""; }; - A5AAFE13237F13BD009CD413 /* HobLib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HobLib.h; sourceTree = ""; }; - A5AAFE14237F13BD009CD413 /* DebugPrintErrorLevelLib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DebugPrintErrorLevelLib.h; sourceTree = ""; }; - A5AAFE15237F13BD009CD413 /* PciSegmentInfoLib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PciSegmentInfoLib.h; sourceTree = ""; }; - A5AAFE17237F13BD009CD413 /* LegacySpiController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LegacySpiController.h; sourceTree = ""; }; - A5AAFE18237F13BD009CD413 /* SpiHc.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SpiHc.h; sourceTree = ""; }; - A5AAFE19237F13BD009CD413 /* Tcp4.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Tcp4.h; sourceTree = ""; }; - A5AAFE1A237F13BD009CD413 /* DriverFamilyOverride.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DriverFamilyOverride.h; sourceTree = ""; }; - A5AAFE1B237F13BD009CD413 /* MmSxDispatch.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MmSxDispatch.h; sourceTree = ""; }; - A5AAFE1C237F13BD009CD413 /* MmCpu.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MmCpu.h; sourceTree = ""; }; - A5AAFE1D237F13BD009CD413 /* TcgService.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TcgService.h; sourceTree = ""; }; - A5AAFE1E237F13BD009CD413 /* WiFi2.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WiFi2.h; sourceTree = ""; }; - A5AAFE1F237F13BD009CD413 /* PartitionInfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PartitionInfo.h; sourceTree = ""; }; - A5AAFE20237F13BD009CD413 /* SmmReportStatusCodeHandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SmmReportStatusCodeHandler.h; sourceTree = ""; }; - A5AAFE21237F13BD009CD413 /* UgaDraw.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UgaDraw.h; sourceTree = ""; }; - A5AAFE22237F13BD009CD413 /* Bis.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Bis.h; sourceTree = ""; }; - A5AAFE23237F13BD009CD413 /* SmartCardEdge.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SmartCardEdge.h; sourceTree = ""; }; - A5AAFE24237F13BD009CD413 /* EapConfiguration.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EapConfiguration.h; sourceTree = ""; }; - A5AAFE25237F13BD009CD413 /* ShellDynamicCommand.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ShellDynamicCommand.h; sourceTree = ""; }; - A5AAFE26237F13BD009CD413 /* Rest.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Rest.h; sourceTree = ""; }; - A5AAFE27237F13BD009CD413 /* NvdimmLabel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NvdimmLabel.h; sourceTree = ""; }; - A5AAFE28237F13BD009CD413 /* Udp4.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Udp4.h; sourceTree = ""; }; - A5AAFE29237F13BD009CD413 /* LoadedImage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LoadedImage.h; sourceTree = ""; }; - A5AAFE2A237F13BD009CD413 /* WiFi.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WiFi.h; sourceTree = ""; }; - A5AAFE2B237F13BD009CD413 /* SmmSwDispatch2.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SmmSwDispatch2.h; sourceTree = ""; }; - A5AAFE2C237F13BD009CD413 /* FormBrowser2.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FormBrowser2.h; sourceTree = ""; }; - A5AAFE2D237F13BD009CD413 /* I2cHost.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = I2cHost.h; sourceTree = ""; }; - A5AAFE2E237F13BD009CD413 /* DevicePathFromText.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DevicePathFromText.h; sourceTree = ""; }; - A5AAFE2F237F13BD009CD413 /* Shell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Shell.h; sourceTree = ""; }; - A5AAFE30237F13BD009CD413 /* IpSec.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IpSec.h; sourceTree = ""; }; - A5AAFE31237F13BD009CD413 /* SimpleTextInEx.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SimpleTextInEx.h; sourceTree = ""; }; - A5AAFE32237F13BD009CD413 /* CpuIo2.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CpuIo2.h; sourceTree = ""; }; - A5AAFE33237F13BD009CD413 /* Ip4.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Ip4.h; sourceTree = ""; }; - A5AAFE34237F13BD009CD413 /* DriverConfiguration.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DriverConfiguration.h; sourceTree = ""; }; - A5AAFE35237F13BD009CD413 /* SpiSmmConfiguration.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SpiSmmConfiguration.h; sourceTree = ""; }; - A5AAFE36237F13BD009CD413 /* DiskIo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DiskIo.h; sourceTree = ""; }; - A5AAFE37237F13BD009CD413 /* Tls.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Tls.h; sourceTree = ""; }; - A5AAFE38237F13BD009CD413 /* MmReadyToLock.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MmReadyToLock.h; sourceTree = ""; }; - A5AAFE39237F13BD009CD413 /* SimpleFileSystem.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SimpleFileSystem.h; sourceTree = ""; }; - A5AAFE3A237F13BD009CD413 /* MmStatusCode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MmStatusCode.h; sourceTree = ""; }; - A5AAFE3B237F13BD009CD413 /* Http.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Http.h; sourceTree = ""; }; - A5AAFE3C237F13BD009CD413 /* ScsiPassThruExt.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ScsiPassThruExt.h; sourceTree = ""; }; - A5AAFE3D237F13BD009CD413 /* HiiConfigAccess.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HiiConfigAccess.h; sourceTree = ""; }; - A5AAFE3E237F13BD009CD413 /* SmbusHc.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SmbusHc.h; sourceTree = ""; }; - A5AAFE3F237F13BD009CD413 /* DevicePathToText.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DevicePathToText.h; sourceTree = ""; }; - A5AAFE40237F13BD009CD413 /* MmCpuIo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MmCpuIo.h; sourceTree = ""; }; - A5AAFE41237F13BD009CD413 /* ServiceBinding.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ServiceBinding.h; sourceTree = ""; }; - A5AAFE42237F13BD009CD413 /* DriverConfiguration2.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DriverConfiguration2.h; sourceTree = ""; }; - A5AAFE43237F13BD009CD413 /* Usb2HostController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Usb2HostController.h; sourceTree = ""; }; - A5AAFE44237F13BD009CD413 /* FirmwareManagement.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FirmwareManagement.h; sourceTree = ""; }; - A5AAFE45237F13BD009CD413 /* EdidDiscovered.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EdidDiscovered.h; sourceTree = ""; }; - A5AAFE46237F13BD009CD413 /* MmEndOfDxe.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MmEndOfDxe.h; sourceTree = ""; }; - A5AAFE47237F13BD009CD413 /* BootManagerPolicy.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BootManagerPolicy.h; sourceTree = ""; }; - A5AAFE48237F13BD009CD413 /* RealTimeClock.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RealTimeClock.h; sourceTree = ""; }; - A5AAFE49237F13BD009CD413 /* SimplePointer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SimplePointer.h; sourceTree = ""; }; - A5AAFE4A237F13BD009CD413 /* Ip6Config.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Ip6Config.h; sourceTree = ""; }; - A5AAFE4B237F13BD009CD413 /* I2cIo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = I2cIo.h; sourceTree = ""; }; - A5AAFE4C237F13BD009CD413 /* Dns6.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Dns6.h; sourceTree = ""; }; - A5AAFE4D237F13BD009CD413 /* UfsDeviceConfig.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UfsDeviceConfig.h; sourceTree = ""; }; - A5AAFE4E237F13BD009CD413 /* DeviceIo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DeviceIo.h; sourceTree = ""; }; - A5AAFE4F237F13BD009CD413 /* ReportStatusCodeHandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ReportStatusCodeHandler.h; sourceTree = ""; }; - A5AAFE50237F13BD009CD413 /* TlsConfig.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TlsConfig.h; sourceTree = ""; }; - A5AAFE51237F13BD009CD413 /* ScsiIo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ScsiIo.h; sourceTree = ""; }; - A5AAFE52237F13BD009CD413 /* Security.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Security.h; sourceTree = ""; }; - A5AAFE53237F13BD009CD413 /* SmmSxDispatch2.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SmmSxDispatch2.h; sourceTree = ""; }; - A5AAFE54237F13BD009CD413 /* MmControl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MmControl.h; sourceTree = ""; }; - A5AAFE55237F13BD009CD413 /* NetworkInterfaceIdentifier.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NetworkInterfaceIdentifier.h; sourceTree = ""; }; - A5AAFE56237F13BD009CD413 /* MmPowerButtonDispatch.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MmPowerButtonDispatch.h; sourceTree = ""; }; - A5AAFE57237F13BD009CD413 /* Security2.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Security2.h; sourceTree = ""; }; - A5AAFE58237F13BD009CD413 /* EdidActive.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EdidActive.h; sourceTree = ""; }; - A5AAFE59237F13BD009CD413 /* UserCredential.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UserCredential.h; sourceTree = ""; }; - A5AAFE5A237F13BD009CD413 /* MmAccess.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MmAccess.h; sourceTree = ""; }; - A5AAFE5B237F13BD009CD413 /* UnicodeCollation.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UnicodeCollation.h; sourceTree = ""; }; - A5AAFE5C237F13BD009CD413 /* MonotonicCounter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MonotonicCounter.h; sourceTree = ""; }; - A5AAFE5D237F13BD009CD413 /* BluetoothHc.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BluetoothHc.h; sourceTree = ""; }; - A5AAFE5E237F13BD009CD413 /* PlatformDriverOverride.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PlatformDriverOverride.h; sourceTree = ""; }; - A5AAFE5F237F13BD009CD413 /* ManagedNetwork.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ManagedNetwork.h; sourceTree = ""; }; - A5AAFE60237F13BD009CD413 /* DriverDiagnostics.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DriverDiagnostics.h; sourceTree = ""; }; - A5AAFE61237F13BD009CD413 /* HiiImageDecoder.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HiiImageDecoder.h; sourceTree = ""; }; - A5AAFE62237F13BD009CD413 /* SimpleNetwork.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SimpleNetwork.h; sourceTree = ""; }; - A5AAFE63237F13BD009CD413 /* HiiString.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HiiString.h; sourceTree = ""; }; - A5AAFE64237F13BD009CD413 /* TrEEProtocol.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TrEEProtocol.h; sourceTree = ""; }; - A5AAFE65237F13BD009CD413 /* VariableWrite.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = VariableWrite.h; sourceTree = ""; }; - A5AAFE66237F13BD009CD413 /* BluetoothLeConfig.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BluetoothLeConfig.h; sourceTree = ""; }; - A5AAFE67237F13BD009CD413 /* Ip4Config.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Ip4Config.h; sourceTree = ""; }; - A5AAFE68237F13BD009CD413 /* MmMp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MmMp.h; sourceTree = ""; }; - A5AAFE69237F13BD009CD413 /* HiiPopup.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HiiPopup.h; sourceTree = ""; }; - A5AAFE6A237F13BD009CD413 /* GraphicsOutput.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GraphicsOutput.h; sourceTree = ""; }; - A5AAFE6B237F13BD009CD413 /* IScsiInitiatorName.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IScsiInitiatorName.h; sourceTree = ""; }; - A5AAFE6C237F13BD009CD413 /* Ftp4.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Ftp4.h; sourceTree = ""; }; - A5AAFE6D237F13BD009CD413 /* AtaPassThru.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AtaPassThru.h; sourceTree = ""; }; - A5AAFE6E237F13BD009CD413 /* SimpleTextOut.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SimpleTextOut.h; sourceTree = ""; }; - A5AAFE6F237F13BD009CD413 /* HiiConfigKeyword.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HiiConfigKeyword.h; sourceTree = ""; }; - A5AAFE70237F13BD009CD413 /* PciOverride.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PciOverride.h; sourceTree = ""; }; - A5AAFE71237F13BD009CD413 /* DiskIo2.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DiskIo2.h; sourceTree = ""; }; - A5AAFE72237F13BD009CD413 /* IsaHc.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IsaHc.h; sourceTree = ""; }; - A5AAFE73237F13BD009CD413 /* ComponentName2.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ComponentName2.h; sourceTree = ""; }; - A5AAFE74237F13BD009CD413 /* SmmStatusCode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SmmStatusCode.h; sourceTree = ""; }; - A5AAFE75237F13BD009CD413 /* PciPlatform.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PciPlatform.h; sourceTree = ""; }; - A5AAFE76237F13BD009CD413 /* DriverDiagnostics2.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DriverDiagnostics2.h; sourceTree = ""; }; - A5AAFE77237F13BD009CD413 /* Rng.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Rng.h; sourceTree = ""; }; - A5AAFE78237F13BD009CD413 /* Dhcp4.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Dhcp4.h; sourceTree = ""; }; - A5AAFE79237F13BD009CD413 /* PxeBaseCode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PxeBaseCode.h; sourceTree = ""; }; - A5AAFE7A237F13BD009CD413 /* GuidedSectionExtraction.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GuidedSectionExtraction.h; sourceTree = ""; }; - A5AAFE7B237F13BD009CD413 /* Variable.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Variable.h; sourceTree = ""; }; - A5AAFE7C237F13BD009CD413 /* MmReportStatusCodeHandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MmReportStatusCodeHandler.h; sourceTree = ""; }; - A5AAFE7D237F13BD009CD413 /* DxeMmReadyToLock.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DxeMmReadyToLock.h; sourceTree = ""; }; - A5AAFE7E237F13BD009CD413 /* DriverBinding.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DriverBinding.h; sourceTree = ""; }; - A5AAFE7F237F13BD009CD413 /* FirmwareVolume2.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FirmwareVolume2.h; sourceTree = ""; }; - A5AAFE80237F13BD009CD413 /* BlockIo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BlockIo.h; sourceTree = ""; }; - A5AAFE81237F13BD009CD413 /* MmBase.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MmBase.h; sourceTree = ""; }; - A5AAFE82237F13BD009CD413 /* SmmCpuIo2.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SmmCpuIo2.h; sourceTree = ""; }; - A5AAFE83237F13BD009CD413 /* SmmUsbDispatch2.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SmmUsbDispatch2.h; sourceTree = ""; }; - A5AAFE84237F13BD009CD413 /* Mtftp6.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Mtftp6.h; sourceTree = ""; }; - A5AAFE85237F13BD009CD413 /* S3SmmSaveState.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = S3SmmSaveState.h; sourceTree = ""; }; - A5AAFE86237F13BD009CD413 /* SpiNorFlash.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SpiNorFlash.h; sourceTree = ""; }; - A5AAFE87237F13BD009CD413 /* Metronome.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Metronome.h; sourceTree = ""; }; - A5AAFE88237F13BD009CD413 /* SmmPowerButtonDispatch2.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SmmPowerButtonDispatch2.h; sourceTree = ""; }; - A5AAFE89237F13BD009CD413 /* Runtime.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Runtime.h; sourceTree = ""; }; - A5AAFE8A237F13BD009CD413 /* LegacySpiSmmFlash.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LegacySpiSmmFlash.h; sourceTree = ""; }; - A5AAFE8B237F13BD009CD413 /* PlatformToDriverConfiguration.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PlatformToDriverConfiguration.h; sourceTree = ""; }; - A5AAFE8C237F13BD009CD413 /* Timer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Timer.h; sourceTree = ""; }; - A5AAFE8D237F13BD009CD413 /* DevicePathUtilities.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DevicePathUtilities.h; sourceTree = ""; }; - A5AAFE8E237F13BD009CD413 /* PxeBaseCodeCallBack.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PxeBaseCodeCallBack.h; sourceTree = ""; }; - A5AAFE8F237F13BD009CD413 /* LegacySpiSmmController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LegacySpiSmmController.h; sourceTree = ""; }; - A5AAFE90237F13BD009CD413 /* LegacyRegion2.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LegacyRegion2.h; sourceTree = ""; }; - A5AAFE91237F13BD009CD413 /* DebugPort.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DebugPort.h; sourceTree = ""; }; - A5AAFE92237F13BD009CD413 /* Tcp6.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Tcp6.h; sourceTree = ""; }; - A5AAFE93237F13BD009CD413 /* PciRootBridgeIo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PciRootBridgeIo.h; sourceTree = ""; }; - A5AAFE94237F13BD009CD413 /* Pcd.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Pcd.h; sourceTree = ""; }; - A5AAFE95237F13BD009CD413 /* UgaIo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UgaIo.h; sourceTree = ""; }; - A5AAFE96237F13BD009CD413 /* SpiSmmNorFlash.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SpiSmmNorFlash.h; sourceTree = ""; }; - A5AAFE97237F13BD009CD413 /* Hash2.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Hash2.h; sourceTree = ""; }; - A5AAFE98237F13BD009CD413 /* SpiConfiguration.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SpiConfiguration.h; sourceTree = ""; }; - A5AAFE99237F13BD009CD413 /* SuperIoControl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SuperIoControl.h; sourceTree = ""; }; - A5AAFE9A237F13BD009CD413 /* DevicePath.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DevicePath.h; sourceTree = ""; }; - A5AAFE9B237F13BD009CD413 /* TapeIo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TapeIo.h; sourceTree = ""; }; - A5AAFE9C237F13BD009CD413 /* SmmCpu.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SmmCpu.h; sourceTree = ""; }; - A5AAFE9D237F13BD009CD413 /* DriverSupportedEfiVersion.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DriverSupportedEfiVersion.h; sourceTree = ""; }; - A5AAFE9E237F13BD009CD413 /* StorageSecurityCommand.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = StorageSecurityCommand.h; sourceTree = ""; }; - A5AAFE9F237F13BD009CD413 /* UserManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UserManager.h; sourceTree = ""; }; - A5AAFEA0237F13BD009CD413 /* PiPcd.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PiPcd.h; sourceTree = ""; }; - A5AAFEA1237F13BD009CD413 /* SecurityPolicy.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SecurityPolicy.h; sourceTree = ""; }; - A5AAFEA2237F13BD009CD413 /* UsbFunctionIo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UsbFunctionIo.h; sourceTree = ""; }; - A5AAFEA3237F13BD009CD413 /* BusSpecificDriverOverride.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BusSpecificDriverOverride.h; sourceTree = ""; }; - A5AAFEA4237F13BD009CD413 /* MmSwDispatch.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MmSwDispatch.h; sourceTree = ""; }; - A5AAFEA5237F13BD009CD413 /* Supplicant.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Supplicant.h; sourceTree = ""; }; - A5AAFEA6237F13BD009CD413 /* Udp6.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Udp6.h; sourceTree = ""; }; - A5AAFEA7237F13BD009CD413 /* SmmReadyToLock.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SmmReadyToLock.h; sourceTree = ""; }; - A5AAFEA8237F13BD009CD413 /* PciHotPlugRequest.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PciHotPlugRequest.h; sourceTree = ""; }; - A5AAFEA9237F13BD009CD413 /* AuthenticationInfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AuthenticationInfo.h; sourceTree = ""; }; - A5AAFEAA237F13BD009CD413 /* Ip4Config2.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Ip4Config2.h; sourceTree = ""; }; - A5AAFEAB237F13BD009CD413 /* MmCommunication.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MmCommunication.h; sourceTree = ""; }; - A5AAFEAC237F13BD009CD413 /* EapManagement2.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EapManagement2.h; sourceTree = ""; }; - A5AAFEAD237F13BD009CD413 /* Decompress.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Decompress.h; sourceTree = ""; }; - A5AAFEAE237F13BD009CD413 /* PiPcdInfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PiPcdInfo.h; sourceTree = ""; }; - A5AAFEAF237F13BD009CD413 /* PciHostBridgeResourceAllocation.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PciHostBridgeResourceAllocation.h; sourceTree = ""; }; - A5AAFEB0237F13BD009CD413 /* HiiPackageList.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HiiPackageList.h; sourceTree = ""; }; - A5AAFEB1237F13BD009CD413 /* SpiIo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SpiIo.h; sourceTree = ""; }; - A5AAFEB2237F13BD009CD413 /* HiiImage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HiiImage.h; sourceTree = ""; }; - A5AAFEB3237F13BD009CD413 /* Pkcs7Verify.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Pkcs7Verify.h; sourceTree = ""; }; - A5AAFEB4237F13BD009CD413 /* SmmGpiDispatch2.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SmmGpiDispatch2.h; sourceTree = ""; }; - A5AAFEB5237F13BD009CD413 /* SmmCommunication.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SmmCommunication.h; sourceTree = ""; }; - A5AAFEB6237F13BD009CD413 /* NvmExpressPassthru.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NvmExpressPassthru.h; sourceTree = ""; }; - A5AAFEB7237F13BD009CD413 /* IpSecConfig.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IpSecConfig.h; sourceTree = ""; }; - A5AAFEB8237F13BD009CD413 /* DeferredImageLoad.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DeferredImageLoad.h; sourceTree = ""; }; - A5AAFEB9237F13BD009CD413 /* MmUsbDispatch.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MmUsbDispatch.h; sourceTree = ""; }; - A5AAFEBA237F13BD009CD413 /* SmmStandbyButtonDispatch2.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SmmStandbyButtonDispatch2.h; sourceTree = ""; }; - A5AAFEBB237F13BD009CD413 /* Capsule.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Capsule.h; sourceTree = ""; }; - A5AAFEBC237F13BD009CD413 /* SuperIo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SuperIo.h; sourceTree = ""; }; - A5AAFEBD237F13BD009CD413 /* RegularExpressionProtocol.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RegularExpressionProtocol.h; sourceTree = ""; }; - A5AAFEBE237F13BD009CD413 /* IdeControllerInit.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IdeControllerInit.h; sourceTree = ""; }; - A5AAFEBF237F13BD009CD413 /* Cpu.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Cpu.h; sourceTree = ""; }; - A5AAFEC0237F13BD009CD413 /* AbsolutePointer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AbsolutePointer.h; sourceTree = ""; }; - A5AAFEC1237F13BD009CD413 /* UsbHostController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UsbHostController.h; sourceTree = ""; }; - A5AAFEC2237F13BD009CD413 /* UsbIo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UsbIo.h; sourceTree = ""; }; - A5AAFEC3237F13BD009CD413 /* HiiConfigRouting.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HiiConfigRouting.h; sourceTree = ""; }; - A5AAFEC4237F13BD009CD413 /* BluetoothAttribute.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BluetoothAttribute.h; sourceTree = ""; }; - A5AAFEC5237F13BD009CD413 /* Ip6.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Ip6.h; sourceTree = ""; }; - A5AAFEC6237F13BD009CD413 /* BlockIo2.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BlockIo2.h; sourceTree = ""; }; - A5AAFEC7237F13BD009CD413 /* Dns4.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Dns4.h; sourceTree = ""; }; - A5AAFEC8237F13BD009CD413 /* HiiDatabase.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HiiDatabase.h; sourceTree = ""; }; - A5AAFEC9237F13BD009CD413 /* HiiImageEx.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HiiImageEx.h; sourceTree = ""; }; - A5AAFECA237F13BD009CD413 /* PciIo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PciIo.h; sourceTree = ""; }; - A5AAFECB237F13BD009CD413 /* MmPeriodicTimerDispatch.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MmPeriodicTimerDispatch.h; sourceTree = ""; }; - A5AAFECC237F13BD009CD413 /* RamDisk.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RamDisk.h; sourceTree = ""; }; - A5AAFECD237F13BD009CD413 /* ScsiPassThru.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ScsiPassThru.h; sourceTree = ""; }; - A5AAFECE237F13BD009CD413 /* DiskInfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DiskInfo.h; sourceTree = ""; }; - A5AAFECF237F13BD009CD413 /* Bds.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Bds.h; sourceTree = ""; }; - A5AAFED0237F13BD009CD413 /* SerialIo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SerialIo.h; sourceTree = ""; }; - A5AAFED1237F13BD009CD413 /* DriverHealth.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DriverHealth.h; sourceTree = ""; }; - A5AAFED2237F13BD009CD413 /* Arp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Arp.h; sourceTree = ""; }; - A5AAFED3237F13BD009CD413 /* ShellParameters.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ShellParameters.h; sourceTree = ""; }; - A5AAFED4237F13BD009CD413 /* IncompatiblePciDeviceSupport.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IncompatiblePciDeviceSupport.h; sourceTree = ""; }; - A5AAFED5237F13BD009CD413 /* LegacySpiFlash.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LegacySpiFlash.h; sourceTree = ""; }; - A5AAFED6237F13BD009CD413 /* I2cMaster.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = I2cMaster.h; sourceTree = ""; }; - A5AAFED7237F13BD009CD413 /* Smbios.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Smbios.h; sourceTree = ""; }; - A5AAFED8237F13BD009CD413 /* EapManagement.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EapManagement.h; sourceTree = ""; }; - A5AAFED9237F13BD009CD413 /* EraseBlock.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EraseBlock.h; sourceTree = ""; }; - A5AAFEDA237F13BD009CD413 /* Tcg2Protocol.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Tcg2Protocol.h; sourceTree = ""; }; - A5AAFEDB237F13BD009CD413 /* AcpiSystemDescriptionTable.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AcpiSystemDescriptionTable.h; sourceTree = ""; }; - A5AAFEDC237F13BD009CD413 /* PciEnumerationComplete.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PciEnumerationComplete.h; sourceTree = ""; }; - A5AAFEDD237F13BD009CD413 /* ResetNotification.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ResetNotification.h; sourceTree = ""; }; - A5AAFEDE237F13BD009CD413 /* PciHotPlugInit.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PciHotPlugInit.h; sourceTree = ""; }; - A5AAFEDF237F13BD009CD413 /* Kms.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Kms.h; sourceTree = ""; }; - A5AAFEE0237F13BD009CD413 /* MmPciRootBridgeIo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MmPciRootBridgeIo.h; sourceTree = ""; }; - A5AAFEE1237F13BD009CD413 /* I2cBusConfigurationManagement.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = I2cBusConfigurationManagement.h; sourceTree = ""; }; - A5AAFEE2237F13BD009CD413 /* LoadFile.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LoadFile.h; sourceTree = ""; }; - A5AAFEE3237F13BD009CD413 /* PcdInfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PcdInfo.h; sourceTree = ""; }; - A5AAFEE4237F13BD009CD413 /* WatchdogTimer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WatchdogTimer.h; sourceTree = ""; }; - A5AAFEE5237F13BD009CD413 /* SmmEndOfDxe.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SmmEndOfDxe.h; sourceTree = ""; }; - A5AAFEE6237F13BD009CD413 /* MmConfiguration.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MmConfiguration.h; sourceTree = ""; }; - A5AAFEE7237F13BD009CD413 /* SmmPeriodicTimerDispatch2.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SmmPeriodicTimerDispatch2.h; sourceTree = ""; }; - A5AAFEE8237F13BD009CD413 /* S3SaveState.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = S3SaveState.h; sourceTree = ""; }; - A5AAFEE9237F13BD009CD413 /* SdMmcPassThru.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SdMmcPassThru.h; sourceTree = ""; }; - A5AAFEEA237F13BD009CD413 /* Reset.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Reset.h; sourceTree = ""; }; - A5AAFEEB237F13BD009CD413 /* Dhcp6.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Dhcp6.h; sourceTree = ""; }; - A5AAFEEC237F13BD009CD413 /* DxeSmmReadyToLock.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DxeSmmReadyToLock.h; sourceTree = ""; }; - A5AAFEED237F13BD009CD413 /* MpService.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MpService.h; sourceTree = ""; }; - A5AAFEEE237F13BD009CD413 /* SmmConfiguration.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SmmConfiguration.h; sourceTree = ""; }; - A5AAFEEF237F13BD009CD413 /* MmGpiDispatch.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MmGpiDispatch.h; sourceTree = ""; }; - A5AAFEF0237F13BD009CD413 /* SmmControl2.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SmmControl2.h; sourceTree = ""; }; - A5AAFEF1237F13BD009CD413 /* StatusCode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = StatusCode.h; sourceTree = ""; }; - A5AAFEF2237F13BD009CD413 /* Timestamp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Timestamp.h; sourceTree = ""; }; - A5AAFEF3237F13BD009CD413 /* BlockIoCrypto.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BlockIoCrypto.h; sourceTree = ""; }; - A5AAFEF4237F13BD009CD413 /* SmartCardReader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SmartCardReader.h; sourceTree = ""; }; - A5AAFEF5237F13BD009CD413 /* FirmwareVolumeBlock.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FirmwareVolumeBlock.h; sourceTree = ""; }; - A5AAFEF6237F13BD009CD413 /* HttpBootCallback.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HttpBootCallback.h; sourceTree = ""; }; - A5AAFEF7237F13BD009CD413 /* SimpleTextIn.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SimpleTextIn.h; sourceTree = ""; }; - A5AAFEF8237F13BD009CD413 /* MmIoTrapDispatch.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MmIoTrapDispatch.h; sourceTree = ""; }; - A5AAFEF9237F13BD009CD413 /* Hash.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Hash.h; sourceTree = ""; }; - A5AAFEFA237F13BD009CD413 /* VlanConfig.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = VlanConfig.h; sourceTree = ""; }; - A5AAFEFB237F13BD009CD413 /* HiiFont.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HiiFont.h; sourceTree = ""; }; - A5AAFEFC237F13BD009CD413 /* SmmAccess2.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SmmAccess2.h; sourceTree = ""; }; - A5AAFEFD237F13BD009CD413 /* UserCredential2.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UserCredential2.h; sourceTree = ""; }; - A5AAFEFE237F13BD009CD413 /* AcpiTable.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AcpiTable.h; sourceTree = ""; }; - A5AAFEFF237F13BD009CD413 /* EdidOverride.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EdidOverride.h; sourceTree = ""; }; - A5AAFF00237F13BD009CD413 /* I2cEnumerate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = I2cEnumerate.h; sourceTree = ""; }; - A5AAFF01237F13BD009CD413 /* BluetoothConfig.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BluetoothConfig.h; sourceTree = ""; }; - A5AAFF02237F13BD009CD413 /* BluetoothIo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BluetoothIo.h; sourceTree = ""; }; - A5AAFF03237F13BD009CD413 /* MmStandbyButtonDispatch.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MmStandbyButtonDispatch.h; sourceTree = ""; }; - A5AAFF04237F13BD009CD413 /* Mtftp4.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Mtftp4.h; sourceTree = ""; }; - A5AAFF05237F13BD009CD413 /* SmmIoTrapDispatch2.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SmmIoTrapDispatch2.h; sourceTree = ""; }; - A5AAFF06237F13BD009CD413 /* SpiSmmHc.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SpiSmmHc.h; sourceTree = ""; }; - A5AAFF07237F13BD009CD413 /* Ebc.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Ebc.h; sourceTree = ""; }; - A5AAFF08237F13BD009CD413 /* DebugSupport.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DebugSupport.h; sourceTree = ""; }; - A5AAFF09237F13BD009CD413 /* ComponentName.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ComponentName.h; sourceTree = ""; }; - A5AAFF0A237F13BD009CD413 /* Eap.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Eap.h; sourceTree = ""; }; - A5AAFF0B237F13BD009CD413 /* AdapterInformation.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AdapterInformation.h; sourceTree = ""; }; - A5AAFF0C237F13BD009CD413 /* SmmBase2.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SmmBase2.h; sourceTree = ""; }; - A5AAFF0D237F13BD009CD413 /* SmmPciRootBridgeIo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SmmPciRootBridgeIo.h; sourceTree = ""; }; - A5AAFF0E237F13BD009CD413 /* HttpUtilities.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HttpUtilities.h; sourceTree = ""; }; - A5AAFF0F237F13BD009CD413 /* LoadFile2.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LoadFile2.h; sourceTree = ""; }; - A5AAFF11237F13BD009CD413 /* PiFirmwareVolume.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PiFirmwareVolume.h; sourceTree = ""; }; - A5AAFF12237F13BD009CD413 /* PiMmCis.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PiMmCis.h; sourceTree = ""; }; - A5AAFF13237F13BD009CD413 /* PiDxeCis.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PiDxeCis.h; sourceTree = ""; }; - A5AAFF14237F13BD009CD413 /* PiStatusCode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PiStatusCode.h; sourceTree = ""; }; - A5AAFF15237F13BD009CD413 /* PiBootMode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PiBootMode.h; sourceTree = ""; }; - A5AAFF16237F13BD009CD413 /* PiHob.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PiHob.h; sourceTree = ""; }; - A5AAFF17237F13BD009CD413 /* PiPeiCis.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PiPeiCis.h; sourceTree = ""; }; - A5AAFF18237F13BD009CD413 /* PiSmmCis.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PiSmmCis.h; sourceTree = ""; }; - A5AAFF19237F13BD009CD413 /* PiDependency.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PiDependency.h; sourceTree = ""; }; - A5AAFF1A237F13BD009CD413 /* PiS3BootScript.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PiS3BootScript.h; sourceTree = ""; }; - A5AAFF1B237F13BD009CD413 /* PiMultiPhase.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PiMultiPhase.h; sourceTree = ""; }; - A5AAFF1C237F13BD009CD413 /* PiFirmwareFile.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PiFirmwareFile.h; sourceTree = ""; }; - A5AAFF1D237F13BD009CD413 /* PiI2c.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PiI2c.h; sourceTree = ""; }; - A5AAFF21237F13BD009CD413 /* PiSmm.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PiSmm.h; sourceTree = ""; }; - A5AAFF24237F13BD009CD413 /* Microcode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Microcode.h; sourceTree = ""; }; - A5AAFF25237F13BD009CD413 /* SmramSaveStateMap.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SmramSaveStateMap.h; sourceTree = ""; }; - A5AAFF27237F13BD009CD413 /* Pentium4Msr.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Pentium4Msr.h; sourceTree = ""; }; - A5AAFF28237F13BD009CD413 /* GoldmontPlusMsr.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GoldmontPlusMsr.h; sourceTree = ""; }; - A5AAFF29237F13BD009CD413 /* IvyBridgeMsr.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IvyBridgeMsr.h; sourceTree = ""; }; - A5AAFF2A237F13BD009CD413 /* BroadwellMsr.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BroadwellMsr.h; sourceTree = ""; }; - A5AAFF2B237F13BD009CD413 /* HaswellEMsr.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HaswellEMsr.h; sourceTree = ""; }; - A5AAFF2C237F13BD009CD413 /* XeonE7Msr.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XeonE7Msr.h; sourceTree = ""; }; - A5AAFF2D237F13BD009CD413 /* Core2Msr.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Core2Msr.h; sourceTree = ""; }; - A5AAFF2E237F13BD009CD413 /* NehalemMsr.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NehalemMsr.h; sourceTree = ""; }; - A5AAFF2F237F13BD009CD413 /* SandyBridgeMsr.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SandyBridgeMsr.h; sourceTree = ""; }; - A5AAFF30237F13BD009CD413 /* P6Msr.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = P6Msr.h; sourceTree = ""; }; - A5AAFF31237F13BD009CD413 /* PentiumMsr.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PentiumMsr.h; sourceTree = ""; }; - A5AAFF32237F13BD009CD413 /* SilvermontMsr.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SilvermontMsr.h; sourceTree = ""; }; - A5AAFF33237F13BD009CD413 /* Xeon5600Msr.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Xeon5600Msr.h; sourceTree = ""; }; - A5AAFF34237F13BD009CD413 /* SkylakeMsr.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SkylakeMsr.h; sourceTree = ""; }; - A5AAFF35237F13BD009CD413 /* CoreMsr.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CoreMsr.h; sourceTree = ""; }; - A5AAFF36237F13BD009CD413 /* XeonDMsr.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XeonDMsr.h; sourceTree = ""; }; - A5AAFF37237F13BD009CD413 /* XeonPhiMsr.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XeonPhiMsr.h; sourceTree = ""; }; - A5AAFF38237F13BD009CD413 /* PentiumMMsr.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PentiumMMsr.h; sourceTree = ""; }; - A5AAFF39237F13BD009CD413 /* GoldmontMsr.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GoldmontMsr.h; sourceTree = ""; }; - A5AAFF3A237F13BD009CD413 /* HaswellMsr.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HaswellMsr.h; sourceTree = ""; }; - A5AAFF3B237F13BD009CD413 /* AtomMsr.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AtomMsr.h; sourceTree = ""; }; - A5AAFF3C237F13BD009CD413 /* Cpuid.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Cpuid.h; sourceTree = ""; }; - A5AAFF3D237F13BD009CD413 /* StmStatusCode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = StmStatusCode.h; sourceTree = ""; }; - A5AAFF3E237F13BE009CD413 /* StmResourceDescriptor.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = StmResourceDescriptor.h; sourceTree = ""; }; - A5AAFF3F237F13BE009CD413 /* LocalApic.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LocalApic.h; sourceTree = ""; }; - A5AAFF40237F13BE009CD413 /* StmApi.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = StmApi.h; sourceTree = ""; }; - A5AAFF41237F13BE009CD413 /* ArchitecturalMsr.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ArchitecturalMsr.h; sourceTree = ""; }; - A5AAFF42237F13BE009CD413 /* Msr.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Msr.h; sourceTree = ""; }; - A5AAFF44237F13BE009CD413 /* Cpuid.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Cpuid.h; sourceTree = ""; }; - A5AAFF45237F13BE009CD413 /* Fam17Msr.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Fam17Msr.h; sourceTree = ""; }; - A5AAFF46237F13BE009CD413 /* Msr.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Msr.h; sourceTree = ""; }; - A5AAFF47237F13BE009CD413 /* PiDxe.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PiDxe.h; sourceTree = ""; }; - A5AAFF49237F13BE009CD413 /* MdePkgTokenSpace.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MdePkgTokenSpace.h; sourceTree = ""; }; - A5AAFF4A237F13BE009CD413 /* SmramMemoryReserve.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SmramMemoryReserve.h; sourceTree = ""; }; - A5AAFF4B237F13BE009CD413 /* FileInfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FileInfo.h; sourceTree = ""; }; - A5AAFF4C237F13BE009CD413 /* SystemResourceTable.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SystemResourceTable.h; sourceTree = ""; }; - A5AAFF4D237F13BE009CD413 /* AprioriFileName.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AprioriFileName.h; sourceTree = ""; }; - A5AAFF4E237F13BE009CD413 /* PropertiesTable.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PropertiesTable.h; sourceTree = ""; }; - A5AAFF4F237F13BE009CD413 /* MemoryAllocationHob.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MemoryAllocationHob.h; sourceTree = ""; }; - A5AAFF50237F13BE009CD413 /* EventGroup.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EventGroup.h; sourceTree = ""; }; - A5AAFF51237F13BE009CD413 /* FirmwareFileSystem3.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FirmwareFileSystem3.h; sourceTree = ""; }; - A5AAFF52237F13BE009CD413 /* Cper.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Cper.h; sourceTree = ""; }; - A5AAFF53237F13BE009CD413 /* MemoryOverwriteControl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MemoryOverwriteControl.h; sourceTree = ""; }; - A5AAFF54237F13BE009CD413 /* Gpt.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Gpt.h; sourceTree = ""; }; - A5AAFF55237F13BE009CD413 /* MemoryAttributesTable.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MemoryAttributesTable.h; sourceTree = ""; }; - A5AAFF56237F13BE009CD413 /* EventLegacyBios.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EventLegacyBios.h; sourceTree = ""; }; - A5AAFF57237F13BE009CD413 /* FmpCapsule.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FmpCapsule.h; sourceTree = ""; }; - A5AAFF58237F13BE009CD413 /* FirmwareContentsSigned.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FirmwareContentsSigned.h; sourceTree = ""; }; - A5AAFF59237F13BE009CD413 /* Acpi.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Acpi.h; sourceTree = ""; }; - A5AAFF5A237F13BE009CD413 /* Apriori.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Apriori.h; sourceTree = ""; }; - A5AAFF5B237F13BE009CD413 /* DxeServices.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DxeServices.h; sourceTree = ""; }; - A5AAFF5C237F13BE009CD413 /* Btt.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Btt.h; sourceTree = ""; }; - A5AAFF5D237F13BE009CD413 /* HobList.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HobList.h; sourceTree = ""; }; - A5AAFF5E237F13BE009CD413 /* GraphicsInfoHob.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GraphicsInfoHob.h; sourceTree = ""; }; - A5AAFF5F237F13BE009CD413 /* HiiFormMapMethodGuid.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HiiFormMapMethodGuid.h; sourceTree = ""; }; - A5AAFF60237F13BE009CD413 /* FileSystemVolumeLabelInfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FileSystemVolumeLabelInfo.h; sourceTree = ""; }; - A5AAFF61237F13BE009CD413 /* FirmwareFileSystem2.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FirmwareFileSystem2.h; sourceTree = ""; }; - A5AAFF62237F13BE009CD413 /* StatusCodeDataTypeId.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = StatusCodeDataTypeId.h; sourceTree = ""; }; - A5AAFF63237F13BE009CD413 /* DebugImageInfoTable.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DebugImageInfoTable.h; sourceTree = ""; }; - A5AAFF64237F13BE009CD413 /* HiiKeyBoardLayout.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HiiKeyBoardLayout.h; sourceTree = ""; }; - A5AAFF65237F13BE009CD413 /* WinCertificate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WinCertificate.h; sourceTree = ""; }; - A5AAFF66237F13BE009CD413 /* SmBios.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SmBios.h; sourceTree = ""; }; - A5AAFF67237F13BE009CD413 /* ImageAuthentication.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ImageAuthentication.h; sourceTree = ""; }; - A5AAFF68237F13BE009CD413 /* VectorHandoffTable.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = VectorHandoffTable.h; sourceTree = ""; }; - A5AAFF69237F13BE009CD413 /* FileSystemInfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FileSystemInfo.h; sourceTree = ""; }; - A5AAFF6A237F13BE009CD413 /* HardwareErrorVariable.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HardwareErrorVariable.h; sourceTree = ""; }; - A5AAFF6B237F13BE009CD413 /* Mps.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Mps.h; sourceTree = ""; }; - A5AAFF6C237F13BE009CD413 /* PcAnsi.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PcAnsi.h; sourceTree = ""; }; - A5AAFF6D237F13BE009CD413 /* GlobalVariable.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GlobalVariable.h; sourceTree = ""; }; - A5AAFF6E237F13BE009CD413 /* HiiPlatformSetupFormset.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HiiPlatformSetupFormset.h; sourceTree = ""; }; - A5AAFF6F237F13BE009CD413 /* CapsuleReport.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CapsuleReport.h; sourceTree = ""; }; - A5AAFF73237F13BE009CD413 /* PeiCoreFvLocation.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PeiCoreFvLocation.h; sourceTree = ""; }; - A5AAFF74237F13BE009CD413 /* SecHobData.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SecHobData.h; sourceTree = ""; }; - A5AAFF75237F13BE009CD413 /* VectorHandoffInfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = VectorHandoffInfo.h; sourceTree = ""; }; - A5AAFF76237F13BE009CD413 /* ReadOnlyVariable2.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ReadOnlyVariable2.h; sourceTree = ""; }; - A5AAFF77237F13BE009CD413 /* ReportStatusCodeHandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ReportStatusCodeHandler.h; sourceTree = ""; }; - A5AAFF78237F13BE009CD413 /* S3Resume2.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = S3Resume2.h; sourceTree = ""; }; - A5AAFF79237F13BE009CD413 /* MmControl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MmControl.h; sourceTree = ""; }; - A5AAFF7A237F13BE009CD413 /* Reset2.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Reset2.h; sourceTree = ""; }; - A5AAFF7B237F13BE009CD413 /* Security2.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Security2.h; sourceTree = ""; }; - A5AAFF7C237F13BE009CD413 /* MmAccess.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MmAccess.h; sourceTree = ""; }; - A5AAFF7D237F13BE009CD413 /* EndOfPeiPhase.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EndOfPeiPhase.h; sourceTree = ""; }; - A5AAFF7E237F13BE009CD413 /* Smbus2.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Smbus2.h; sourceTree = ""; }; - A5AAFF7F237F13BE009CD413 /* BootInRecoveryMode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BootInRecoveryMode.h; sourceTree = ""; }; - A5AAFF80237F13BE009CD413 /* IsaHc.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IsaHc.h; sourceTree = ""; }; - A5AAFF81237F13BE009CD413 /* DxeIpl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DxeIpl.h; sourceTree = ""; }; - A5AAFF82237F13BE009CD413 /* GuidedSectionExtraction.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GuidedSectionExtraction.h; sourceTree = ""; }; - A5AAFF83237F13BE009CD413 /* MemoryDiscovered.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MemoryDiscovered.h; sourceTree = ""; }; - A5AAFF84237F13BE009CD413 /* BlockIo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BlockIo.h; sourceTree = ""; }; - A5AAFF85237F13BE009CD413 /* Pcd.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Pcd.h; sourceTree = ""; }; - A5AAFF86237F13BE009CD413 /* LoadImage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LoadImage.h; sourceTree = ""; }; - A5AAFF87237F13BE009CD413 /* FirmwareVolumeInfo2.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FirmwareVolumeInfo2.h; sourceTree = ""; }; - A5AAFF88237F13BE009CD413 /* PiPcd.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PiPcd.h; sourceTree = ""; }; - A5AAFF89237F13BE009CD413 /* Stall.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Stall.h; sourceTree = ""; }; - A5AAFF8A237F13BE009CD413 /* PciCfg2.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PciCfg2.h; sourceTree = ""; }; - A5AAFF8B237F13BE009CD413 /* Decompress.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Decompress.h; sourceTree = ""; }; - A5AAFF8C237F13BE009CD413 /* PiPcdInfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PiPcdInfo.h; sourceTree = ""; }; - A5AAFF8D237F13BE009CD413 /* MasterBootMode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MasterBootMode.h; sourceTree = ""; }; - A5AAFF8E237F13BE009CD413 /* Capsule.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Capsule.h; sourceTree = ""; }; - A5AAFF8F237F13BE009CD413 /* SuperIo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SuperIo.h; sourceTree = ""; }; - A5AAFF90237F13BE009CD413 /* BlockIo2.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BlockIo2.h; sourceTree = ""; }; - A5AAFF91237F13BE009CD413 /* FirmwareVolumeInfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FirmwareVolumeInfo.h; sourceTree = ""; }; - A5AAFF92237F13BE009CD413 /* I2cMaster.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = I2cMaster.h; sourceTree = ""; }; - A5AAFF93237F13BE009CD413 /* RecoveryModule.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RecoveryModule.h; sourceTree = ""; }; - A5AAFF94237F13BE009CD413 /* SecPlatformInformation2.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SecPlatformInformation2.h; sourceTree = ""; }; - A5AAFF95237F13BE009CD413 /* Graphics.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Graphics.h; sourceTree = ""; }; - A5AAFF96237F13BE009CD413 /* MpServices.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MpServices.h; sourceTree = ""; }; - A5AAFF97237F13BE009CD413 /* TemporaryRamSupport.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TemporaryRamSupport.h; sourceTree = ""; }; - A5AAFF98237F13BE009CD413 /* TemporaryRamDone.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TemporaryRamDone.h; sourceTree = ""; }; - A5AAFF99237F13BE009CD413 /* DeviceRecoveryModule.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DeviceRecoveryModule.h; sourceTree = ""; }; - A5AAFF9A237F13BE009CD413 /* LoadFile.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LoadFile.h; sourceTree = ""; }; - A5AAFF9B237F13BE009CD413 /* PcdInfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PcdInfo.h; sourceTree = ""; }; - A5AAFF9C237F13BE009CD413 /* Reset.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Reset.h; sourceTree = ""; }; - A5AAFF9D237F13BE009CD413 /* StatusCode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = StatusCode.h; sourceTree = ""; }; - A5AAFF9E237F13BE009CD413 /* SecPlatformInformation.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SecPlatformInformation.h; sourceTree = ""; }; - A5AAFF9F237F13BE009CD413 /* CpuIo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CpuIo.h; sourceTree = ""; }; - A5AAFFA0237F13BE009CD413 /* FirmwareVolume.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FirmwareVolume.h; sourceTree = ""; }; - A5AAFFA3237F13BE009CD413 /* Base.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Base.h; sourceTree = ""; }; - A5AAFFA6237F13BE009CD413 /* PeiServicesTablePointerLibIdt.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = PeiServicesTablePointerLibIdt.uni; sourceTree = ""; }; - A5AAFFA7237F13BE009CD413 /* PeiServicesTablePointerLibIdt.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = PeiServicesTablePointerLibIdt.inf; sourceTree = ""; }; - A5AAFFA8237F13BE009CD413 /* PeiServicesTablePointer.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = PeiServicesTablePointer.c; sourceTree = ""; }; - A5AAFFAA237F13BE009CD413 /* StandaloneMmServicesTableLib.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = StandaloneMmServicesTableLib.c; sourceTree = ""; }; - A5AAFFAB237F13BE009CD413 /* StandaloneMmServicesTableLib.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = StandaloneMmServicesTableLib.inf; sourceTree = ""; }; - A5AAFFAC237F13BE009CD413 /* StandaloneMmServicesTableLib.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = StandaloneMmServicesTableLib.uni; sourceTree = ""; }; - A5AAFFAE237F13BE009CD413 /* PeiPciLibPciCfg2.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = PeiPciLibPciCfg2.uni; sourceTree = ""; }; - A5AAFFAF237F13BE009CD413 /* PeiPciLibPciCfg2.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = PeiPciLibPciCfg2.inf; sourceTree = ""; }; - A5AAFFB0237F13BE009CD413 /* PciLib.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = PciLib.c; sourceTree = ""; }; - A5AAFFB2237F13BE009CD413 /* SmbusLib.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SmbusLib.c; sourceTree = ""; }; - A5AAFFB3237F13BE009CD413 /* InternalSmbusLib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = InternalSmbusLib.h; sourceTree = ""; }; - A5AAFFB4237F13BE009CD413 /* PeiSmbusLib.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = PeiSmbusLib.c; sourceTree = ""; }; - A5AAFFB5237F13BE009CD413 /* PeiSmbusLibSmbus2Ppi.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = PeiSmbusLibSmbus2Ppi.inf; sourceTree = ""; }; - A5AAFFB6237F13BE009CD413 /* PeiSmbusLibSmbus2Ppi.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = PeiSmbusLibSmbus2Ppi.uni; sourceTree = ""; }; - A5AAFFB8237F13BE009CD413 /* BaseDebugPrintErrorLevelLib.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = BaseDebugPrintErrorLevelLib.c; sourceTree = ""; }; - A5AAFFB9237F13BE009CD413 /* BaseDebugPrintErrorLevelLib.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = BaseDebugPrintErrorLevelLib.inf; sourceTree = ""; }; - A5AAFFBA237F13BE009CD413 /* BaseDebugPrintErrorLevelLib.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = BaseDebugPrintErrorLevelLib.uni; sourceTree = ""; }; - A5AAFFBC237F13BE009CD413 /* BaseCacheMaintenanceLib.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = BaseCacheMaintenanceLib.inf; sourceTree = ""; }; - A5AAFFBD237F13BE009CD413 /* BaseCacheMaintenanceLib.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = BaseCacheMaintenanceLib.uni; sourceTree = ""; }; - A5AAFFBE237F13BE009CD413 /* X86Cache.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = X86Cache.c; sourceTree = ""; }; - A5AAFFBF237F13BE009CD413 /* ArmCache.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ArmCache.c; sourceTree = ""; }; - A5AAFFC0237F13BE009CD413 /* EbcCache.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = EbcCache.c; sourceTree = ""; }; - A5AAFFC2237F13BE009CD413 /* IoLibMmioBuffer.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = IoLibMmioBuffer.c; sourceTree = ""; }; - A5AAFFC3237F13BE009CD413 /* IoLib.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = IoLib.c; sourceTree = ""; }; - A5AAFFC4237F13BE009CD413 /* IoHighLevel.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = IoHighLevel.c; sourceTree = ""; }; - A5AAFFC5237F13BE009CD413 /* DxeIoLibCpuIo2.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = DxeIoLibCpuIo2.uni; sourceTree = ""; }; - A5AAFFC6237F13BE009CD413 /* DxeCpuIo2LibInternal.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DxeCpuIo2LibInternal.h; sourceTree = ""; }; - A5AAFFC7237F13BE009CD413 /* DxeIoLibCpuIo2.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = DxeIoLibCpuIo2.inf; sourceTree = ""; }; - A5AAFFC9237F13BE009CD413 /* BasePciLibCf8.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = BasePciLibCf8.inf; sourceTree = ""; }; - A5AAFFCA237F13BE009CD413 /* BasePciLibCf8.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = BasePciLibCf8.uni; sourceTree = ""; }; - A5AAFFCB237F13BE009CD413 /* PciLib.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = PciLib.c; sourceTree = ""; }; - A5AAFFCD237F13BE009CD413 /* PeiServicesTablePointerLib.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = PeiServicesTablePointerLib.uni; sourceTree = ""; }; - A5AAFFCE237F13BE009CD413 /* PeiServicesTablePointerLib.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = PeiServicesTablePointerLib.inf; sourceTree = ""; }; - A5AAFFCF237F13BE009CD413 /* PeiServicesTablePointer.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = PeiServicesTablePointer.c; sourceTree = ""; }; - A5AAFFD1237F13BE009CD413 /* BaseDebugLibNull.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = BaseDebugLibNull.inf; sourceTree = ""; }; - A5AAFFD2237F13BE009CD413 /* BaseDebugLibNull.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = BaseDebugLibNull.uni; sourceTree = ""; }; - A5AAFFD3237F13BE009CD413 /* DebugLib.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = DebugLib.c; sourceTree = ""; }; - A5AAFFD5237F13BE009CD413 /* PciSegmentLib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PciSegmentLib.h; sourceTree = ""; }; - A5AAFFD6237F13BE009CD413 /* UefiPciSegmentLibPciRootBridgeIo.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = UefiPciSegmentLibPciRootBridgeIo.inf; sourceTree = ""; }; - A5AAFFD7237F13BE009CD413 /* UefiPciSegmentLibPciRootBridgeIo.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = UefiPciSegmentLibPciRootBridgeIo.uni; sourceTree = ""; }; - A5AAFFD8237F13BE009CD413 /* PciSegmentLib.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = PciSegmentLib.c; sourceTree = ""; }; - A5AAFFDA237F13BE009CD413 /* PeiServicesLib.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = PeiServicesLib.inf; sourceTree = ""; }; - A5AAFFDB237F13BE009CD413 /* PeiServicesLib.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = PeiServicesLib.c; sourceTree = ""; }; - A5AAFFDC237F13BE009CD413 /* PeiServicesLib.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = PeiServicesLib.uni; sourceTree = ""; }; - A5AAFFDE237F13BE009CD413 /* BasePciExpressLib.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = BasePciExpressLib.uni; sourceTree = ""; }; - A5AAFFDF237F13BE009CD413 /* BasePciExpressLib.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = BasePciExpressLib.inf; sourceTree = ""; }; - A5AAFFE0237F13BE009CD413 /* PciExpressLib.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = PciExpressLib.c; sourceTree = ""; }; - A5AAFFE2237F13BE009CD413 /* BaseS3SmbusLib.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = BaseS3SmbusLib.inf; sourceTree = ""; }; - A5AAFFE3237F13BE009CD413 /* BaseS3SmbusLib.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = BaseS3SmbusLib.uni; sourceTree = ""; }; - A5AAFFE4237F13BE009CD413 /* S3SmbusLib.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = S3SmbusLib.c; sourceTree = ""; }; - A5AAFFE6237F13BE009CD413 /* Allocate.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = Allocate.c; sourceTree = ""; }; - A5AAFFE7237F13BE009CD413 /* DxeServicesLib.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = DxeServicesLib.c; sourceTree = ""; }; - A5AAFFE9237F13BE009CD413 /* Allocate.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = Allocate.c; sourceTree = ""; }; - A5AAFFEA237F13BE009CD413 /* DxeServicesLib.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = DxeServicesLib.uni; sourceTree = ""; }; - A5AAFFEB237F13BE009CD413 /* DxeServicesLib.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = DxeServicesLib.inf; sourceTree = ""; }; - A5AAFFED237F13BE009CD413 /* X86TimerLib.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = X86TimerLib.c; sourceTree = ""; }; - A5AAFFEE237F13BE009CD413 /* SecPeiDxeTimerLibCpu.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = SecPeiDxeTimerLibCpu.inf; sourceTree = ""; }; - A5AAFFEF237F13BE009CD413 /* SecPeiDxeTimerLibCpu.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = SecPeiDxeTimerLibCpu.uni; sourceTree = ""; }; - A5AAFFF1237F13BE009CD413 /* StandaloneMmDriverEntryPoint.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = StandaloneMmDriverEntryPoint.inf; sourceTree = ""; }; - A5AAFFF2237F13BE009CD413 /* StandaloneMmDriverEntryPoint.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = StandaloneMmDriverEntryPoint.uni; sourceTree = ""; }; - A5AAFFF3237F13BE009CD413 /* StandaloneMmDriverEntryPoint.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = StandaloneMmDriverEntryPoint.c; sourceTree = ""; }; - A5AAFFF5237F13BE009CD413 /* SmmPciLibPciRootBridgeIo.uni */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = SmmPciLibPciRootBridgeIo.uni; sourceTree = ""; }; - A5AAFFF6237F13BE009CD413 /* SmmPciLibPciRootBridgeIo.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = SmmPciLibPciRootBridgeIo.inf; sourceTree = ""; }; - A5AAFFF7237F13BE009CD413 /* PciLib.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = PciLib.c; sourceTree = ""; }; - A5AAFFF9237F13BE009CD413 /* SwapBytes32.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SwapBytes32.c; sourceTree = ""; }; - A5AAFFFA237F13BE009CD413 /* X86ReadIdtr.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = X86ReadIdtr.c; sourceTree = ""; }; - A5AAFFFC237F13BE009CD413 /* CpuBreakpoint.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = CpuBreakpoint.c; sourceTree = ""; }; - A5AAFFFD237F13BE009CD413 /* SwitchStack.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SwitchStack.c; sourceTree = ""; }; - A5AAFFFE237F13BE009CD413 /* SetJumpLongJump.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SetJumpLongJump.c; sourceTree = ""; }; - A5AAFFFF237F13BE009CD413 /* SpeculationBarrier.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SpeculationBarrier.c; sourceTree = ""; }; A5C219B5243ED7AA00036F7B /* XCinema.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = XCinema.cpp; sourceTree = ""; }; A5C219B8243ED7EA00036F7B /* XCinema.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XCinema.h; sourceTree = ""; }; A5C3244824B4EA26004E20CC /* OpenRuntimePrivate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = OpenRuntimePrivate.h; sourceTree = ""; }; @@ -8379,38 +7551,6 @@ A5C330A424B702AC004E20CC /* CpuId.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = CpuId.h; sourceTree = ""; }; A5C330A524B70353004E20CC /* AppleChunklist.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppleChunklist.h; sourceTree = ""; }; A5C330A824B704B5004E20CC /* AppleRtc.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppleRtc.h; sourceTree = ""; }; - A5C330AB24B70FB8004E20CC /* Microcode.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Microcode.h; sourceTree = ""; }; - A5C330AC24B70FB8004E20CC /* SmramSaveStateMap.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SmramSaveStateMap.h; sourceTree = ""; }; - A5C330AE24B70FB8004E20CC /* Pentium4Msr.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Pentium4Msr.h; sourceTree = ""; }; - A5C330AF24B70FB8004E20CC /* IvyBridgeMsr.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = IvyBridgeMsr.h; sourceTree = ""; }; - A5C330B024B70FB8004E20CC /* BroadwellMsr.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = BroadwellMsr.h; sourceTree = ""; }; - A5C330B124B70FB8004E20CC /* HaswellEMsr.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HaswellEMsr.h; sourceTree = ""; }; - A5C330B224B70FB8004E20CC /* XeonE7Msr.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = XeonE7Msr.h; sourceTree = ""; }; - A5C330B324B70FB8004E20CC /* Core2Msr.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Core2Msr.h; sourceTree = ""; }; - A5C330B424B70FB8004E20CC /* NehalemMsr.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = NehalemMsr.h; sourceTree = ""; }; - A5C330B524B70FB8004E20CC /* SandyBridgeMsr.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SandyBridgeMsr.h; sourceTree = ""; }; - A5C330B624B70FB8004E20CC /* P6Msr.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = P6Msr.h; sourceTree = ""; }; - A5C330B724B70FB8004E20CC /* PentiumMsr.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PentiumMsr.h; sourceTree = ""; }; - A5C330B824B70FB8004E20CC /* SilvermontMsr.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SilvermontMsr.h; sourceTree = ""; }; - A5C330B924B70FB8004E20CC /* Xeon5600Msr.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Xeon5600Msr.h; sourceTree = ""; }; - A5C330BA24B70FB8004E20CC /* SkylakeMsr.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SkylakeMsr.h; sourceTree = ""; }; - A5C330BB24B70FB8004E20CC /* CoreMsr.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = CoreMsr.h; sourceTree = ""; }; - A5C330BC24B70FB8004E20CC /* XeonDMsr.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = XeonDMsr.h; sourceTree = ""; }; - A5C330BD24B70FB8004E20CC /* XeonPhiMsr.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = XeonPhiMsr.h; sourceTree = ""; }; - A5C330BE24B70FB8004E20CC /* PentiumMMsr.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PentiumMMsr.h; sourceTree = ""; }; - A5C330BF24B70FB8004E20CC /* GoldmontMsr.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = GoldmontMsr.h; sourceTree = ""; }; - A5C330C024B70FB8004E20CC /* HaswellMsr.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HaswellMsr.h; sourceTree = ""; }; - A5C330C124B70FB8004E20CC /* AtomMsr.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AtomMsr.h; sourceTree = ""; }; - A5C330C224B70FB8004E20CC /* Cpuid.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Cpuid.h; sourceTree = ""; }; - A5C330C324B70FB8004E20CC /* StmStatusCode.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = StmStatusCode.h; sourceTree = ""; }; - A5C330C424B70FB8004E20CC /* StmResourceDescriptor.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = StmResourceDescriptor.h; sourceTree = ""; }; - A5C330C624B70FB8004E20CC /* Cpuid.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Cpuid.h; sourceTree = ""; }; - A5C330C724B70FB8004E20CC /* Fam17Msr.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Fam17Msr.h; sourceTree = ""; }; - A5C330C824B70FB8004E20CC /* Msr.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Msr.h; sourceTree = ""; }; - A5C330C924B70FB8004E20CC /* LocalApic.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = LocalApic.h; sourceTree = ""; }; - A5C330CA24B70FB8004E20CC /* StmApi.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = StmApi.h; sourceTree = ""; }; - A5C330CB24B70FB8004E20CC /* ArchitecturalMsr.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ArchitecturalMsr.h; sourceTree = ""; }; - A5C330CC24B70FB8004E20CC /* Msr.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Msr.h; sourceTree = ""; }; A5C330CF24B726B2004E20CC /* AppleDiskImage.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppleDiskImage.h; sourceTree = ""; }; A5C330D024B726ED004E20CC /* AppleIntelCpuInfo.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppleIntelCpuInfo.h; sourceTree = ""; }; A5C330D924B75A15004E20CC /* AppleDiskLabel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppleDiskLabel.h; sourceTree = ""; }; @@ -8919,7 +8059,6 @@ 12C86BB31DE4271D00BF4974 /* OsxPciBusNoEnumerationDxe */, 12C86BCB1DE4271D00BF4974 /* PcatRealTimeClockRuntimeDxe */, 12C86BD21DE4271D00BF4974 /* PciRootBridgeDxe */, - 12C86BDF1DE4271D00BF4974 /* UefiCpuPkg */, ); name = CloverEFI; path = ../../CloverEFI; @@ -9443,323 +8582,6 @@ path = X64; sourceTree = ""; }; - 12C86BDF1DE4271D00BF4974 /* UefiCpuPkg */ = { - isa = PBXGroup; - children = ( - 12C86BE01DE4271D00BF4974 /* build.sh */, - 12C86BE11DE4271D00BF4974 /* CpuDxe */, - 12C86BEE1DE4271D00BF4974 /* CpuIo2Dxe */, - 12C86BF21DE4271D00BF4974 /* CpuIo2Smm */, - 12C86BF61DE4271D00BF4974 /* CpuIoPei */, - 12C86BFA1DE4271D00BF4974 /* edk2.patch-idtgdt */, - 12C86BFB1DE4271D00BF4974 /* Include */, - 12C86C021DE4271D00BF4974 /* Library */, - 12C86C2F1DE4271D00BF4974 /* ResetVector */, - 12C86C4C1DE4271D00BF4974 /* UefiCpuPkg.dec */, - 12C86C4D1DE4271D00BF4974 /* UefiCpuPkg.dsc */, - 12C86C4E1DE4271D00BF4974 /* Universal */, - ); - path = UefiCpuPkg; - sourceTree = ""; - }; - 12C86BE11DE4271D00BF4974 /* CpuDxe */ = { - isa = PBXGroup; - children = ( - 12C86BE21DE4271D00BF4974 /* CpuDxe.c */, - 12C86BE31DE4271D00BF4974 /* CpuDxe.h */, - 12C86BE41DE4271D00BF4974 /* CpuDxe.inf */, - 12C86BE51DE4271D00BF4974 /* CpuGdt.c */, - 12C86BE61DE4271D00BF4974 /* Ia32 */, - 12C86BEB1DE4271D00BF4974 /* X64 */, - ); - path = CpuDxe; - sourceTree = ""; - }; - 12C86BE61DE4271D00BF4974 /* Ia32 */ = { - isa = PBXGroup; - children = ( - 12C86BE71DE4271D00BF4974 /* CpuAsm.asm */, - 12C86BE81DE4271D00BF4974 /* CpuAsm.S */, - 12C86BE91DE4271D00BF4974 /* IvtAsm.asm */, - 12C86BEA1DE4271D00BF4974 /* IvtAsm.S */, - ); - path = Ia32; - sourceTree = ""; - }; - 12C86BEB1DE4271D00BF4974 /* X64 */ = { - isa = PBXGroup; - children = ( - 12C86BEC1DE4271D00BF4974 /* CpuAsm.asm */, - 12C86BED1DE4271D00BF4974 /* CpuAsm.S */, - ); - path = X64; - sourceTree = ""; - }; - 12C86BEE1DE4271D00BF4974 /* CpuIo2Dxe */ = { - isa = PBXGroup; - children = ( - 12C86BEF1DE4271D00BF4974 /* CpuIo2Dxe.c */, - 12C86BF01DE4271D00BF4974 /* CpuIo2Dxe.h */, - 12C86BF11DE4271D00BF4974 /* CpuIo2Dxe.inf */, - ); - path = CpuIo2Dxe; - sourceTree = ""; - }; - 12C86BF21DE4271D00BF4974 /* CpuIo2Smm */ = { - isa = PBXGroup; - children = ( - 12C86BF31DE4271D00BF4974 /* CpuIo2Smm.c */, - 12C86BF41DE4271D00BF4974 /* CpuIo2Smm.h */, - 12C86BF51DE4271D00BF4974 /* CpuIo2Smm.inf */, - ); - path = CpuIo2Smm; - sourceTree = ""; - }; - 12C86BF61DE4271D00BF4974 /* CpuIoPei */ = { - isa = PBXGroup; - children = ( - 12C86BF71DE4271D00BF4974 /* CpuIoPei.c */, - 12C86BF81DE4271D00BF4974 /* CpuIoPei.h */, - 12C86BF91DE4271D00BF4974 /* CpuIoPei.inf */, - ); - path = CpuIoPei; - sourceTree = ""; - }; - 12C86BFB1DE4271D00BF4974 /* Include */ = { - isa = PBXGroup; - children = ( - A5C330AA24B70FB8004E20CC /* Register */, - 12C86BFC1DE4271D00BF4974 /* Library */, - ); - path = Include; - sourceTree = ""; - }; - 12C86BFC1DE4271D00BF4974 /* Library */ = { - isa = PBXGroup; - children = ( - 12C86BFD1DE4271D00BF4974 /* LocalApicLib.h */, - 12C86BFE1DE4271D00BF4974 /* MtrrLib.h */, - 12C86BFF1DE4271D00BF4974 /* UefiCpuLib.h */, - ); - path = Library; - sourceTree = ""; - }; - 12C86C021DE4271D00BF4974 /* Library */ = { - isa = PBXGroup; - children = ( - 12C86C031DE4271D00BF4974 /* BaseUefiCpuLib */, - 12C86C0B1DE4271D00BF4974 /* BaseXApicLib */, - 12C86C0E1DE4271D00BF4974 /* BaseXApicX2ApicLib */, - 12C86C111DE4271D00BF4974 /* CpuExceptionHandlerLib */, - 12C86C281DE4271D00BF4974 /* MtrrLib */, - 12C86C2B1DE4271D00BF4974 /* SecPeiDxeTimerLibUefiCpu */, - ); - path = Library; - sourceTree = ""; - }; - 12C86C031DE4271D00BF4974 /* BaseUefiCpuLib */ = { - isa = PBXGroup; - children = ( - 12C86C041DE4271D00BF4974 /* BaseUefiCpuLib.inf */, - 12C86C051DE4271D00BF4974 /* Ia32 */, - 12C86C081DE4271D00BF4974 /* X64 */, - ); - path = BaseUefiCpuLib; - sourceTree = ""; - }; - 12C86C051DE4271D00BF4974 /* Ia32 */ = { - isa = PBXGroup; - children = ( - 12C86C061DE4271D00BF4974 /* InitializeFpu.asm */, - 12C86C071DE4271D00BF4974 /* InitializeFpu.S */, - ); - path = Ia32; - sourceTree = ""; - }; - 12C86C081DE4271D00BF4974 /* X64 */ = { - isa = PBXGroup; - children = ( - 12C86C091DE4271D00BF4974 /* InitializeFpu.asm */, - 12C86C0A1DE4271D00BF4974 /* InitializeFpu.S */, - ); - path = X64; - sourceTree = ""; - }; - 12C86C0B1DE4271D00BF4974 /* BaseXApicLib */ = { - isa = PBXGroup; - children = ( - 12C86C0C1DE4271D00BF4974 /* BaseXApicLib.c */, - 12C86C0D1DE4271D00BF4974 /* BaseXApicLib.inf */, - ); - path = BaseXApicLib; - sourceTree = ""; - }; - 12C86C0E1DE4271D00BF4974 /* BaseXApicX2ApicLib */ = { - isa = PBXGroup; - children = ( - 12C86C0F1DE4271D00BF4974 /* BaseXApicX2ApicLib.c */, - 12C86C101DE4271D00BF4974 /* BaseXApicX2ApicLib.inf */, - ); - path = BaseXApicX2ApicLib; - sourceTree = ""; - }; - 12C86C111DE4271D00BF4974 /* CpuExceptionHandlerLib */ = { - isa = PBXGroup; - children = ( - 12C86C121DE4271D00BF4974 /* CpuExceptionCommon.c */, - 12C86C131DE4271D00BF4974 /* CpuExceptionCommon.h */, - 12C86C141DE4271D00BF4974 /* DxeCpuExceptionHandlerLib.inf */, - 12C86C151DE4271D00BF4974 /* DxeCpuExceptionHandlerLib.uni */, - 12C86C161DE4271D00BF4974 /* DxeException.c */, - 12C86C171DE4271D00BF4974 /* DxeSmmCpuException.c */, - 12C86C181DE4271D00BF4974 /* Ia32 */, - 12C86C1D1DE4271D00BF4974 /* SecPeiCpuException.c */, - 12C86C1E1DE4271D00BF4974 /* SecPeiCpuExceptionHandlerLib.inf */, - 12C86C1F1DE4271D00BF4974 /* SecPeiCpuExceptionHandlerLib.uni */, - 12C86C201DE4271D00BF4974 /* SmmCpuExceptionHandlerLib.inf */, - 12C86C211DE4271D00BF4974 /* SmmCpuExceptionHandlerLib.uni */, - 12C86C221DE4271D00BF4974 /* SmmException.c */, - 12C86C231DE4271D00BF4974 /* X64 */, - ); - path = CpuExceptionHandlerLib; - sourceTree = ""; - }; - 12C86C181DE4271D00BF4974 /* Ia32 */ = { - isa = PBXGroup; - children = ( - 12C86C191DE4271D00BF4974 /* ArchExceptionHandler.c */, - 12C86C1A1DE4271D00BF4974 /* ArchInterruptDefs.h */, - 12C86C1B1DE4271D00BF4974 /* ExceptionHandlerAsm.asm */, - 12C86C1C1DE4271D00BF4974 /* ExceptionHandlerAsm.S */, - ); - path = Ia32; - sourceTree = ""; - }; - 12C86C231DE4271D00BF4974 /* X64 */ = { - isa = PBXGroup; - children = ( - 12C86C241DE4271D00BF4974 /* ArchExceptionHandler.c */, - 12C86C251DE4271D00BF4974 /* ArchInterruptDefs.h */, - 12C86C261DE4271D00BF4974 /* ExceptionHandlerAsm.asm */, - 12C86C271DE4271D00BF4974 /* ExceptionHandlerAsm.S */, - ); - path = X64; - sourceTree = ""; - }; - 12C86C281DE4271D00BF4974 /* MtrrLib */ = { - isa = PBXGroup; - children = ( - 12C86C291DE4271D00BF4974 /* MtrrLib.c */, - 12C86C2A1DE4271D00BF4974 /* MtrrLib.inf */, - ); - path = MtrrLib; - sourceTree = ""; - }; - 12C86C2B1DE4271D00BF4974 /* SecPeiDxeTimerLibUefiCpu */ = { - isa = PBXGroup; - children = ( - 12C86C2C1DE4271D00BF4974 /* IpfTimerLib.c */, - 12C86C2D1DE4271D00BF4974 /* SecPeiDxeTimerLibUefiCpu.inf */, - 12C86C2E1DE4271D00BF4974 /* X86TimerLib.c */, - ); - path = SecPeiDxeTimerLibUefiCpu; - sourceTree = ""; - }; - 12C86C2F1DE4271D00BF4974 /* ResetVector */ = { - isa = PBXGroup; - children = ( - 12C86C301DE4271D00BF4974 /* Vtf0 */, - ); - path = ResetVector; - sourceTree = ""; - }; - 12C86C301DE4271D00BF4974 /* Vtf0 */ = { - isa = PBXGroup; - children = ( - 12C86C311DE4271D00BF4974 /* Bin */, - 12C86C391DE4271D00BF4974 /* Build.py */, - 12C86C3A1DE4271D00BF4974 /* CommonMacros.inc */, - 12C86C3B1DE4271D00BF4974 /* DebugDisabled.asm */, - 12C86C3C1DE4271D00BF4974 /* Ia16 */, - 12C86C401DE4271D00BF4974 /* Ia32 */, - 12C86C441DE4271D00BF4974 /* Main.asm */, - 12C86C451DE4271D00BF4974 /* Port80Debug.asm */, - 12C86C461DE4271D00BF4974 /* PostCodes.inc */, - 12C86C471DE4271D00BF4974 /* ReadMe.txt */, - 12C86C481DE4271D00BF4974 /* ResetVectorCode.asm */, - 12C86C491DE4271D00BF4974 /* SerialDebug.asm */, - 12C86C4A1DE4271D00BF4974 /* Tools */, - ); - path = Vtf0; - sourceTree = ""; - }; - 12C86C311DE4271D00BF4974 /* Bin */ = { - isa = PBXGroup; - children = ( - 12C86C321DE4271D00BF4974 /* ResetVector.ia32.port80.raw */, - 12C86C331DE4271D00BF4974 /* ResetVector.ia32.raw */, - 12C86C341DE4271D00BF4974 /* ResetVector.ia32.serial.raw */, - 12C86C351DE4271D00BF4974 /* ResetVector.inf */, - 12C86C361DE4271D00BF4974 /* ResetVector.x64.port80.raw */, - 12C86C371DE4271D00BF4974 /* ResetVector.x64.raw */, - 12C86C381DE4271D00BF4974 /* ResetVector.x64.serial.raw */, - ); - path = Bin; - sourceTree = ""; - }; - 12C86C3C1DE4271D00BF4974 /* Ia16 */ = { - isa = PBXGroup; - children = ( - 12C86C3D1DE4271D00BF4974 /* Init16.asm */, - 12C86C3E1DE4271D00BF4974 /* Real16ToFlat32.asm */, - 12C86C3F1DE4271D00BF4974 /* ResetVectorVtf0.asm */, - ); - path = Ia16; - sourceTree = ""; - }; - 12C86C401DE4271D00BF4974 /* Ia32 */ = { - isa = PBXGroup; - children = ( - 12C86C411DE4271D00BF4974 /* Flat32ToFlat64.asm */, - 12C86C421DE4271D00BF4974 /* SearchForBfvBase.asm */, - 12C86C431DE4271D00BF4974 /* SearchForSecEntry.asm */, - ); - path = Ia32; - sourceTree = ""; - }; - 12C86C4A1DE4271D00BF4974 /* Tools */ = { - isa = PBXGroup; - children = ( - 12C86C4B1DE4271D00BF4974 /* FixupForRawSection.py */, - ); - path = Tools; - sourceTree = ""; - }; - 12C86C4E1DE4271D00BF4974 /* Universal */ = { - isa = PBXGroup; - children = ( - 12C86C4F1DE4271D00BF4974 /* Acpi */, - ); - path = Universal; - sourceTree = ""; - }; - 12C86C4F1DE4271D00BF4974 /* Acpi */ = { - isa = PBXGroup; - children = ( - 12C86C501DE4271D00BF4974 /* S3Resume2Pei */, - ); - path = Acpi; - sourceTree = ""; - }; - 12C86C501DE4271D00BF4974 /* S3Resume2Pei */ = { - isa = PBXGroup; - children = ( - 12C86C511DE4271D00BF4974 /* S3Resume.c */, - 12C86C521DE4271D00BF4974 /* S3Resume2Pei.inf */, - ); - path = S3Resume2Pei; - sourceTree = ""; - }; 12C86C531DE4272F00BF4974 /* Drivers */ = { isa = PBXGroup; children = ( @@ -10479,11 +9301,13 @@ A571B3282320523B003BC0AA /* FromEDK2 */ = { isa = PBXGroup; children = ( - A5AA0777237F13CD009CD413 /* PcAtChipsetPkg */, - A5AAFD72237F13BC009CD413 /* MdePkg */, - A5AAF375237F13B0009CD413 /* MdeModulePkg */, - A5AAF332237F13A5009CD413 /* IntelFrameworkPkg */, - A5AAF290237F1321009CD413 /* IntelFrameworkModulePkg */, + A58154352538173A00CF4451 /* UefiCpuPkg */, + A58153E62538173200CF4451 /* PcAtChipsetPkg */, + A581522F2538172600CF4451 /* NetworkPkg */, + A5814B5E2538171000CF4451 /* MdePkg */, + A58143C12538170700CF4451 /* MdeModulePkg */, + A581437E253816EC00CF4451 /* IntelFrameworkPkg */, + A5814362253816D700CF4451 /* IntelFrameworkModulePkg */, ); path = FromEDK2; sourceTree = ""; @@ -10568,6 +9392,8610 @@ path = Posix; sourceTree = ""; }; + A5814362253816D700CF4451 /* IntelFrameworkModulePkg */ = { + isa = PBXGroup; + children = ( + A5814363253816D700CF4451 /* Include */, + A581437A253816D700CF4451 /* IntelFrameworkModulePkgExtra.uni */, + A581437B253816D700CF4451 /* IntelFrameworkModulePkg.dsc */, + A581437C253816D700CF4451 /* IntelFrameworkModulePkg.uni */, + A581437D253816D700CF4451 /* IntelFrameworkModulePkg.dec */, + ); + name = IntelFrameworkModulePkg; + path = ../../../IntelFrameworkModulePkg; + sourceTree = ""; + }; + A5814363253816D700CF4451 /* Include */ = { + isa = PBXGroup; + children = ( + A5814364253816D700CF4451 /* Library */, + A5814367253816D700CF4451 /* Protocol */, + A581436D253816D700CF4451 /* Guid */, + ); + path = Include; + sourceTree = ""; + }; + A5814364253816D700CF4451 /* Library */ = { + isa = PBXGroup; + children = ( + A5814365253816D700CF4451 /* PlatformBdsLib.h */, + A5814366253816D700CF4451 /* GenericBdsLib.h */, + ); + path = Library; + sourceTree = ""; + }; + A5814367253816D700CF4451 /* Protocol */ = { + isa = PBXGroup; + children = ( + A5814368253816D700CF4451 /* ExitPmAuth.h */, + A5814369253816D700CF4451 /* IsaAcpi.h */, + A581436A253816D700CF4451 /* OEMBadging.h */, + A581436B253816D700CF4451 /* VgaMiniPort.h */, + A581436C253816D700CF4451 /* IsaIo.h */, + ); + path = Protocol; + sourceTree = ""; + }; + A581436D253816D700CF4451 /* Guid */ = { + isa = PBXGroup; + children = ( + A581436E253816D700CF4451 /* LegacyBios.h */, + A581436F253816D700CF4451 /* IntelFrameworkModulePkgTokenSpace.h */, + A5814370253816D700CF4451 /* BlockIoVendor.h */, + A5814371253816D700CF4451 /* HdBootVariable.h */, + A5814372253816D700CF4451 /* BdsLibHii.h */, + A5814373253816D700CF4451 /* BdsHii.h */, + A5814374253816D700CF4451 /* TianoDecompress.h */, + A5814375253816D700CF4451 /* DataHubStatusCodeRecord.h */, + A5814376253816D700CF4451 /* AcpiVariableCompatibility.h */, + A5814377253816D700CF4451 /* LegacyDevOrder.h */, + A5814378253816D700CF4451 /* LastEnumLang.h */, + A5814379253816D700CF4451 /* CapsuleDataFile.h */, + ); + path = Guid; + sourceTree = ""; + }; + A581437E253816EC00CF4451 /* IntelFrameworkPkg */ = { + isa = PBXGroup; + children = ( + A581437F253816EC00CF4451 /* IntelFrameworkPkgExtra.uni */, + A5814380253816EC00CF4451 /* Include */, + A58143BE253816EC00CF4451 /* IntelFrameworkPkg.dsc */, + A58143BF253816EC00CF4451 /* IntelFrameworkPkg.uni */, + A58143C0253816EC00CF4451 /* IntelFrameworkPkg.dec */, + ); + path = IntelFrameworkPkg; + sourceTree = ""; + }; + A5814380253816EC00CF4451 /* Include */ = { + isa = PBXGroup; + children = ( + A5814381253816EC00CF4451 /* FrameworkSmm.h */, + A5814382253816EC00CF4451 /* FrameworkDxe.h */, + A5814383253816EC00CF4451 /* Framework */, + A581438D253816EC00CF4451 /* Protocol */, + A58143AC253816EC00CF4451 /* FrameworkPei.h */, + A58143AD253816EC00CF4451 /* Guid */, + A58143B4253816EC00CF4451 /* Ppi */, + ); + path = Include; + sourceTree = ""; + }; + A5814383253816EC00CF4451 /* Framework */ = { + isa = PBXGroup; + children = ( + A5814384253816EC00CF4451 /* BootScript.h */, + A5814385253816EC00CF4451 /* FirmwareVolumeImageFormat.h */, + A5814386253816EC00CF4451 /* SmmCis.h */, + A5814387253816EC00CF4451 /* FrameworkInternalFormRepresentation.h */, + A5814388253816EC00CF4451 /* Hob.h */, + A5814389253816EC00CF4451 /* PeiCis.h */, + A581438A253816EC00CF4451 /* FirmwareVolumeHeader.h */, + A581438B253816EC00CF4451 /* StatusCode.h */, + A581438C253816EC00CF4451 /* DxeCis.h */, + ); + path = Framework; + sourceTree = ""; + }; + A581438D253816EC00CF4451 /* Protocol */ = { + isa = PBXGroup; + children = ( + A581438E253816EC00CF4451 /* SmmBase.h */, + A581438F253816EC00CF4451 /* SmmUsbDispatch.h */, + A5814390253816EC00CF4451 /* SmmIchnDispatch.h */, + A5814391253816EC00CF4451 /* LegacyInterrupt.h */, + A5814392253816EC00CF4451 /* LegacyBios.h */, + A5814393253816EC00CF4451 /* SmmSxDispatch.h */, + A5814394253816EC00CF4451 /* SmmGpiDispatch.h */, + A5814395253816EC00CF4451 /* AcpiS3Save.h */, + A5814396253816EC00CF4451 /* FrameworkMpService.h */, + A5814397253816EC00CF4451 /* FrameworkFirmwareVolumeBlock.h */, + A5814398253816EC00CF4451 /* SmmPowerButtonDispatch.h */, + A5814399253816EC00CF4451 /* FrameworkFormCallback.h */, + A581439A253816EC00CF4451 /* SmmControl.h */, + A581439B253816EC00CF4451 /* SmmCpuSaveState.h */, + A581439C253816EC00CF4451 /* SmmStandbyButtonDispatch.h */, + A581439D253816EC00CF4451 /* SectionExtraction.h */, + A581439E253816EC00CF4451 /* LegacyBiosPlatform.h */, + A581439F253816EC00CF4451 /* FrameworkFormBrowser.h */, + A58143A0253816EC00CF4451 /* SmmAccess.h */, + A58143A1253816EC00CF4451 /* LegacyRegion.h */, + A58143A2253816EC00CF4451 /* BootScriptSave.h */, + A58143A3253816EC00CF4451 /* DataHub.h */, + A58143A4253816EC00CF4451 /* SmmSwDispatch.h */, + A58143A5253816EC00CF4451 /* SmmPeriodicTimerDispatch.h */, + A58143A6253816EC00CF4451 /* Legacy8259.h */, + A58143A7253816EC00CF4451 /* AcpiSupport.h */, + A58143A8253816EC00CF4451 /* SmmCpuIo.h */, + A58143A9253816EC00CF4451 /* CpuIo.h */, + A58143AA253816EC00CF4451 /* FirmwareVolume.h */, + A58143AB253816EC00CF4451 /* FrameworkHii.h */, + ); + path = Protocol; + sourceTree = ""; + }; + A58143AD253816EC00CF4451 /* Guid */ = { + isa = PBXGroup; + children = ( + A58143AE253816EC00CF4451 /* SmramMemoryReserve.h */, + A58143AF253816EC00CF4451 /* DataHubRecords.h */, + A58143B0253816EC00CF4451 /* SmmCommunicate.h */, + A58143B1253816EC00CF4451 /* BlockIo.h */, + A58143B2253816EC00CF4451 /* Capsule.h */, + A58143B3253816EC00CF4451 /* FirmwareFileSystem.h */, + ); + path = Guid; + sourceTree = ""; + }; + A58143B4253816EC00CF4451 /* Ppi */ = { + isa = PBXGroup; + children = ( + A58143B5253816EC00CF4451 /* PciCfg.h */, + A58143B6253816EC00CF4451 /* Security.h */, + A58143B7253816EC00CF4451 /* S3Resume.h */, + A58143B8253816EC00CF4451 /* BootScriptExecuter.h */, + A58143B9253816EC00CF4451 /* ReadOnlyVariable.h */, + A58143BA253816EC00CF4451 /* SectionExtraction.h */, + A58143BB253816EC00CF4451 /* FvLoadFile.h */, + A58143BC253816EC00CF4451 /* Smbus.h */, + A58143BD253816EC00CF4451 /* FindFv.h */, + ); + path = Ppi; + sourceTree = ""; + }; + A58143C12538170700CF4451 /* MdeModulePkg */ = { + isa = PBXGroup; + children = ( + A58143C22538170700CF4451 /* Core */, + A58144512538170700CF4451 /* Universal */, + A58146EE2538170800CF4451 /* Include */, + A58147902538170800CF4451 /* MdeModulePkgExtra.uni */, + A58147912538170800CF4451 /* Bus */, + A581495A2538170900CF4451 /* Library */, + A5814B172538170900CF4451 /* MdeModulePkgSample.dec */, + A5814B182538170900CF4451 /* Logo */, + A5814B222538170900CF4451 /* MdeModulePkg.uni */, + A5814B232538170900CF4451 /* MdeModulePkg.dec */, + A5814B242538170900CF4451 /* Application */, + A5814B5D2538170900CF4451 /* MdeModulePkg.dsc */, + ); + name = MdeModulePkg; + path = ../../../MdeModulePkg; + sourceTree = ""; + }; + A58143C22538170700CF4451 /* Core */ = { + isa = PBXGroup; + children = ( + A58143C32538170700CF4451 /* RuntimeDxe */, + A58143CA2538170700CF4451 /* Dxe */, + A58144042538170700CF4451 /* PiSmmCore */, + A581441D2538170700CF4451 /* Pei */, + A58144402538170700CF4451 /* DxeIplPeim */, + ); + path = Core; + sourceTree = ""; + }; + A58143C32538170700CF4451 /* RuntimeDxe */ = { + isa = PBXGroup; + children = ( + A58143C42538170700CF4451 /* Runtime.c */, + A58143C52538170700CF4451 /* RuntimeDxe.inf */, + A58143C62538170700CF4451 /* RuntimeDxe.uni */, + A58143C72538170700CF4451 /* Crc32.c */, + A58143C82538170700CF4451 /* Runtime.h */, + A58143C92538170700CF4451 /* RuntimeDxeExtra.uni */, + ); + path = RuntimeDxe; + sourceTree = ""; + }; + A58143CA2538170700CF4451 /* Dxe */ = { + isa = PBXGroup; + children = ( + A58143CB2538170700CF4451 /* Misc */, + A58143D32538170700CF4451 /* Hand */, + A58143D92538170700CF4451 /* DxeMain.inf */, + A58143DA2538170700CF4451 /* FwVolBlock */, + A58143DD2538170700CF4451 /* Dispatcher */, + A58143E02538170700CF4451 /* FwVol */, + A58143E72538170700CF4451 /* DxeMain */, + A58143EA2538170700CF4451 /* Library */, + A58143EC2538170700CF4451 /* Gcd */, + A58143EF2538170700CF4451 /* Image */, + A58143F22538170700CF4451 /* DxeMain.h */, + A58143F32538170700CF4451 /* DxeCore.uni */, + A58143F42538170700CF4451 /* SectionExtraction */, + A58143F62538170700CF4451 /* Event */, + A58143FB2538170700CF4451 /* DxeCoreExtra.uni */, + A58143FC2538170700CF4451 /* Mem */, + ); + path = Dxe; + sourceTree = ""; + }; + A58143CB2538170700CF4451 /* Misc */ = { + isa = PBXGroup; + children = ( + A58143CC2538170700CF4451 /* Stall.c */, + A58143CD2538170700CF4451 /* MemoryProtection.c */, + A58143CE2538170700CF4451 /* DebugImageInfo.c */, + A58143CF2538170700CF4451 /* InstallConfigurationTable.c */, + A58143D02538170700CF4451 /* SetWatchdogTimer.c */, + A58143D12538170700CF4451 /* PropertiesTable.c */, + A58143D22538170700CF4451 /* MemoryAttributesTable.c */, + ); + path = Misc; + sourceTree = ""; + }; + A58143D32538170700CF4451 /* Hand */ = { + isa = PBXGroup; + children = ( + A58143D42538170700CF4451 /* Handle.c */, + A58143D52538170700CF4451 /* Handle.h */, + A58143D62538170700CF4451 /* Locate.c */, + A58143D72538170700CF4451 /* DriverSupport.c */, + A58143D82538170700CF4451 /* Notify.c */, + ); + path = Hand; + sourceTree = ""; + }; + A58143DA2538170700CF4451 /* FwVolBlock */ = { + isa = PBXGroup; + children = ( + A58143DB2538170700CF4451 /* FwVolBlock.c */, + A58143DC2538170700CF4451 /* FwVolBlock.h */, + ); + path = FwVolBlock; + sourceTree = ""; + }; + A58143DD2538170700CF4451 /* Dispatcher */ = { + isa = PBXGroup; + children = ( + A58143DE2538170700CF4451 /* Dispatcher.c */, + A58143DF2538170700CF4451 /* Dependency.c */, + ); + path = Dispatcher; + sourceTree = ""; + }; + A58143E02538170700CF4451 /* FwVol */ = { + isa = PBXGroup; + children = ( + A58143E12538170700CF4451 /* FwVolAttrib.c */, + A58143E22538170700CF4451 /* FwVolRead.c */, + A58143E32538170700CF4451 /* FwVolDriver.h */, + A58143E42538170700CF4451 /* Ffs.c */, + A58143E52538170700CF4451 /* FwVolWrite.c */, + A58143E62538170700CF4451 /* FwVol.c */, + ); + path = FwVol; + sourceTree = ""; + }; + A58143E72538170700CF4451 /* DxeMain */ = { + isa = PBXGroup; + children = ( + A58143E82538170700CF4451 /* DxeProtocolNotify.c */, + A58143E92538170700CF4451 /* DxeMain.c */, + ); + path = DxeMain; + sourceTree = ""; + }; + A58143EA2538170700CF4451 /* Library */ = { + isa = PBXGroup; + children = ( + A58143EB2538170700CF4451 /* Library.c */, + ); + path = Library; + sourceTree = ""; + }; + A58143EC2538170700CF4451 /* Gcd */ = { + isa = PBXGroup; + children = ( + A58143ED2538170700CF4451 /* Gcd.c */, + A58143EE2538170700CF4451 /* Gcd.h */, + ); + path = Gcd; + sourceTree = ""; + }; + A58143EF2538170700CF4451 /* Image */ = { + isa = PBXGroup; + children = ( + A58143F02538170700CF4451 /* Image.c */, + A58143F12538170700CF4451 /* Image.h */, + ); + path = Image; + sourceTree = ""; + }; + A58143F42538170700CF4451 /* SectionExtraction */ = { + isa = PBXGroup; + children = ( + A58143F52538170700CF4451 /* CoreSectionExtraction.c */, + ); + path = SectionExtraction; + sourceTree = ""; + }; + A58143F62538170700CF4451 /* Event */ = { + isa = PBXGroup; + children = ( + A58143F72538170700CF4451 /* Timer.c */, + A58143F82538170700CF4451 /* Event.h */, + A58143F92538170700CF4451 /* Event.c */, + A58143FA2538170700CF4451 /* Tpl.c */, + ); + path = Event; + sourceTree = ""; + }; + A58143FC2538170700CF4451 /* Mem */ = { + isa = PBXGroup; + children = ( + A58143FD2538170700CF4451 /* HeapGuard.c */, + A58143FE2538170700CF4451 /* MemData.c */, + A58143FF2538170700CF4451 /* MemoryProfileRecord.c */, + A58144002538170700CF4451 /* Page.c */, + A58144012538170700CF4451 /* HeapGuard.h */, + A58144022538170700CF4451 /* Imem.h */, + A58144032538170700CF4451 /* Pool.c */, + ); + path = Mem; + sourceTree = ""; + }; + A58144042538170700CF4451 /* PiSmmCore */ = { + isa = PBXGroup; + children = ( + A58144052538170700CF4451 /* Smi.c */, + A58144062538170700CF4451 /* SmiHandlerProfile.c */, + A58144072538170700CF4451 /* HeapGuard.c */, + A58144082538170700CF4451 /* PiSmmCore.c */, + A58144092538170700CF4451 /* Dispatcher.c */, + A581440A2538170700CF4451 /* PiSmmIplExtra.uni */, + A581440B2538170700CF4451 /* SmramProfileRecord.c */, + A581440C2538170700CF4451 /* Handle.c */, + A581440D2538170700CF4451 /* PiSmmCoreExtra.uni */, + A581440E2538170700CF4451 /* InstallConfigurationTable.c */, + A581440F2538170700CF4451 /* PiSmmCorePrivateData.h */, + A58144102538170700CF4451 /* PiSmmIpl.c */, + A58144112538170700CF4451 /* Page.c */, + A58144122538170700CF4451 /* PiSmmCore.h */, + A58144132538170700CF4451 /* HeapGuard.h */, + A58144142538170700CF4451 /* PiSmmCore.inf */, + A58144152538170700CF4451 /* Locate.c */, + A58144162538170700CF4451 /* Dependency.c */, + A58144172538170700CF4451 /* Pool.c */, + A58144182538170700CF4451 /* PiSmmCore.uni */, + A58144192538170700CF4451 /* MemoryAttributesTable.c */, + A581441A2538170700CF4451 /* PiSmmIpl.uni */, + A581441B2538170700CF4451 /* Notify.c */, + A581441C2538170700CF4451 /* PiSmmIpl.inf */, + ); + path = PiSmmCore; + sourceTree = ""; + }; + A581441D2538170700CF4451 /* Pei */ = { + isa = PBXGroup; + children = ( + A581441E2538170700CF4451 /* PeiMain.inf */, + A581441F2538170700CF4451 /* PciCfg2 */, + A58144212538170700CF4451 /* Memory */, + A58144232538170700CF4451 /* Hob */, + A58144252538170700CF4451 /* Security */, + A58144272538170700CF4451 /* Reset */, + A58144292538170700CF4451 /* Dispatcher */, + A581442B2538170700CF4451 /* FwVol */, + A581442E2538170700CF4451 /* Dependency */, + A58144312538170700CF4451 /* Image */, + A58144332538170700CF4451 /* PeiMain */, + A58144352538170700CF4451 /* StatusCode */, + A58144372538170700CF4451 /* BootMode */, + A58144392538170700CF4451 /* CpuIo */, + A581443B2538170700CF4451 /* Ppi */, + A581443D2538170700CF4451 /* PeiCoreExtra.uni */, + A581443E2538170700CF4451 /* PeiMain.h */, + A581443F2538170700CF4451 /* PeiCore.uni */, + ); + path = Pei; + sourceTree = ""; + }; + A581441F2538170700CF4451 /* PciCfg2 */ = { + isa = PBXGroup; + children = ( + A58144202538170700CF4451 /* PciCfg2.c */, + ); + path = PciCfg2; + sourceTree = ""; + }; + A58144212538170700CF4451 /* Memory */ = { + isa = PBXGroup; + children = ( + A58144222538170700CF4451 /* MemoryServices.c */, + ); + path = Memory; + sourceTree = ""; + }; + A58144232538170700CF4451 /* Hob */ = { + isa = PBXGroup; + children = ( + A58144242538170700CF4451 /* Hob.c */, + ); + path = Hob; + sourceTree = ""; + }; + A58144252538170700CF4451 /* Security */ = { + isa = PBXGroup; + children = ( + A58144262538170700CF4451 /* Security.c */, + ); + path = Security; + sourceTree = ""; + }; + A58144272538170700CF4451 /* Reset */ = { + isa = PBXGroup; + children = ( + A58144282538170700CF4451 /* Reset.c */, + ); + path = Reset; + sourceTree = ""; + }; + A58144292538170700CF4451 /* Dispatcher */ = { + isa = PBXGroup; + children = ( + A581442A2538170700CF4451 /* Dispatcher.c */, + ); + path = Dispatcher; + sourceTree = ""; + }; + A581442B2538170700CF4451 /* FwVol */ = { + isa = PBXGroup; + children = ( + A581442C2538170700CF4451 /* FwVol.h */, + A581442D2538170700CF4451 /* FwVol.c */, + ); + path = FwVol; + sourceTree = ""; + }; + A581442E2538170700CF4451 /* Dependency */ = { + isa = PBXGroup; + children = ( + A581442F2538170700CF4451 /* Dependency.h */, + A58144302538170700CF4451 /* Dependency.c */, + ); + path = Dependency; + sourceTree = ""; + }; + A58144312538170700CF4451 /* Image */ = { + isa = PBXGroup; + children = ( + A58144322538170700CF4451 /* Image.c */, + ); + path = Image; + sourceTree = ""; + }; + A58144332538170700CF4451 /* PeiMain */ = { + isa = PBXGroup; + children = ( + A58144342538170700CF4451 /* PeiMain.c */, + ); + path = PeiMain; + sourceTree = ""; + }; + A58144352538170700CF4451 /* StatusCode */ = { + isa = PBXGroup; + children = ( + A58144362538170700CF4451 /* StatusCode.c */, + ); + path = StatusCode; + sourceTree = ""; + }; + A58144372538170700CF4451 /* BootMode */ = { + isa = PBXGroup; + children = ( + A58144382538170700CF4451 /* BootMode.c */, + ); + path = BootMode; + sourceTree = ""; + }; + A58144392538170700CF4451 /* CpuIo */ = { + isa = PBXGroup; + children = ( + A581443A2538170700CF4451 /* CpuIo.c */, + ); + path = CpuIo; + sourceTree = ""; + }; + A581443B2538170700CF4451 /* Ppi */ = { + isa = PBXGroup; + children = ( + A581443C2538170700CF4451 /* Ppi.c */, + ); + path = Ppi; + sourceTree = ""; + }; + A58144402538170700CF4451 /* DxeIplPeim */ = { + isa = PBXGroup; + children = ( + A58144412538170700CF4451 /* DxeIpl.uni */, + A58144422538170700CF4451 /* Ebc */, + A58144442538170700CF4451 /* DxeLoad.c */, + A58144452538170700CF4451 /* DxeIpl.inf */, + A58144462538170700CF4451 /* X64 */, + A581444A2538170700CF4451 /* DxeIpl.h */, + A581444B2538170700CF4451 /* Ia32 */, + A581444E2538170700CF4451 /* Arm */, + A58144502538170700CF4451 /* DxeIplExtra.uni */, + ); + path = DxeIplPeim; + sourceTree = ""; + }; + A58144422538170700CF4451 /* Ebc */ = { + isa = PBXGroup; + children = ( + A58144432538170700CF4451 /* DxeLoadFunc.c */, + ); + path = Ebc; + sourceTree = ""; + }; + A58144462538170700CF4451 /* X64 */ = { + isa = PBXGroup; + children = ( + A58144472538170700CF4451 /* VirtualMemory.c */, + A58144482538170700CF4451 /* VirtualMemory.h */, + A58144492538170700CF4451 /* DxeLoadFunc.c */, + ); + path = X64; + sourceTree = ""; + }; + A581444B2538170700CF4451 /* Ia32 */ = { + isa = PBXGroup; + children = ( + A581444C2538170700CF4451 /* IdtVectorAsm.nasm */, + A581444D2538170700CF4451 /* DxeLoadFunc.c */, + ); + path = Ia32; + sourceTree = ""; + }; + A581444E2538170700CF4451 /* Arm */ = { + isa = PBXGroup; + children = ( + A581444F2538170700CF4451 /* DxeLoadFunc.c */, + ); + path = Arm; + sourceTree = ""; + }; + A58144512538170700CF4451 /* Universal */ = { + isa = PBXGroup; + children = ( + A58144522538170700CF4451 /* DebugPortDxe */, + A58144592538170700CF4451 /* EsrtFmpDxe */, + A581445F2538170700CF4451 /* DebugSupportDxe */, + A581446E2538170700CF4451 /* Acpi */, + A58144AF2538170700CF4451 /* EbcDxe */, + A58144E82538170700CF4451 /* EsrtDxe */, + A58144EF2538170700CF4451 /* SmbiosDxe */, + A58144F52538170700CF4451 /* SectionExtractionDxe */, + A58144FA2538170700CF4451 /* RegularExpressionDxe */, + A58145252538170700CF4451 /* Variable */, + A58145472538170700CF4451 /* DisplayEngineDxe */, + A58145512538170700CF4451 /* CapsuleOnDiskLoadPei */, + A58145562538170700CF4451 /* DriverHealthManagerDxe */, + A58145602538170700CF4451 /* MonotonicCounterRuntimeDxe */, + A58145652538170700CF4451 /* LegacyRegion2Dxe */, + A581456B2538170700CF4451 /* WatchdogTimerDxe */, + A58145712538170700CF4451 /* FaultTolerantWriteDxe */, + A58145872538170700CF4451 /* DevicePathDxe */, + A581458C2538170700CF4451 /* DriverSampleDxe */, + A58145972538170700CF4451 /* SmbiosMeasurementDxe */, + A581459C2538170700CF4451 /* HiiResourcesSampleDxe */, + A58145A32538170700CF4451 /* PlatformDriOverrideDxe */, + A58145AD2538170700CF4451 /* LoadFileOnFv2 */, + A58145B22538170700CF4451 /* BootManagerPolicyDxe */, + A58145B72538170700CF4451 /* PCD */, + A58145C62538170700CF4451 /* SectionExtractionPei */, + A58145CB2538170700CF4451 /* StatusCodeHandler */, + A58145E42538170700CF4451 /* DebugServicePei */, + A58145E92538170700CF4451 /* TimestampDxe */, + A58145EE2538170700CF4451 /* ResetSystemPei */, + A58145F42538170700CF4451 /* FvSimpleFileSystemDxe */, + A58145FC2538170700CF4451 /* SecurityStubDxe */, + A58146032538170700CF4451 /* Disk */, + A58146382538170800CF4451 /* MemoryTest */, + A58146452538170800CF4451 /* HiiDatabaseDxe */, + A58146522538170800CF4451 /* PcatSingleSegmentPciCfg2Pei */, + A58146572538170800CF4451 /* FaultTolerantWritePei */, + A581465C2538170800CF4451 /* BdsDxe */, + A58146662538170800CF4451 /* SmmCommunicationBufferDxe */, + A581466B2538170800CF4451 /* CapsulePei */, + A581467A2538170800CF4451 /* ResetSystemRuntimeDxe */, + A58146802538170800CF4451 /* PrintDxe */, + A58146852538170800CF4451 /* SerialDxe */, + A581468A2538170800CF4451 /* LockBox */, + A58146902538170800CF4451 /* FileExplorerDxe */, + A58146952538170800CF4451 /* ReportStatusCodeRouter */, + A58146A82538170800CF4451 /* CapsuleRuntimeDxe */, + A58146B62538170800CF4451 /* SetupBrowserDxe */, + A58146C02538170800CF4451 /* Console */, + A58146E82538170800CF4451 /* Metronome */, + ); + path = Universal; + sourceTree = ""; + }; + A58144522538170700CF4451 /* DebugPortDxe */ = { + isa = PBXGroup; + children = ( + A58144532538170700CF4451 /* DebugPort.c */, + A58144542538170700CF4451 /* DebugPortDxeExtra.uni */, + A58144552538170700CF4451 /* DebugPortDxe.inf */, + A58144562538170700CF4451 /* ComponentName.c */, + A58144572538170700CF4451 /* DebugPortDxe.uni */, + A58144582538170700CF4451 /* DebugPort.h */, + ); + path = DebugPortDxe; + sourceTree = ""; + }; + A58144592538170700CF4451 /* EsrtFmpDxe */ = { + isa = PBXGroup; + children = ( + A581445A2538170700CF4451 /* EsrtFmpDebugPrint.c */, + A581445B2538170700CF4451 /* EsrtFmpDxeExtra.uni */, + A581445C2538170700CF4451 /* EsrtFmpDxe.inf */, + A581445D2538170700CF4451 /* EsrtFmpDxe.uni */, + A581445E2538170700CF4451 /* EsrtFmp.c */, + ); + path = EsrtFmpDxe; + sourceTree = ""; + }; + A581445F2538170700CF4451 /* DebugSupportDxe */ = { + isa = PBXGroup; + children = ( + A58144602538170700CF4451 /* X64 */, + A58144642538170700CF4451 /* DebugSupportDxeExtra.uni */, + A58144652538170700CF4451 /* DebugSupport.c */, + A58144662538170700CF4451 /* Ia32 */, + A581446C2538170700CF4451 /* DebugSupportDxe.uni */, + A581446D2538170700CF4451 /* DebugSupportDxe.inf */, + ); + path = DebugSupportDxe; + sourceTree = ""; + }; + A58144602538170700CF4451 /* X64 */ = { + isa = PBXGroup; + children = ( + A58144612538170700CF4451 /* PlDebugSupport.h */, + A58144622538170700CF4451 /* PlDebugSupportX64.c */, + A58144632538170700CF4451 /* AsmFuncs.nasm */, + ); + path = X64; + sourceTree = ""; + }; + A58144662538170700CF4451 /* Ia32 */ = { + isa = PBXGroup; + children = ( + A58144672538170700CF4451 /* PlDebugSupport.h */, + A58144682538170700CF4451 /* AsmFuncs.nasm */, + A58144692538170700CF4451 /* PlDebugSupport.c */, + A581446A2538170700CF4451 /* PlDebugSupportIa32.c */, + A581446B2538170700CF4451 /* DebugSupport.h */, + ); + path = Ia32; + sourceTree = ""; + }; + A581446E2538170700CF4451 /* Acpi */ = { + isa = PBXGroup; + children = ( + A581446F2538170700CF4451 /* AcpiTableDxe */, + A581447D2538170700CF4451 /* S3SaveStateDxe */, + A58144842538170700CF4451 /* BootGraphicsResourceTableDxe */, + A58144892538170700CF4451 /* FirmwarePerformanceDataTableSmm */, + A581448E2538170700CF4451 /* FirmwarePerformanceDataTablePei */, + A58144932538170700CF4451 /* AcpiPlatformDxe */, + A58144982538170700CF4451 /* BootScriptExecutorDxe */, + A58144A42538170700CF4451 /* SmmS3SaveState */, + A58144AA2538170700CF4451 /* FirmwarePerformanceDataTableDxe */, + ); + path = Acpi; + sourceTree = ""; + }; + A581446F2538170700CF4451 /* AcpiTableDxe */ = { + isa = PBXGroup; + children = ( + A58144702538170700CF4451 /* AmlNamespace.c */, + A58144712538170700CF4451 /* AcpiTableDxeExtra.uni */, + A58144722538170700CF4451 /* AcpiTableProtocol.c */, + A58144732538170700CF4451 /* AmlOption.c */, + A58144742538170700CF4451 /* AmlString.c */, + A58144752538170700CF4451 /* AcpiSdt.c */, + A58144762538170700CF4451 /* AcpiTable.c */, + A58144772538170700CF4451 /* AcpiTableDxe.uni */, + A58144782538170700CF4451 /* AmlChild.c */, + A58144792538170700CF4451 /* AcpiTableDxe.inf */, + A581447A2538170700CF4451 /* AcpiSdt.h */, + A581447B2538170700CF4451 /* Aml.c */, + A581447C2538170700CF4451 /* AcpiTable.h */, + ); + path = AcpiTableDxe; + sourceTree = ""; + }; + A581447D2538170700CF4451 /* S3SaveStateDxe */ = { + isa = PBXGroup; + children = ( + A581447E2538170700CF4451 /* AcpiS3ContextSave.c */, + A581447F2538170700CF4451 /* S3SaveStateDxeExtra.uni */, + A58144802538170700CF4451 /* S3SaveState.c */, + A58144812538170700CF4451 /* S3SaveStateDxe.uni */, + A58144822538170700CF4451 /* S3SaveStateDxe.inf */, + A58144832538170700CF4451 /* InternalS3SaveState.h */, + ); + path = S3SaveStateDxe; + sourceTree = ""; + }; + A58144842538170700CF4451 /* BootGraphicsResourceTableDxe */ = { + isa = PBXGroup; + children = ( + A58144852538170700CF4451 /* BootGraphicsResourceTableDxeExtra.uni */, + A58144862538170700CF4451 /* BootGraphicsResourceTableDxe.c */, + A58144872538170700CF4451 /* BootGraphicsResourceTableDxe.inf */, + A58144882538170700CF4451 /* BootGraphicsResourceTableDxe.uni */, + ); + path = BootGraphicsResourceTableDxe; + sourceTree = ""; + }; + A58144892538170700CF4451 /* FirmwarePerformanceDataTableSmm */ = { + isa = PBXGroup; + children = ( + A581448A2538170700CF4451 /* FirmwarePerformanceSmm.uni */, + A581448B2538170700CF4451 /* FirmwarePerformanceSmm.inf */, + A581448C2538170700CF4451 /* FirmwarePerformanceSmmExtra.uni */, + A581448D2538170700CF4451 /* FirmwarePerformanceSmm.c */, + ); + path = FirmwarePerformanceDataTableSmm; + sourceTree = ""; + }; + A581448E2538170700CF4451 /* FirmwarePerformanceDataTablePei */ = { + isa = PBXGroup; + children = ( + A581448F2538170700CF4451 /* FirmwarePerformancePei.c */, + A58144902538170700CF4451 /* FirmwarePerformancePeiExtra.uni */, + A58144912538170700CF4451 /* FirmwarePerformancePei.inf */, + A58144922538170700CF4451 /* FirmwarePerformancePei.uni */, + ); + path = FirmwarePerformanceDataTablePei; + sourceTree = ""; + }; + A58144932538170700CF4451 /* AcpiPlatformDxe */ = { + isa = PBXGroup; + children = ( + A58144942538170700CF4451 /* AcpiPlatform.c */, + A58144952538170700CF4451 /* AcpiPlatformDxe.inf */, + A58144962538170700CF4451 /* AcpiPlatformExtra.uni */, + A58144972538170700CF4451 /* AcpiPlatform.uni */, + ); + path = AcpiPlatformDxe; + sourceTree = ""; + }; + A58144982538170700CF4451 /* BootScriptExecutorDxe */ = { + isa = PBXGroup; + children = ( + A58144992538170700CF4451 /* BootScriptExecutorDxe.inf */, + A581449A2538170700CF4451 /* BootScriptExecutorDxe.uni */, + A581449B2538170700CF4451 /* X64 */, + A581449E2538170700CF4451 /* ScriptExecute.h */, + A581449F2538170700CF4451 /* BootScriptExecutorDxeExtra.uni */, + A58144A02538170700CF4451 /* IA32 */, + A58144A32538170700CF4451 /* ScriptExecute.c */, + ); + path = BootScriptExecutorDxe; + sourceTree = ""; + }; + A581449B2538170700CF4451 /* X64 */ = { + isa = PBXGroup; + children = ( + A581449C2538170700CF4451 /* S3Asm.nasm */, + A581449D2538170700CF4451 /* SetIdtEntry.c */, + ); + path = X64; + sourceTree = ""; + }; + A58144A02538170700CF4451 /* IA32 */ = { + isa = PBXGroup; + children = ( + A58144A12538170700CF4451 /* S3Asm.nasm */, + A58144A22538170700CF4451 /* SetIdtEntry.c */, + ); + path = IA32; + sourceTree = ""; + }; + A58144A42538170700CF4451 /* SmmS3SaveState */ = { + isa = PBXGroup; + children = ( + A58144A52538170700CF4451 /* SmmS3SaveStateExtra.uni */, + A58144A62538170700CF4451 /* SmmS3SaveState.inf */, + A58144A72538170700CF4451 /* SmmS3SaveState.uni */, + A58144A82538170700CF4451 /* InternalSmmSaveState.h */, + A58144A92538170700CF4451 /* SmmS3SaveState.c */, + ); + path = SmmS3SaveState; + sourceTree = ""; + }; + A58144AA2538170700CF4451 /* FirmwarePerformanceDataTableDxe */ = { + isa = PBXGroup; + children = ( + A58144AB2538170700CF4451 /* FirmwarePerformanceDxe.inf */, + A58144AC2538170700CF4451 /* FirmwarePerformanceDxe.uni */, + A58144AD2538170700CF4451 /* FirmwarePerformanceDxeExtra.uni */, + A58144AE2538170700CF4451 /* FirmwarePerformanceDxe.c */, + ); + path = FirmwarePerformanceDataTableDxe; + sourceTree = ""; + }; + A58144AF2538170700CF4451 /* EbcDxe */ = { + isa = PBXGroup; + children = ( + A58144B02538170700CF4451 /* EbcDxe.uni */, + A58144B12538170700CF4451 /* EbcInt.h */, + A58144B22538170700CF4451 /* EbcExecute.h */, + A58144B32538170700CF4451 /* EbcDxe.inf */, + A58144B42538170700CF4451 /* X64 */, + A58144B72538170700CF4451 /* EbcDebugger.inf */, + A58144B82538170700CF4451 /* EbcDebuggerHook.c */, + A58144B92538170700CF4451 /* EbcDebugger */, + A58144D92538170700CF4451 /* EbcDebugger.uni */, + A58144DA2538170700CF4451 /* EbcDebuggerConfig.uni */, + A58144DB2538170700CF4451 /* Ia32 */, + A58144DE2538170700CF4451 /* EbcInt.c */, + A58144DF2538170700CF4451 /* EbcDebuggerConfig.inf */, + A58144E02538170700CF4451 /* EbcExecute.c */, + A58144E12538170700CF4451 /* EbcDebuggerHook.h */, + A58144E22538170700CF4451 /* AArch64 */, + A58144E52538170700CF4451 /* EbcDebuggerConfigExtra.uni */, + A58144E62538170700CF4451 /* EbcDxeExtra.uni */, + A58144E72538170700CF4451 /* EbcDebuggerExtra.uni */, + ); + path = EbcDxe; + sourceTree = ""; + }; + A58144B42538170700CF4451 /* X64 */ = { + isa = PBXGroup; + children = ( + A58144B52538170700CF4451 /* EbcSupport.c */, + A58144B62538170700CF4451 /* EbcLowLevel.nasm */, + ); + path = X64; + sourceTree = ""; + }; + A58144B92538170700CF4451 /* EbcDebugger */ = { + isa = PBXGroup; + children = ( + A58144BA2538170700CF4451 /* EdbCommand.h */, + A58144BB2538170700CF4451 /* EdbDisasm.h */, + A58144BC2538170700CF4451 /* EdbDisasmSupport.c */, + A58144BD2538170700CF4451 /* EdbSymbol.c */, + A58144BE2538170700CF4451 /* EdbSupport.h */, + A58144BF2538170700CF4451 /* EdbCommon.h */, + A58144C02538170700CF4451 /* EdbHook.c */, + A58144C12538170700CF4451 /* EdbSupportUI.c */, + A58144C22538170700CF4451 /* EdbSupportString.c */, + A58144C32538170700CF4451 /* EdbCmdExtIo.c */, + A58144C42538170700CF4451 /* Edb.c */, + A58144C52538170700CF4451 /* EdbCmdMemory.c */, + A58144C62538170700CF4451 /* EbcDebuggerConfig.c */, + A58144C72538170700CF4451 /* EdbDisasmSupport.h */, + A58144C82538170700CF4451 /* EdbSymbol.h */, + A58144C92538170700CF4451 /* EdbSupportFile.c */, + A58144CA2538170700CF4451 /* EdbCommand.c */, + A58144CB2538170700CF4451 /* EdbCmdStep.c */, + A58144CC2538170700CF4451 /* EdbDisasm.c */, + A58144CD2538170700CF4451 /* EdbCmdRegister.c */, + A58144CE2538170700CF4451 /* EdbHook.h */, + A58144CF2538170700CF4451 /* EdbCmdGo.c */, + A58144D02538170700CF4451 /* EdbCmdScope.c */, + A58144D12538170700CF4451 /* EdbCmdQuit.c */, + A58144D22538170700CF4451 /* EdbCmdHelp.c */, + A58144D32538170700CF4451 /* EdbCmdExtPci.c */, + A58144D42538170700CF4451 /* EdbCmdBranch.c */, + A58144D52538170700CF4451 /* Edb.h */, + A58144D62538170700CF4451 /* EdbCmdBreak.c */, + A58144D72538170700CF4451 /* EdbCmdSymbol.c */, + A58144D82538170700CF4451 /* EdbCmdBreakpoint.c */, + ); + path = EbcDebugger; + sourceTree = ""; + }; + A58144DB2538170700CF4451 /* Ia32 */ = { + isa = PBXGroup; + children = ( + A58144DC2538170700CF4451 /* EbcSupport.c */, + A58144DD2538170700CF4451 /* EbcLowLevel.nasm */, + ); + path = Ia32; + sourceTree = ""; + }; + A58144E22538170700CF4451 /* AArch64 */ = { + isa = PBXGroup; + children = ( + A58144E32538170700CF4451 /* EbcSupport.c */, + A58144E42538170700CF4451 /* EbcLowLevel.S */, + ); + path = AArch64; + sourceTree = ""; + }; + A58144E82538170700CF4451 /* EsrtDxe */ = { + isa = PBXGroup; + children = ( + A58144E92538170700CF4451 /* EsrtDxe.c */, + A58144EA2538170700CF4451 /* EsrtImpl.c */, + A58144EB2538170700CF4451 /* EsrtDxe.uni */, + A58144EC2538170700CF4451 /* EsrtImpl.h */, + A58144ED2538170700CF4451 /* EsrtDxe.inf */, + A58144EE2538170700CF4451 /* EsrtDxeExtra.uni */, + ); + path = EsrtDxe; + sourceTree = ""; + }; + A58144EF2538170700CF4451 /* SmbiosDxe */ = { + isa = PBXGroup; + children = ( + A58144F02538170700CF4451 /* SmbiosDxe.h */, + A58144F12538170700CF4451 /* SmbiosDxe.c */, + A58144F22538170700CF4451 /* SmbiosDxe.inf */, + A58144F32538170700CF4451 /* SmbiosDxe.uni */, + A58144F42538170700CF4451 /* SmbiosDxeExtra.uni */, + ); + path = SmbiosDxe; + sourceTree = ""; + }; + A58144F52538170700CF4451 /* SectionExtractionDxe */ = { + isa = PBXGroup; + children = ( + A58144F62538170700CF4451 /* SectionExtractionDxe.uni */, + A58144F72538170700CF4451 /* SectionExtractionDxe.inf */, + A58144F82538170700CF4451 /* SectionExtractionDxe.c */, + A58144F92538170700CF4451 /* SectionExtractionDxeExtra.uni */, + ); + path = SectionExtractionDxe; + sourceTree = ""; + }; + A58144FA2538170700CF4451 /* RegularExpressionDxe */ = { + isa = PBXGroup; + children = ( + A58144FB2538170700CF4451 /* RegularExpressionDxe.inf */, + A58144FC2538170700CF4451 /* RegularExpressionDxe.h */, + A58144FD2538170700CF4451 /* Oniguruma */, + A58145242538170700CF4451 /* RegularExpressionDxe.c */, + ); + path = RegularExpressionDxe; + sourceTree = ""; + }; + A58144FD2538170700CF4451 /* Oniguruma */ = { + isa = PBXGroup; + children = ( + A58144FE2538170700CF4451 /* unicode_property_data_posix.c */, + A58144FF2538170700CF4451 /* unicode.c */, + A58145002538170700CF4451 /* st.h */, + A58145012538170700CF4451 /* ascii.c */, + A58145022538170700CF4451 /* unicode_fold2_key.c */, + A58145032538170700CF4451 /* regparse.h */, + A58145042538170700CF4451 /* AUTHORS */, + A58145052538170700CF4451 /* unicode_fold3_key.c */, + A58145062538170700CF4451 /* regposix.c */, + A58145072538170700CF4451 /* unicode_fold1_key.c */, + A58145082538170700CF4451 /* unicode_wb_data.c */, + A58145092538170700CF4451 /* regexec.c */, + A581450A2538170700CF4451 /* regint.h */, + A581450B2538170700CF4451 /* regenc.h */, + A581450C2538170700CF4451 /* regcomp.c */, + A581450D2538170700CF4451 /* unicode_egcb_data.c */, + A581450E2538170700CF4451 /* regtrav.c */, + A581450F2538170700CF4451 /* regsyntax.c */, + A58145102538170700CF4451 /* OnigurumaIntrinsics.c */, + A58145112538170700CF4451 /* regversion.c */, + A58145122538170700CF4451 /* OnigurumaUefiPort.c */, + A58145132538170700CF4451 /* unicode_property_data.c */, + A58145142538170700CF4451 /* README */, + A58145152538170700CF4451 /* st.c */, + A58145162538170700CF4451 /* oniggnu.h */, + A58145172538170700CF4451 /* onigposix.h */, + A58145182538170700CF4451 /* COPYING */, + A58145192538170700CF4451 /* utf16_le.c */, + A581451A2538170700CF4451 /* oniguruma.h */, + A581451B2538170700CF4451 /* regposerr.c */, + A581451C2538170700CF4451 /* regparse.c */, + A581451D2538170700CF4451 /* onig_init.c */, + A581451E2538170700CF4451 /* regenc.c */, + A581451F2538170700CF4451 /* regerror.c */, + A58145202538170700CF4451 /* OnigurumaUefiPort.h */, + A58145212538170700CF4451 /* unicode_unfold_key.c */, + A58145222538170700CF4451 /* reggnu.c */, + A58145232538170700CF4451 /* unicode_fold_data.c */, + ); + path = Oniguruma; + sourceTree = ""; + }; + A58145252538170700CF4451 /* Variable */ = { + isa = PBXGroup; + children = ( + A58145262538170700CF4451 /* RuntimeDxe */, + A58145412538170700CF4451 /* Pei */, + ); + path = Variable; + sourceTree = ""; + }; + A58145262538170700CF4451 /* RuntimeDxe */ = { + isa = PBXGroup; + children = ( + A58145272538170700CF4451 /* Measurement.c */, + A58145282538170700CF4451 /* SpeculationBarrierDxe.c */, + A58145292538170700CF4451 /* VariableStandaloneMm.inf */, + A581452A2538170700CF4451 /* VariableSmm.uni */, + A581452B2538170700CF4451 /* VariableSmmRuntimeDxeExtra.uni */, + A581452C2538170700CF4451 /* SpeculationBarrierSmm.c */, + A581452D2538170700CF4451 /* VariableSmm.inf */, + A581452E2538170700CF4451 /* VariableTraditionalMm.c */, + A581452F2538170700CF4451 /* PrivilegePolymorphic.h */, + A58145302538170700CF4451 /* VariableExLib.c */, + A58145312538170700CF4451 /* Variable.h */, + A58145322538170700CF4451 /* VariableSmmRuntimeDxe.c */, + A58145332538170700CF4451 /* VariableSmmRuntimeDxe.inf */, + A58145342538170700CF4451 /* VariableStandaloneMm.c */, + A58145352538170700CF4451 /* VariableSmmExtra.uni */, + A58145362538170700CF4451 /* VariableSmm.c */, + A58145372538170700CF4451 /* TcgMorLockSmm.c */, + A58145382538170700CF4451 /* Reclaim.c */, + A58145392538170700CF4451 /* VariableDxe.c */, + A581453A2538170700CF4451 /* VariableSmmRuntimeDxe.uni */, + A581453B2538170700CF4451 /* TcgMorLockDxe.c */, + A581453C2538170700CF4451 /* VarCheck.c */, + A581453D2538170700CF4451 /* VariableRuntimeDxe.inf */, + A581453E2538170700CF4451 /* VariableRuntimeDxeExtra.uni */, + A581453F2538170700CF4451 /* VariableRuntimeDxe.uni */, + A58145402538170700CF4451 /* Variable.c */, + ); + path = RuntimeDxe; + sourceTree = ""; + }; + A58145412538170700CF4451 /* Pei */ = { + isa = PBXGroup; + children = ( + A58145422538170700CF4451 /* PeiVariableExtra.uni */, + A58145432538170700CF4451 /* PeiVariable.uni */, + A58145442538170700CF4451 /* Variable.h */, + A58145452538170700CF4451 /* VariablePei.inf */, + A58145462538170700CF4451 /* Variable.c */, + ); + path = Pei; + sourceTree = ""; + }; + A58145472538170700CF4451 /* DisplayEngineDxe */ = { + isa = PBXGroup; + children = ( + A58145482538170700CF4451 /* InputHandler.c */, + A58145492538170700CF4451 /* FormDisplay.c */, + A581454A2538170700CF4451 /* DisplayEngine.uni */, + A581454B2538170700CF4451 /* FormDisplayStr.uni */, + A581454C2538170700CF4451 /* FormDisplay.h */, + A581454D2538170700CF4451 /* Popup.c */, + A581454E2538170700CF4451 /* ProcessOptions.c */, + A581454F2538170700CF4451 /* DisplayEngineDxe.inf */, + A58145502538170700CF4451 /* DisplayEngineExtra.uni */, + ); + path = DisplayEngineDxe; + sourceTree = ""; + }; + A58145512538170700CF4451 /* CapsuleOnDiskLoadPei */ = { + isa = PBXGroup; + children = ( + A58145522538170700CF4451 /* CapsuleOnDiskLoadPeiExtra.uni */, + A58145532538170700CF4451 /* CapsuleOnDiskLoadPei.c */, + A58145542538170700CF4451 /* CapsuleOnDiskLoadPei.inf */, + A58145552538170700CF4451 /* CapsuleOnDiskLoadPei.uni */, + ); + path = CapsuleOnDiskLoadPei; + sourceTree = ""; + }; + A58145562538170700CF4451 /* DriverHealthManagerDxe */ = { + isa = PBXGroup; + children = ( + A58145572538170700CF4451 /* DriverHealthManagerDxeExtra.uni */, + A58145582538170700CF4451 /* DriverHealthManagerDxe.h */, + A58145592538170700CF4451 /* DriverHealthManagerVfr.h */, + A581455A2538170700CF4451 /* DriverHealthManagerStrings.uni */, + A581455B2538170700CF4451 /* DriverHealthManagerVfr.Vfr */, + A581455C2538170700CF4451 /* DriverHealthManagerDxe.uni */, + A581455D2538170700CF4451 /* DriverHealthConfigureVfr.Vfr */, + A581455E2538170700CF4451 /* DriverHealthManagerDxe.c */, + A581455F2538170700CF4451 /* DriverHealthManagerDxe.inf */, + ); + path = DriverHealthManagerDxe; + sourceTree = ""; + }; + A58145602538170700CF4451 /* MonotonicCounterRuntimeDxe */ = { + isa = PBXGroup; + children = ( + A58145612538170700CF4451 /* MonotonicCounterRuntimeDxeExtra.uni */, + A58145622538170700CF4451 /* MonotonicCounterRuntimeDxe.inf */, + A58145632538170700CF4451 /* MonotonicCounter.c */, + A58145642538170700CF4451 /* MonotonicCounterRuntimeDxe.uni */, + ); + path = MonotonicCounterRuntimeDxe; + sourceTree = ""; + }; + A58145652538170700CF4451 /* LegacyRegion2Dxe */ = { + isa = PBXGroup; + children = ( + A58145662538170700CF4451 /* LegacyRegion2Dxe.uni */, + A58145672538170700CF4451 /* LegacyRegion2.c */, + A58145682538170700CF4451 /* LegacyRegion2Dxe.inf */, + A58145692538170700CF4451 /* LegacyRegion2.h */, + A581456A2538170700CF4451 /* LegacyRegion2DxeExtra.uni */, + ); + path = LegacyRegion2Dxe; + sourceTree = ""; + }; + A581456B2538170700CF4451 /* WatchdogTimerDxe */ = { + isa = PBXGroup; + children = ( + A581456C2538170700CF4451 /* WatchdogTimer.inf */, + A581456D2538170700CF4451 /* WatchdogTimer.uni */, + A581456E2538170700CF4451 /* WatchdogTimer.c */, + A581456F2538170700CF4451 /* WatchdogTimerExtra.uni */, + A58145702538170700CF4451 /* WatchdogTimer.h */, + ); + path = WatchdogTimerDxe; + sourceTree = ""; + }; + A58145712538170700CF4451 /* FaultTolerantWriteDxe */ = { + isa = PBXGroup; + children = ( + A58145722538170700CF4451 /* FaultTolerantWriteSmmDxeExtra.uni */, + A58145732538170700CF4451 /* FaultTolerantWriteSmmCommon.h */, + A58145742538170700CF4451 /* FaultTolerantWriteSmmDxe.h */, + A58145752538170700CF4451 /* FaultTolerantWriteStandaloneMm.inf */, + A58145762538170700CF4451 /* SmmFaultTolerantWriteDxeExtra.uni */, + A58145772538170700CF4451 /* FaultTolerantWrite.c */, + A58145782538170700CF4451 /* FaultTolerantWriteDxe.inf */, + A58145792538170700CF4451 /* FaultTolerantWriteStandaloneMm.c */, + A581457A2538170700CF4451 /* FaultTolerantWriteSmmDxe.c */, + A581457B2538170700CF4451 /* FaultTolerantWriteDxeExtra.uni */, + A581457C2538170700CF4451 /* FaultTolerantWriteDxe.uni */, + A581457D2538170700CF4451 /* FaultTolerantWriteSmm.inf */, + A581457E2538170700CF4451 /* FaultTolerantWriteTraditionalMm.c */, + A581457F2538170700CF4451 /* FaultTolerantWriteDxe.c */, + A58145802538170700CF4451 /* FaultTolerantWriteSmmDxe.uni */, + A58145812538170700CF4451 /* FaultTolerantWriteSmm.c */, + A58145822538170700CF4451 /* FtwMisc.c */, + A58145832538170700CF4451 /* SmmFaultTolerantWriteDxe.uni */, + A58145842538170700CF4451 /* UpdateWorkingBlock.c */, + A58145852538170700CF4451 /* FaultTolerantWriteSmmDxe.inf */, + A58145862538170700CF4451 /* FaultTolerantWrite.h */, + ); + path = FaultTolerantWriteDxe; + sourceTree = ""; + }; + A58145872538170700CF4451 /* DevicePathDxe */ = { + isa = PBXGroup; + children = ( + A58145882538170700CF4451 /* DevicePath.c */, + A58145892538170700CF4451 /* DevicePathDxe.inf */, + A581458A2538170700CF4451 /* DevicePathDxeExtra.uni */, + A581458B2538170700CF4451 /* DevicePathDxe.uni */, + ); + path = DevicePathDxe; + sourceTree = ""; + }; + A581458C2538170700CF4451 /* DriverSampleDxe */ = { + isa = PBXGroup; + children = ( + A581458D2538170700CF4451 /* NVDataStruc.h */, + A581458E2538170700CF4451 /* DriverSample.c */, + A581458F2538170700CF4451 /* DriverSampleDxe.inf */, + A58145902538170700CF4451 /* Inventory.vfr */, + A58145912538170700CF4451 /* Vfr.vfr */, + A58145922538170700CF4451 /* DriverSample.uni */, + A58145932538170700CF4451 /* InventoryStrings.uni */, + A58145942538170700CF4451 /* DriverSampleExtra.uni */, + A58145952538170700CF4451 /* DriverSample.h */, + A58145962538170700CF4451 /* VfrStrings.uni */, + ); + path = DriverSampleDxe; + sourceTree = ""; + }; + A58145972538170700CF4451 /* SmbiosMeasurementDxe */ = { + isa = PBXGroup; + children = ( + A58145982538170700CF4451 /* SmbiosMeasurementDxeExtra.uni */, + A58145992538170700CF4451 /* SmbiosMeasurementDxe.c */, + A581459A2538170700CF4451 /* SmbiosMeasurementDxe.inf */, + A581459B2538170700CF4451 /* SmbiosMeasurementDxe.uni */, + ); + path = SmbiosMeasurementDxe; + sourceTree = ""; + }; + A581459C2538170700CF4451 /* HiiResourcesSampleDxe */ = { + isa = PBXGroup; + children = ( + A581459D2538170700CF4451 /* HiiResourcesSample.c */, + A581459E2538170700CF4451 /* HiiResourcesSample.uni */, + A581459F2538170700CF4451 /* HiiResourcesSampleDxe.inf */, + A58145A02538170700CF4451 /* HiiResourcesSampleExtra.uni */, + A58145A12538170700CF4451 /* SampleStrings.uni */, + A58145A22538170700CF4451 /* Sample.vfr */, + ); + path = HiiResourcesSampleDxe; + sourceTree = ""; + }; + A58145A32538170700CF4451 /* PlatformDriOverrideDxe */ = { + isa = PBXGroup; + children = ( + A58145A42538170700CF4451 /* InternalPlatDriOverrideDxe.h */, + A58145A52538170700CF4451 /* Vfr.vfr */, + A58145A62538170700CF4451 /* PlatOverMngr.h */, + A58145A72538170700CF4451 /* PlatformDriOverrideDxe.inf */, + A58145A82538170700CF4451 /* PlatDriOverrideLib.c */, + A58145A92538170700CF4451 /* PlatDriOverrideDxe.uni */, + A58145AA2538170700CF4451 /* PlatDriOverrideDxeExtra.uni */, + A58145AB2538170700CF4451 /* PlatDriOverrideDxe.c */, + A58145AC2538170700CF4451 /* VfrStrings.uni */, + ); + path = PlatformDriOverrideDxe; + sourceTree = ""; + }; + A58145AD2538170700CF4451 /* LoadFileOnFv2 */ = { + isa = PBXGroup; + children = ( + A58145AE2538170700CF4451 /* LoadFileOnFv2.c */, + A58145AF2538170700CF4451 /* LoadFileOnFv2.inf */, + A58145B02538170700CF4451 /* LoadFileOnFv2.uni */, + A58145B12538170700CF4451 /* LoadFileOnFv2Extra.uni */, + ); + path = LoadFileOnFv2; + sourceTree = ""; + }; + A58145B22538170700CF4451 /* BootManagerPolicyDxe */ = { + isa = PBXGroup; + children = ( + A58145B32538170700CF4451 /* BootManagerPolicyDxe.uni */, + A58145B42538170700CF4451 /* BootManagerPolicyDxe.inf */, + A58145B52538170700CF4451 /* BootManagerPolicyDxeExtra.uni */, + A58145B62538170700CF4451 /* BootManagerPolicyDxe.c */, + ); + path = BootManagerPolicyDxe; + sourceTree = ""; + }; + A58145B72538170700CF4451 /* PCD */ = { + isa = PBXGroup; + children = ( + A58145B82538170700CF4451 /* Dxe */, + A58145BF2538170700CF4451 /* Pei */, + ); + path = PCD; + sourceTree = ""; + }; + A58145B82538170700CF4451 /* Dxe */ = { + isa = PBXGroup; + children = ( + A58145B92538170700CF4451 /* Pcd.c */, + A58145BA2538170700CF4451 /* PcdDxeExtra.uni */, + A58145BB2538170700CF4451 /* Service.h */, + A58145BC2538170700CF4451 /* Pcd.inf */, + A58145BD2538170700CF4451 /* Service.c */, + A58145BE2538170700CF4451 /* PcdDxe.uni */, + ); + path = Dxe; + sourceTree = ""; + }; + A58145BF2538170700CF4451 /* Pei */ = { + isa = PBXGroup; + children = ( + A58145C02538170700CF4451 /* Pcd.c */, + A58145C12538170700CF4451 /* Service.h */, + A58145C22538170700CF4451 /* Pcd.inf */, + A58145C32538170700CF4451 /* PcdPeim.uni */, + A58145C42538170700CF4451 /* PcdPeimExtra.uni */, + A58145C52538170700CF4451 /* Service.c */, + ); + path = Pei; + sourceTree = ""; + }; + A58145C62538170700CF4451 /* SectionExtractionPei */ = { + isa = PBXGroup; + children = ( + A58145C72538170700CF4451 /* SectionExtractionPei.c */, + A58145C82538170700CF4451 /* SectionExtractionPeiExtra.uni */, + A58145C92538170700CF4451 /* SectionExtractionPei.uni */, + A58145CA2538170700CF4451 /* SectionExtractionPei.inf */, + ); + path = SectionExtractionPei; + sourceTree = ""; + }; + A58145CB2538170700CF4451 /* StatusCodeHandler */ = { + isa = PBXGroup; + children = ( + A58145CC2538170700CF4451 /* RuntimeDxe */, + A58145D42538170700CF4451 /* Pei */, + A58145DC2538170700CF4451 /* Smm */, + ); + path = StatusCodeHandler; + sourceTree = ""; + }; + A58145CC2538170700CF4451 /* RuntimeDxe */ = { + isa = PBXGroup; + children = ( + A58145CD2538170700CF4451 /* StatusCodeHandlerRuntimeDxe.c */, + A58145CE2538170700CF4451 /* MemoryStatusCodeWorker.c */, + A58145CF2538170700CF4451 /* StatusCodeHandlerRuntimeDxeExtra.uni */, + A58145D02538170700CF4451 /* StatusCodeHandlerRuntimeDxe.uni */, + A58145D12538170700CF4451 /* StatusCodeHandlerRuntimeDxe.inf */, + A58145D22538170700CF4451 /* StatusCodeHandlerRuntimeDxe.h */, + A58145D32538170700CF4451 /* SerialStatusCodeWorker.c */, + ); + path = RuntimeDxe; + sourceTree = ""; + }; + A58145D42538170700CF4451 /* Pei */ = { + isa = PBXGroup; + children = ( + A58145D52538170700CF4451 /* StatusCodeHandlerPei.uni */, + A58145D62538170700CF4451 /* StatusCodeHandlerPeiExtra.uni */, + A58145D72538170700CF4451 /* StatusCodeHandlerPei.inf */, + A58145D82538170700CF4451 /* StatusCodeHandlerPei.h */, + A58145D92538170700CF4451 /* MemoryStausCodeWorker.c */, + A58145DA2538170700CF4451 /* SerialStatusCodeWorker.c */, + A58145DB2538170700CF4451 /* StatusCodeHandlerPei.c */, + ); + path = Pei; + sourceTree = ""; + }; + A58145DC2538170700CF4451 /* Smm */ = { + isa = PBXGroup; + children = ( + A58145DD2538170700CF4451 /* MemoryStatusCodeWorker.c */, + A58145DE2538170700CF4451 /* StatusCodeHandlerSmm.c */, + A58145DF2538170700CF4451 /* StatusCodeHandlerSmmExtra.uni */, + A58145E02538170700CF4451 /* StatusCodeHandlerSmm.inf */, + A58145E12538170700CF4451 /* SerialStatusCodeWorker.c */, + A58145E22538170700CF4451 /* StatusCodeHandlerSmm.h */, + A58145E32538170700CF4451 /* StatusCodeHandlerSmm.uni */, + ); + path = Smm; + sourceTree = ""; + }; + A58145E42538170700CF4451 /* DebugServicePei */ = { + isa = PBXGroup; + children = ( + A58145E52538170700CF4451 /* DebugServicePei.c */, + A58145E62538170700CF4451 /* DebugService.h */, + A58145E72538170700CF4451 /* DebugServicePei.inf */, + A58145E82538170700CF4451 /* DebugServicePei.uni */, + ); + path = DebugServicePei; + sourceTree = ""; + }; + A58145E92538170700CF4451 /* TimestampDxe */ = { + isa = PBXGroup; + children = ( + A58145EA2538170700CF4451 /* TimestampDxe.c */, + A58145EB2538170700CF4451 /* TimestampDxe.uni */, + A58145EC2538170700CF4451 /* TimestampDxe.inf */, + A58145ED2538170700CF4451 /* TimestampDxeExtra.uni */, + ); + path = TimestampDxe; + sourceTree = ""; + }; + A58145EE2538170700CF4451 /* ResetSystemPei */ = { + isa = PBXGroup; + children = ( + A58145EF2538170700CF4451 /* ResetSystemPeiExtra.uni */, + A58145F02538170700CF4451 /* ResetSystem.h */, + A58145F12538170700CF4451 /* ResetSystemPei.inf */, + A58145F22538170700CF4451 /* ResetSystem.c */, + A58145F32538170700CF4451 /* ResetSystemPei.uni */, + ); + path = ResetSystemPei; + sourceTree = ""; + }; + A58145F42538170700CF4451 /* FvSimpleFileSystemDxe */ = { + isa = PBXGroup; + children = ( + A58145F52538170700CF4451 /* FvSimpleFileSystemEntryPoint.c */, + A58145F62538170700CF4451 /* FvSimpleFileSystem.c */, + A58145F72538170700CF4451 /* FvSimpleFileSystemDxe.inf */, + A58145F82538170700CF4451 /* ComponentName.c */, + A58145F92538170700CF4451 /* FvSimpleFileSystemInternal.h */, + A58145FA2538170700CF4451 /* FvSimpleFileSystem.uni */, + A58145FB2538170700CF4451 /* FvSimpleFileSystemExtra.uni */, + ); + path = FvSimpleFileSystemDxe; + sourceTree = ""; + }; + A58145FC2538170700CF4451 /* SecurityStubDxe */ = { + isa = PBXGroup; + children = ( + A58145FD2538170700CF4451 /* Defer3rdPartyImageLoad.c */, + A58145FE2538170700CF4451 /* SecurityStubDxe.uni */, + A58145FF2538170700CF4451 /* SecurityStub.c */, + A58146002538170700CF4451 /* SecurityStubDxe.inf */, + A58146012538170700CF4451 /* SecurityStubDxeExtra.uni */, + A58146022538170700CF4451 /* Defer3rdPartyImageLoad.h */, + ); + path = SecurityStubDxe; + sourceTree = ""; + }; + A58146032538170700CF4451 /* Disk */ = { + isa = PBXGroup; + children = ( + A58146042538170700CF4451 /* DiskIoDxe */, + A581460B2538170700CF4451 /* CdExpressPei */, + A58146112538170800CF4451 /* PartitionDxe */, + A581461C2538170800CF4451 /* RamDiskDxe */, + A58146292538170800CF4451 /* UnicodeCollation */, + A58146302538170800CF4451 /* UdfDxe */, + ); + path = Disk; + sourceTree = ""; + }; + A58146042538170700CF4451 /* DiskIoDxe */ = { + isa = PBXGroup; + children = ( + A58146052538170700CF4451 /* DiskIoDxe.uni */, + A58146062538170700CF4451 /* DiskIo.h */, + A58146072538170700CF4451 /* DiskIoDxe.inf */, + A58146082538170700CF4451 /* ComponentName.c */, + A58146092538170700CF4451 /* DiskIoDxeExtra.uni */, + A581460A2538170700CF4451 /* DiskIo.c */, + ); + path = DiskIoDxe; + sourceTree = ""; + }; + A581460B2538170700CF4451 /* CdExpressPei */ = { + isa = PBXGroup; + children = ( + A581460C2538170700CF4451 /* CdExpressPei.inf */, + A581460D2538170700CF4451 /* PeiCdExpress.c */, + A581460E2538170700CF4451 /* CdExpressPei.uni */, + A581460F2538170700CF4451 /* PeiCdExpress.h */, + A58146102538170700CF4451 /* CdExpressPeiExtra.uni */, + ); + path = CdExpressPei; + sourceTree = ""; + }; + A58146112538170800CF4451 /* PartitionDxe */ = { + isa = PBXGroup; + children = ( + A58146122538170800CF4451 /* Partition.c */, + A58146132538170800CF4451 /* Udf.c */, + A58146142538170800CF4451 /* PartitionDxeExtra.uni */, + A58146152538170800CF4451 /* ComponentName.c */, + A58146162538170800CF4451 /* ElTorito.c */, + A58146172538170800CF4451 /* PartitionDxe.uni */, + A58146182538170800CF4451 /* Partition.h */, + A58146192538170800CF4451 /* PartitionDxe.inf */, + A581461A2538170800CF4451 /* Mbr.c */, + A581461B2538170800CF4451 /* Gpt.c */, + ); + path = PartitionDxe; + sourceTree = ""; + }; + A581461C2538170800CF4451 /* RamDiskDxe */ = { + isa = PBXGroup; + children = ( + A581461D2538170800CF4451 /* RamDiskImpl.h */, + A581461E2538170800CF4451 /* RamDiskFileExplorer.c */, + A581461F2538170800CF4451 /* RamDiskNVData.h */, + A58146202538170800CF4451 /* RamDiskHiiStrings.uni */, + A58146212538170800CF4451 /* RamDiskImpl.c */, + A58146222538170800CF4451 /* RamDiskBlockIo.c */, + A58146232538170800CF4451 /* RamDiskProtocol.c */, + A58146242538170800CF4451 /* RamDiskHii.vfr */, + A58146252538170800CF4451 /* RamDisk.asl */, + A58146262538170800CF4451 /* RamDiskDxe.inf */, + A58146272538170800CF4451 /* RamDiskDriver.c */, + A58146282538170800CF4451 /* RamDiskDxe.uni */, + ); + path = RamDiskDxe; + sourceTree = ""; + }; + A58146292538170800CF4451 /* UnicodeCollation */ = { + isa = PBXGroup; + children = ( + A581462A2538170800CF4451 /* EnglishDxe */, + ); + path = UnicodeCollation; + sourceTree = ""; + }; + A581462A2538170800CF4451 /* EnglishDxe */ = { + isa = PBXGroup; + children = ( + A581462B2538170800CF4451 /* EnglishDxe.uni */, + A581462C2538170800CF4451 /* EnglishDxeExtra.uni */, + A581462D2538170800CF4451 /* UnicodeCollationEng.c */, + A581462E2538170800CF4451 /* EnglishDxe.inf */, + A581462F2538170800CF4451 /* UnicodeCollationEng.h */, + ); + path = EnglishDxe; + sourceTree = ""; + }; + A58146302538170800CF4451 /* UdfDxe */ = { + isa = PBXGroup; + children = ( + A58146312538170800CF4451 /* FileName.c */, + A58146322538170800CF4451 /* Udf.c */, + A58146332538170800CF4451 /* FileSystemOperations.c */, + A58146342538170800CF4451 /* ComponentName.c */, + A58146352538170800CF4451 /* UdfDxe.inf */, + A58146362538170800CF4451 /* Udf.h */, + A58146372538170800CF4451 /* File.c */, + ); + path = UdfDxe; + sourceTree = ""; + }; + A58146382538170800CF4451 /* MemoryTest */ = { + isa = PBXGroup; + children = ( + A58146392538170800CF4451 /* GenericMemoryTestDxe */, + A581463F2538170800CF4451 /* NullMemoryTestDxe */, + ); + path = MemoryTest; + sourceTree = ""; + }; + A58146392538170800CF4451 /* GenericMemoryTestDxe */ = { + isa = PBXGroup; + children = ( + A581463A2538170800CF4451 /* LightMemoryTest.c */, + A581463B2538170800CF4451 /* GenericMemoryTestDxe.inf */, + A581463C2538170800CF4451 /* GenericMemoryTestDxeExtra.uni */, + A581463D2538170800CF4451 /* GenericMemoryTestDxe.uni */, + A581463E2538170800CF4451 /* LightMemoryTest.h */, + ); + path = GenericMemoryTestDxe; + sourceTree = ""; + }; + A581463F2538170800CF4451 /* NullMemoryTestDxe */ = { + isa = PBXGroup; + children = ( + A58146402538170800CF4451 /* NullMemoryTest.h */, + A58146412538170800CF4451 /* NullMemoryTestDxeExtra.uni */, + A58146422538170800CF4451 /* NullMemoryTestDxe.inf */, + A58146432538170800CF4451 /* NullMemoryTest.c */, + A58146442538170800CF4451 /* NullMemoryTestDxe.uni */, + ); + path = NullMemoryTestDxe; + sourceTree = ""; + }; + A58146452538170800CF4451 /* HiiDatabaseDxe */ = { + isa = PBXGroup; + children = ( + A58146462538170800CF4451 /* HiiDatabaseDxe.inf */, + A58146472538170800CF4451 /* HiiDatabase.uni */, + A58146482538170800CF4451 /* Database.c */, + A58146492538170800CF4451 /* ConfigRouting.c */, + A581464A2538170800CF4451 /* Font.c */, + A581464B2538170800CF4451 /* String.c */, + A581464C2538170800CF4451 /* Image.c */, + A581464D2538170800CF4451 /* HiiDatabaseExtra.uni */, + A581464E2538170800CF4451 /* HiiDatabase.h */, + A581464F2538170800CF4451 /* ConfigKeywordHandler.c */, + A58146502538170800CF4451 /* HiiDatabaseEntry.c */, + A58146512538170800CF4451 /* ImageEx.c */, + ); + path = HiiDatabaseDxe; + sourceTree = ""; + }; + A58146522538170800CF4451 /* PcatSingleSegmentPciCfg2Pei */ = { + isa = PBXGroup; + children = ( + A58146532538170800CF4451 /* PciCfg2.c */, + A58146542538170800CF4451 /* PcatSingleSegmentPciCfg2Pei.inf */, + A58146552538170800CF4451 /* PcatSingleSegmentPciCfg2Pei.uni */, + A58146562538170800CF4451 /* PcatSingleSegmentPciCfg2PeiExtra.uni */, + ); + path = PcatSingleSegmentPciCfg2Pei; + sourceTree = ""; + }; + A58146572538170800CF4451 /* FaultTolerantWritePei */ = { + isa = PBXGroup; + children = ( + A58146582538170800CF4451 /* FaultTolerantWritePei.inf */, + A58146592538170800CF4451 /* FaultTolerantWritePei.uni */, + A581465A2538170800CF4451 /* FaultTolerantWritePei.c */, + A581465B2538170800CF4451 /* FaultTolerantWritePeiExtra.uni */, + ); + path = FaultTolerantWritePei; + sourceTree = ""; + }; + A581465C2538170800CF4451 /* BdsDxe */ = { + isa = PBXGroup; + children = ( + A581465D2538170800CF4451 /* Language.h */, + A581465E2538170800CF4451 /* BdsEntry.c */, + A581465F2538170800CF4451 /* HwErrRecSupport.c */, + A58146602538170800CF4451 /* BdsDxe.inf */, + A58146612538170800CF4451 /* BdsDxeExtra.uni */, + A58146622538170800CF4451 /* BdsDxe.uni */, + A58146632538170800CF4451 /* Bds.h */, + A58146642538170800CF4451 /* Language.c */, + A58146652538170800CF4451 /* HwErrRecSupport.h */, + ); + path = BdsDxe; + sourceTree = ""; + }; + A58146662538170800CF4451 /* SmmCommunicationBufferDxe */ = { + isa = PBXGroup; + children = ( + A58146672538170800CF4451 /* SmmCommunicationBufferExtraDxe.uni */, + A58146682538170800CF4451 /* SmmCommunicationBufferDxe.c */, + A58146692538170800CF4451 /* SmmCommunicationBufferDxe.uni */, + A581466A2538170800CF4451 /* SmmCommunicationBufferDxe.inf */, + ); + path = SmmCommunicationBufferDxe; + sourceTree = ""; + }; + A581466B2538170800CF4451 /* CapsulePei */ = { + isa = PBXGroup; + children = ( + A581466C2538170800CF4451 /* CapsulePei.uni */, + A581466D2538170800CF4451 /* CapsulePei.inf */, + A581466E2538170800CF4451 /* CapsuleX64Extra.uni */, + A581466F2538170800CF4451 /* CapsulePeiExtra.uni */, + A58146702538170800CF4451 /* X64 */, + A58146732538170800CF4451 /* Common */, + A58146762538170800CF4451 /* CapsuleX64.uni */, + A58146772538170800CF4451 /* Capsule.h */, + A58146782538170800CF4451 /* CapsuleX64.inf */, + A58146792538170800CF4451 /* UefiCapsule.c */, + ); + path = CapsulePei; + sourceTree = ""; + }; + A58146702538170800CF4451 /* X64 */ = { + isa = PBXGroup; + children = ( + A58146712538170800CF4451 /* X64Entry.c */, + A58146722538170800CF4451 /* PageFaultHandler.nasm */, + ); + path = X64; + sourceTree = ""; + }; + A58146732538170800CF4451 /* Common */ = { + isa = PBXGroup; + children = ( + A58146742538170800CF4451 /* CapsuleCoalesce.c */, + A58146752538170800CF4451 /* CommonHeader.h */, + ); + path = Common; + sourceTree = ""; + }; + A581467A2538170800CF4451 /* ResetSystemRuntimeDxe */ = { + isa = PBXGroup; + children = ( + A581467B2538170800CF4451 /* ResetSystem.h */, + A581467C2538170800CF4451 /* ResetSystemRuntimeDxeExtra.uni */, + A581467D2538170800CF4451 /* ResetSystemRuntimeDxe.uni */, + A581467E2538170800CF4451 /* ResetSystemRuntimeDxe.inf */, + A581467F2538170800CF4451 /* ResetSystem.c */, + ); + path = ResetSystemRuntimeDxe; + sourceTree = ""; + }; + A58146802538170800CF4451 /* PrintDxe */ = { + isa = PBXGroup; + children = ( + A58146812538170800CF4451 /* Print.c */, + A58146822538170800CF4451 /* PrintDxeExtra.uni */, + A58146832538170800CF4451 /* PrintDxe.uni */, + A58146842538170800CF4451 /* PrintDxe.inf */, + ); + path = PrintDxe; + sourceTree = ""; + }; + A58146852538170800CF4451 /* SerialDxe */ = { + isa = PBXGroup; + children = ( + A58146862538170800CF4451 /* SerialIo.c */, + A58146872538170800CF4451 /* SerialDxe.inf */, + A58146882538170800CF4451 /* SerialDxe.uni */, + A58146892538170800CF4451 /* SerialDxeExtra.uni */, + ); + path = SerialDxe; + sourceTree = ""; + }; + A581468A2538170800CF4451 /* LockBox */ = { + isa = PBXGroup; + children = ( + A581468B2538170800CF4451 /* SmmLockBox */, + ); + path = LockBox; + sourceTree = ""; + }; + A581468B2538170800CF4451 /* SmmLockBox */ = { + isa = PBXGroup; + children = ( + A581468C2538170800CF4451 /* SmmLockBoxExtra.uni */, + A581468D2538170800CF4451 /* SmmLockBox.inf */, + A581468E2538170800CF4451 /* SmmLockBox.uni */, + A581468F2538170800CF4451 /* SmmLockBox.c */, + ); + path = SmmLockBox; + sourceTree = ""; + }; + A58146902538170800CF4451 /* FileExplorerDxe */ = { + isa = PBXGroup; + children = ( + A58146912538170800CF4451 /* FileExplorerDxe.c */, + A58146922538170800CF4451 /* FileExplorerDxe.uni */, + A58146932538170800CF4451 /* FileExplorerDxeExtra.uni */, + A58146942538170800CF4451 /* FileExplorerDxe.inf */, + ); + path = FileExplorerDxe; + sourceTree = ""; + }; + A58146952538170800CF4451 /* ReportStatusCodeRouter */ = { + isa = PBXGroup; + children = ( + A58146962538170800CF4451 /* RuntimeDxe */, + A581469C2538170800CF4451 /* Pei */, + A58146A22538170800CF4451 /* Smm */, + ); + path = ReportStatusCodeRouter; + sourceTree = ""; + }; + A58146962538170800CF4451 /* RuntimeDxe */ = { + isa = PBXGroup; + children = ( + A58146972538170800CF4451 /* ReportStatusCodeRouterRuntimeDxe.c */, + A58146982538170800CF4451 /* ReportStatusCodeRouterRuntimeDxeExtra.uni */, + A58146992538170800CF4451 /* ReportStatusCodeRouterRuntimeDxe.uni */, + A581469A2538170800CF4451 /* ReportStatusCodeRouterRuntimeDxe.inf */, + A581469B2538170800CF4451 /* ReportStatusCodeRouterRuntimeDxe.h */, + ); + path = RuntimeDxe; + sourceTree = ""; + }; + A581469C2538170800CF4451 /* Pei */ = { + isa = PBXGroup; + children = ( + A581469D2538170800CF4451 /* ReportStatusCodeRouterPei.inf */, + A581469E2538170800CF4451 /* ReportStatusCodeRouterPei.uni */, + A581469F2538170800CF4451 /* ReportStatusCodeRouterPeiExtra.uni */, + A58146A02538170800CF4451 /* ReportStatusCodeRouterPei.h */, + A58146A12538170800CF4451 /* ReportStatusCodeRouterPei.c */, + ); + path = Pei; + sourceTree = ""; + }; + A58146A22538170800CF4451 /* Smm */ = { + isa = PBXGroup; + children = ( + A58146A32538170800CF4451 /* ReportStatusCodeRouterSmm.c */, + A58146A42538170800CF4451 /* ReportStatusCodeRouterSmmExtra.uni */, + A58146A52538170800CF4451 /* ReportStatusCodeRouterSmm.uni */, + A58146A62538170800CF4451 /* ReportStatusCodeRouterSmm.h */, + A58146A72538170800CF4451 /* ReportStatusCodeRouterSmm.inf */, + ); + path = Smm; + sourceTree = ""; + }; + A58146A82538170800CF4451 /* CapsuleRuntimeDxe */ = { + isa = PBXGroup; + children = ( + A58146A92538170800CF4451 /* CapsuleCache.c */, + A58146AA2538170800CF4451 /* CapsuleCacheNull.c */, + A58146AB2538170800CF4451 /* X64 */, + A58146AD2538170800CF4451 /* CapsuleService.h */, + A58146AE2538170800CF4451 /* CapsuleRuntimeDxe.uni */, + A58146AF2538170800CF4451 /* CapsuleRuntimeDxe.inf */, + A58146B02538170800CF4451 /* CapsuleRuntimeDxeExtra.uni */, + A58146B12538170800CF4451 /* CapsuleReset.c */, + A58146B22538170800CF4451 /* SaveLongModeContext.c */, + A58146B32538170800CF4451 /* Arm */, + A58146B52538170800CF4451 /* CapsuleService.c */, + ); + path = CapsuleRuntimeDxe; + sourceTree = ""; + }; + A58146AB2538170800CF4451 /* X64 */ = { + isa = PBXGroup; + children = ( + A58146AC2538170800CF4451 /* SaveLongModeContext.c */, + ); + path = X64; + sourceTree = ""; + }; + A58146B32538170800CF4451 /* Arm */ = { + isa = PBXGroup; + children = ( + A58146B42538170800CF4451 /* CapsuleReset.c */, + ); + path = Arm; + sourceTree = ""; + }; + A58146B62538170800CF4451 /* SetupBrowserDxe */ = { + isa = PBXGroup; + children = ( + A58146B72538170800CF4451 /* Expression.c */, + A58146B82538170800CF4451 /* SetupBrowserExtra.uni */, + A58146B92538170800CF4451 /* Setup.h */, + A58146BA2538170800CF4451 /* Presentation.c */, + A58146BB2538170800CF4451 /* SetupBrowserDxe.inf */, + A58146BC2538170800CF4451 /* Setup.c */, + A58146BD2538170800CF4451 /* Expression.h */, + A58146BE2538170800CF4451 /* IfrParse.c */, + A58146BF2538170800CF4451 /* SetupBrowser.uni */, + ); + path = SetupBrowserDxe; + sourceTree = ""; + }; + A58146C02538170800CF4451 /* Console */ = { + isa = PBXGroup; + children = ( + A58146C12538170800CF4451 /* GraphicsConsoleDxe */, + A58146C92538170800CF4451 /* TerminalDxe */, + A58146D42538170800CF4451 /* ConPlatformDxe */, + A58146DB2538170800CF4451 /* ConSplitterDxe */, + A58146E32538170800CF4451 /* GraphicsOutputDxe */, + ); + path = Console; + sourceTree = ""; + }; + A58146C12538170800CF4451 /* GraphicsConsoleDxe */ = { + isa = PBXGroup; + children = ( + A58146C22538170800CF4451 /* GraphicsConsoleDxeExtra.uni */, + A58146C32538170800CF4451 /* GraphicsConsole.h */, + A58146C42538170800CF4451 /* ComponentName.c */, + A58146C52538170800CF4451 /* GraphicsConsoleDxe.inf */, + A58146C62538170800CF4451 /* GraphicsConsoleDxe.uni */, + A58146C72538170800CF4451 /* LaffStd.c */, + A58146C82538170800CF4451 /* GraphicsConsole.c */, + ); + path = GraphicsConsoleDxe; + sourceTree = ""; + }; + A58146C92538170800CF4451 /* TerminalDxe */ = { + isa = PBXGroup; + children = ( + A58146CA2538170800CF4451 /* TerminalDxeExtra.uni */, + A58146CB2538170800CF4451 /* TerminalDxe.uni */, + A58146CC2538170800CF4451 /* TerminalConOut.c */, + A58146CD2538170800CF4451 /* TerminalConIn.c */, + A58146CE2538170800CF4451 /* TerminalDxe.inf */, + A58146CF2538170800CF4451 /* Terminal.c */, + A58146D02538170800CF4451 /* Vtutf8.c */, + A58146D12538170800CF4451 /* ComponentName.c */, + A58146D22538170800CF4451 /* Terminal.h */, + A58146D32538170800CF4451 /* Ansi.c */, + ); + path = TerminalDxe; + sourceTree = ""; + }; + A58146D42538170800CF4451 /* ConPlatformDxe */ = { + isa = PBXGroup; + children = ( + A58146D52538170800CF4451 /* ConPlatformDxeExtra.uni */, + A58146D62538170800CF4451 /* ConPlatform.c */, + A58146D72538170800CF4451 /* ConPlatformDxe.inf */, + A58146D82538170800CF4451 /* ComponentName.c */, + A58146D92538170800CF4451 /* ConPlatformDxe.uni */, + A58146DA2538170800CF4451 /* ConPlatform.h */, + ); + path = ConPlatformDxe; + sourceTree = ""; + }; + A58146DB2538170800CF4451 /* ConSplitterDxe */ = { + isa = PBXGroup; + children = ( + A58146DC2538170800CF4451 /* ConSplitter.h */, + A58146DD2538170800CF4451 /* ConSplitterGraphics.c */, + A58146DE2538170800CF4451 /* ComponentName.c */, + A58146DF2538170800CF4451 /* ConSplitter.c */, + A58146E02538170800CF4451 /* ConSplitterDxe.uni */, + A58146E12538170800CF4451 /* ConSplitterDxeExtra.uni */, + A58146E22538170800CF4451 /* ConSplitterDxe.inf */, + ); + path = ConSplitterDxe; + sourceTree = ""; + }; + A58146E32538170800CF4451 /* GraphicsOutputDxe */ = { + isa = PBXGroup; + children = ( + A58146E42538170800CF4451 /* GraphicsOutput.h */, + A58146E52538170800CF4451 /* ComponentName.c */, + A58146E62538170800CF4451 /* GraphicsOutputDxe.inf */, + A58146E72538170800CF4451 /* GraphicsOutput.c */, + ); + path = GraphicsOutputDxe; + sourceTree = ""; + }; + A58146E82538170800CF4451 /* Metronome */ = { + isa = PBXGroup; + children = ( + A58146E92538170800CF4451 /* Metronome.inf */, + A58146EA2538170800CF4451 /* Metronome.c */, + A58146EB2538170800CF4451 /* Metronome.uni */, + A58146EC2538170800CF4451 /* MetronomeExtra.uni */, + A58146ED2538170800CF4451 /* Metronome.h */, + ); + path = Metronome; + sourceTree = ""; + }; + A58146EE2538170800CF4451 /* Include */ = { + isa = PBXGroup; + children = ( + A58146EF2538170800CF4451 /* Library */, + A58147142538170800CF4451 /* Protocol */, + A581473D2538170800CF4451 /* Guid */, + A58147762538170800CF4451 /* Ppi */, + ); + path = Include; + sourceTree = ""; + }; + A58146EF2538170800CF4451 /* Library */ = { + isa = PBXGroup; + children = ( + A58146F02538170800CF4451 /* FmpAuthenticationLib.h */, + A58146F12538170800CF4451 /* PlatformHookLib.h */, + A58146F22538170800CF4451 /* UefiBootManagerLib.h */, + A58146F32538170800CF4451 /* HttpLib.h */, + A58146F42538170800CF4451 /* TpmMeasurementLib.h */, + A58146F52538170800CF4451 /* PciHostBridgeLib.h */, + A58146F62538170800CF4451 /* SecurityManagementLib.h */, + A58146F72538170800CF4451 /* DisplayUpdateProgressLib.h */, + A58146F82538170800CF4451 /* IpmiLib.h */, + A58146F92538170800CF4451 /* DebugAgentLib.h */, + A58146FA2538170800CF4451 /* UefiHiiServicesLib.h */, + A58146FB2538170800CF4451 /* PlatformBootManagerLib.h */, + A58146FC2538170800CF4451 /* UdpIoLib.h */, + A58146FD2538170800CF4451 /* MemoryProfileLib.h */, + A58146FE2538170800CF4451 /* SmmCorePlatformHookLib.h */, + A58146FF2538170800CF4451 /* CustomizedDisplayLib.h */, + A58147002538170800CF4451 /* ResetUtilityLib.h */, + A58147012538170800CF4451 /* SortLib.h */, + A58147022538170800CF4451 /* FrameBufferBltLib.h */, + A58147032538170800CF4451 /* NetLib.h */, + A58147042538170800CF4451 /* OemHookStatusCodeLib.h */, + A58147052538170800CF4451 /* BmpSupportLib.h */, + A58147062538170800CF4451 /* LockBoxLib.h */, + A58147072538170800CF4451 /* ResetSystemLib.h */, + A58147082538170800CF4451 /* VarCheckLib.h */, + A58147092538170800CF4451 /* RecoveryLib.h */, + A581470A2538170800CF4451 /* AuthVariableLib.h */, + A581470B2538170800CF4451 /* HiiLib.h */, + A581470C2538170800CF4451 /* NonDiscoverableDeviceRegistrationLib.h */, + A581470D2538170800CF4451 /* TcpIoLib.h */, + A581470E2538170800CF4451 /* BootLogoLib.h */, + A581470F2538170800CF4451 /* PlatformVarCleanupLib.h */, + A58147102538170800CF4451 /* CpuExceptionHandlerLib.h */, + A58147112538170800CF4451 /* CapsuleLib.h */, + A58147122538170800CF4451 /* S3Lib.h */, + A58147132538170800CF4451 /* FileExplorerLib.h */, + ); + path = Library; + sourceTree = ""; + }; + A58147142538170800CF4451 /* Protocol */ = { + isa = PBXGroup; + children = ( + A58147152538170800CF4451 /* Ps2Policy.h */, + A58147162538170800CF4451 /* FileExplorer.h */, + A58147172538170800CF4451 /* UfsHostControllerPlatform.h */, + A58147182538170800CF4451 /* EsrtManagement.h */, + A58147192538170800CF4451 /* NonDiscoverableDevice.h */, + A581471A2538170800CF4451 /* PlatformSpecificResetFilter.h */, + A581471B2538170800CF4451 /* IpmiProtocol.h */, + A581471C2538170800CF4451 /* SwapAddressRange.h */, + A581471D2538170800CF4451 /* DebuggerConfiguration.h */, + A581471E2538170800CF4451 /* IoMmu.h */, + A581471F2538170800CF4451 /* PlatformSpecificResetHandler.h */, + A58147202538170800CF4451 /* LoadPe32Image.h */, + A58147212538170800CF4451 /* VarCheck.h */, + A58147222538170800CF4451 /* FirmwareManagementProgress.h */, + A58147232538170800CF4451 /* AtaAtapiPolicy.h */, + A58147242538170800CF4451 /* SmmMemoryAttribute.h */, + A58147252538170800CF4451 /* SdMmcOverride.h */, + A58147262538170800CF4451 /* FormBrowserEx2.h */, + A58147272538170800CF4451 /* SmmSwapAddressRange.h */, + A58147282538170800CF4451 /* UfsHostController.h */, + A58147292538170800CF4451 /* SmmFirmwareVolumeBlock.h */, + A581472A2538170800CF4451 /* EbcVmTest.h */, + A581472B2538170800CF4451 /* PlatformLogo.h */, + A581472C2538170800CF4451 /* PeCoffImageEmulator.h */, + A581472D2538170800CF4451 /* Print2.h */, + A581472E2538170800CF4451 /* BootLogo.h */, + A581472F2538170800CF4451 /* SmmReadyToBoot.h */, + A58147302538170800CF4451 /* SmmLegacyBoot.h */, + A58147312538170800CF4451 /* SmmVariable.h */, + A58147322538170800CF4451 /* SmmFaultTolerantWrite.h */, + A58147332538170800CF4451 /* LockBox.h */, + A58147342538170800CF4451 /* GenericMemoryTest.h */, + A58147352538170800CF4451 /* DisplayProtocol.h */, + A58147362538170800CF4451 /* BootLogo2.h */, + A58147372538170800CF4451 /* FormBrowserEx.h */, + A58147382538170800CF4451 /* VariableLock.h */, + A58147392538170800CF4451 /* EbcSimpleDebugger.h */, + A581473A2538170800CF4451 /* SmmVarCheck.h */, + A581473B2538170800CF4451 /* SmmExitBootServices.h */, + A581473C2538170800CF4451 /* FaultTolerantWrite.h */, + ); + path = Protocol; + sourceTree = ""; + }; + A581473D2538170800CF4451 /* Guid */ = { + isa = PBXGroup; + children = ( + A581473E2538170800CF4451 /* EndOfS3Resume.h */, + A581473F2538170800CF4451 /* MdeModulePkgTokenSpace.h */, + A58147402538170800CF4451 /* LoadModuleAtFixedAddress.h */, + A58147412538170800CF4451 /* SystemNvDataGuid.h */, + A58147422538170800CF4451 /* ExtendedFirmwarePerformance.h */, + A58147432538170800CF4451 /* MdeModuleHii.h */, + A58147442538170800CF4451 /* NonDiscoverableDevice.h */, + A58147452538170800CF4451 /* PlatformHasAcpi.h */, + A58147462538170800CF4451 /* SmmVariableCommon.h */, + A58147472538170800CF4451 /* MemoryProfile.h */, + A58147482538170800CF4451 /* RamDiskHii.h */, + A58147492538170800CF4451 /* PcdDataBaseSignatureGuid.h */, + A581474A2538170800CF4451 /* VariableIndexTable.h */, + A581474B2538170800CF4451 /* ConsoleInDevice.h */, + A581474C2538170800CF4451 /* SerialPortLibVendor.h */, + A581474D2538170800CF4451 /* RecoveryDevice.h */, + A581474E2538170800CF4451 /* IdleLoopEvent.h */, + A581474F2538170800CF4451 /* Performance.h */, + A58147502538170800CF4451 /* UsbKeyBoardLayout.h */, + A58147512538170800CF4451 /* ZeroGuid.h */, + A58147522538170800CF4451 /* PcdDataBaseHobGuid.h */, + A58147532538170800CF4451 /* LzmaDecompress.h */, + A58147542538170800CF4451 /* Ip4Config2Hii.h */, + A58147552538170800CF4451 /* PiSmmMemoryAttributesTable.h */, + A58147562538170800CF4451 /* VarErrorFlag.h */, + A58147572538170800CF4451 /* ConsoleOutDevice.h */, + A58147582538170800CF4451 /* SmmLockBox.h */, + A58147592538170800CF4451 /* BootScriptExecutorVariable.h */, + A581475A2538170800CF4451 /* MtcVendor.h */, + A581475B2538170800CF4451 /* DriverSampleHii.h */, + A581475C2538170800CF4451 /* StandardErrorDevice.h */, + A581475D2538170800CF4451 /* MemoryStatusCodeRecord.h */, + A581475E2538170800CF4451 /* S3SmmInitDone.h */, + A581475F2538170800CF4451 /* StatusCodeDataTypeDebug.h */, + A58147602538170800CF4451 /* EventExitBootServiceFailed.h */, + A58147612538170800CF4451 /* S3StorageDeviceInitList.h */, + A58147622538170800CF4451 /* CapsuleVendor.h */, + A58147632538170800CF4451 /* ConnectConInEvent.h */, + A58147642538170800CF4451 /* VlanConfigHii.h */, + A58147652538170800CF4451 /* SmiHandlerProfile.h */, + A58147662538170800CF4451 /* PerformanceMeasurement.h */, + A58147672538170800CF4451 /* HiiBootMaintenanceFormset.h */, + A58147682538170800CF4451 /* PlatDriOverrideHii.h */, + A58147692538170800CF4451 /* DebugMask.h */, + A581476A2538170800CF4451 /* VariableFormat.h */, + A581476B2538170800CF4451 /* AcpiS3Context.h */, + A581476C2538170800CF4451 /* StatusCodeDataTypeVariable.h */, + A581476D2538170800CF4451 /* Ip4IScsiConfigHii.h */, + A581476E2538170800CF4451 /* Crc32GuidedSectionExtraction.h */, + A581476F2538170800CF4451 /* TtyTerm.h */, + A58147702538170800CF4451 /* PiSmmCommunicationRegionTable.h */, + A58147712538170800CF4451 /* StatusCodeCallbackGuid.h */, + A58147722538170800CF4451 /* HiiResourceSampleHii.h */, + A58147732538170800CF4451 /* MemoryTypeInformation.h */, + A58147742538170800CF4451 /* FirmwarePerformance.h */, + A58147752538170800CF4451 /* FaultTolerantWrite.h */, + ); + path = Guid; + sourceTree = ""; + }; + A58147762538170800CF4451 /* Ppi */ = { + isa = PBXGroup; + children = ( + A58147772538170800CF4451 /* SerialPortPei.h */, + A58147782538170800CF4451 /* PlatformSpecificResetFilter.h */, + A58147792538170800CF4451 /* Debug.h */, + A581477A2538170800CF4451 /* SdMmcHostController.h */, + A581477B2538170800CF4451 /* IoMmu.h */, + A581477C2538170800CF4451 /* Usb2HostController.h */, + A581477D2538170800CF4451 /* AtaController.h */, + A581477E2538170800CF4451 /* AtaAhciController.h */, + A581477F2538170800CF4451 /* PlatformSpecificResetHandler.h */, + A58147802538170800CF4451 /* AtaPassThru.h */, + A58147812538170800CF4451 /* IpmiPpi.h */, + A58147822538170800CF4451 /* UfsHostController.h */, + A58147832538170800CF4451 /* PlatformSpecificResetNotification.h */, + A58147842538170800CF4451 /* StorageSecurityCommand.h */, + A58147852538170800CF4451 /* SmmControl.h */, + A58147862538170800CF4451 /* SmmCommunication.h */, + A58147872538170800CF4451 /* NvmExpressPassThru.h */, + A58147882538170800CF4451 /* UsbHostController.h */, + A58147892538170800CF4451 /* UsbIo.h */, + A581478A2538170800CF4451 /* NvmExpressHostController.h */, + A581478B2538170800CF4451 /* UsbController.h */, + A581478C2538170800CF4451 /* SmmAccess.h */, + A581478D2538170800CF4451 /* CapsuleOnDisk.h */, + A581478E2538170800CF4451 /* PostBootScriptTable.h */, + A581478F2538170800CF4451 /* SecPerformance.h */, + ); + path = Ppi; + sourceTree = ""; + }; + A58147912538170800CF4451 /* Bus */ = { + isa = PBXGroup; + children = ( + A58147922538170800CF4451 /* Sd */, + A58147BF2538170800CF4451 /* Pci */, + A58148972538170800CF4451 /* Isa */, + A58148B22538170800CF4451 /* Scsi */, + A58148C12538170800CF4451 /* Ufs */, + A58148D72538170800CF4451 /* I2c */, + A58148E62538170800CF4451 /* Usb */, + A58149362538170900CF4451 /* Ata */, + ); + path = Bus; + sourceTree = ""; + }; + A58147922538170800CF4451 /* Sd */ = { + isa = PBXGroup; + children = ( + A58147932538170800CF4451 /* SdBlockIoPei */, + A581479E2538170800CF4451 /* EmmcBlockIoPei */, + A58147A92538170800CF4451 /* SdDxe */, + A58147B42538170800CF4451 /* EmmcDxe */, + ); + path = Sd; + sourceTree = ""; + }; + A58147932538170800CF4451 /* SdBlockIoPei */ = { + isa = PBXGroup; + children = ( + A58147942538170800CF4451 /* SdBlockIoPei.c */, + A58147952538170800CF4451 /* SdHcMem.c */, + A58147962538170800CF4451 /* SdBlockIoPeiExtra.uni */, + A58147972538170800CF4451 /* SdHci.h */, + A58147982538170800CF4451 /* SdBlockIoPei.uni */, + A58147992538170800CF4451 /* SdBlockIoPei.inf */, + A581479A2538170800CF4451 /* SdHcMem.h */, + A581479B2538170800CF4451 /* SdBlockIoPei.h */, + A581479C2538170800CF4451 /* DmaMem.c */, + A581479D2538170800CF4451 /* SdHci.c */, + ); + path = SdBlockIoPei; + sourceTree = ""; + }; + A581479E2538170800CF4451 /* EmmcBlockIoPei */ = { + isa = PBXGroup; + children = ( + A581479F2538170800CF4451 /* EmmcHcMem.c */, + A58147A02538170800CF4451 /* EmmcHci.c */, + A58147A12538170800CF4451 /* EmmcBlockIoPei.c */, + A58147A22538170800CF4451 /* EmmcBlockIoPeiExtra.uni */, + A58147A32538170800CF4451 /* EmmcHcMem.h */, + A58147A42538170800CF4451 /* EmmcHci.h */, + A58147A52538170800CF4451 /* EmmcBlockIoPei.h */, + A58147A62538170800CF4451 /* DmaMem.c */, + A58147A72538170800CF4451 /* EmmcBlockIoPei.uni */, + A58147A82538170800CF4451 /* EmmcBlockIoPei.inf */, + ); + path = EmmcBlockIoPei; + sourceTree = ""; + }; + A58147A92538170800CF4451 /* SdDxe */ = { + isa = PBXGroup; + children = ( + A58147AA2538170800CF4451 /* SdBlockIo.c */, + A58147AB2538170800CF4451 /* SdDxe.uni */, + A58147AC2538170800CF4451 /* SdDxe.c */, + A58147AD2538170800CF4451 /* SdDxe.inf */, + A58147AE2538170800CF4451 /* ComponentName.c */, + A58147AF2538170800CF4451 /* SdDiskInfo.h */, + A58147B02538170800CF4451 /* SdBlockIo.h */, + A58147B12538170800CF4451 /* SdDxe.h */, + A58147B22538170800CF4451 /* SdDxeExtra.uni */, + A58147B32538170800CF4451 /* SdDiskInfo.c */, + ); + path = SdDxe; + sourceTree = ""; + }; + A58147B42538170800CF4451 /* EmmcDxe */ = { + isa = PBXGroup; + children = ( + A58147B52538170800CF4451 /* EmmcDxe.h */, + A58147B62538170800CF4451 /* EmmcDiskInfo.h */, + A58147B72538170800CF4451 /* EmmcDxe.uni */, + A58147B82538170800CF4451 /* EmmcBlockIo.c */, + A58147B92538170800CF4451 /* ComponentName.c */, + A58147BA2538170800CF4451 /* EmmcDxe.inf */, + A58147BB2538170800CF4451 /* EmmcDxe.c */, + A58147BC2538170800CF4451 /* EmmcDiskInfo.c */, + A58147BD2538170800CF4451 /* EmmcBlockIo.h */, + A58147BE2538170800CF4451 /* EmmcDxeExtra.uni */, + ); + path = EmmcDxe; + sourceTree = ""; + }; + A58147BF2538170800CF4451 /* Pci */ = { + isa = PBXGroup; + children = ( + A58147C02538170800CF4451 /* IdeBusPei */, + A58147C62538170800CF4451 /* SdMmcPciHcDxe */, + A58147D12538170800CF4451 /* IncompatiblePciDeviceSupportDxe */, + A58147D62538170800CF4451 /* PciBusDxe */, + A58147F62538170800CF4451 /* XhciPei */, + A58148022538170800CF4451 /* EhciPei */, + A58148102538170800CF4451 /* UfsPciHcDxe */, + A58148172538170800CF4451 /* UhciDxe */, + A58148292538170800CF4451 /* NvmExpressPei */, + A581483A2538170800CF4451 /* SdMmcPciHcPei */, + A58148402538170800CF4451 /* SataControllerDxe */, + A58148472538170800CF4451 /* PciSioSerialDxe */, + A581484F2538170800CF4451 /* PciHostBridgeDxe */, + A58148562538170800CF4451 /* XhciDxe */, + A58148642538170800CF4451 /* UhciPei */, + A581486B2538170800CF4451 /* NvmExpressDxe */, + A58148792538170800CF4451 /* NonDiscoverablePciDeviceDxe */, + A581487F2538170800CF4451 /* EhciDxe */, + A58148912538170800CF4451 /* UfsPciHcPei */, + ); + path = Pci; + sourceTree = ""; + }; + A58147C02538170800CF4451 /* IdeBusPei */ = { + isa = PBXGroup; + children = ( + A58147C12538170800CF4451 /* AtapiPeim.h */, + A58147C22538170800CF4451 /* IdeBusPei.uni */, + A58147C32538170800CF4451 /* IdeBusPeiExtra.uni */, + A58147C42538170800CF4451 /* IdeBusPei.inf */, + A58147C52538170800CF4451 /* AtapiPeim.c */, + ); + path = IdeBusPei; + sourceTree = ""; + }; + A58147C62538170800CF4451 /* SdMmcPciHcDxe */ = { + isa = PBXGroup; + children = ( + A58147C72538170800CF4451 /* SdMmcPciHci.c */, + A58147C82538170800CF4451 /* SdMmcPciHcDxeExtra.uni */, + A58147C92538170800CF4451 /* SdDevice.c */, + A58147CA2538170800CF4451 /* ComponentName.c */, + A58147CB2538170800CF4451 /* SdMmcPciHcDxe.h */, + A58147CC2538170800CF4451 /* SdMmcPciHci.h */, + A58147CD2538170800CF4451 /* EmmcDevice.c */, + A58147CE2538170800CF4451 /* SdMmcPciHcDxe.inf */, + A58147CF2538170800CF4451 /* SdMmcPciHcDxe.uni */, + A58147D02538170800CF4451 /* SdMmcPciHcDxe.c */, + ); + path = SdMmcPciHcDxe; + sourceTree = ""; + }; + A58147D12538170800CF4451 /* IncompatiblePciDeviceSupportDxe */ = { + isa = PBXGroup; + children = ( + A58147D22538170800CF4451 /* IncompatiblePciDeviceSupportDxe.inf */, + A58147D32538170800CF4451 /* IncompatiblePciDeviceSupportExtra.uni */, + A58147D42538170800CF4451 /* IncompatiblePciDeviceSupport.uni */, + A58147D52538170800CF4451 /* IncompatiblePciDeviceSupport.c */, + ); + path = IncompatiblePciDeviceSupportDxe; + sourceTree = ""; + }; + A58147D62538170800CF4451 /* PciBusDxe */ = { + isa = PBXGroup; + children = ( + A58147D72538170800CF4451 /* PciEnumerator.c */, + A58147D82538170800CF4451 /* PciDriverOverride.c */, + A58147D92538170800CF4451 /* PciResourceSupport.c */, + A58147DA2538170800CF4451 /* PciDeviceSupport.c */, + A58147DB2538170800CF4451 /* PciIo.c */, + A58147DC2538170800CF4451 /* PciCommand.c */, + A58147DD2538170800CF4451 /* PciHotPlugSupport.c */, + A58147DE2538170800CF4451 /* PciOptionRomSupport.h */, + A58147DF2538170800CF4451 /* PciRomTable.h */, + A58147E02538170800CF4451 /* PciEnumeratorSupport.c */, + A58147E12538170800CF4451 /* PciLib.h */, + A58147E22538170800CF4451 /* PciBusDxeExtra.uni */, + A58147E32538170800CF4451 /* ComponentName.c */, + A58147E42538170800CF4451 /* PciBus.c */, + A58147E52538170800CF4451 /* PciPowerManagement.c */, + A58147E62538170800CF4451 /* PciResourceSupport.h */, + A58147E72538170800CF4451 /* PciDriverOverride.h */, + A58147E82538170800CF4451 /* PciEnumerator.h */, + A58147E92538170800CF4451 /* PciCommand.h */, + A58147EA2538170800CF4451 /* PciIo.h */, + A58147EB2538170800CF4451 /* PciDeviceSupport.h */, + A58147EC2538170800CF4451 /* PciRomTable.c */, + A58147ED2538170800CF4451 /* PciBusDxe.inf */, + A58147EE2538170800CF4451 /* PciOptionRomSupport.c */, + A58147EF2538170800CF4451 /* PciHotPlugSupport.h */, + A58147F02538170800CF4451 /* PciPowerManagement.h */, + A58147F12538170800CF4451 /* PciBus.h */, + A58147F22538170800CF4451 /* ComponentName.h */, + A58147F32538170800CF4451 /* PciBusDxe.uni */, + A58147F42538170800CF4451 /* PciEnumeratorSupport.h */, + A58147F52538170800CF4451 /* PciLib.c */, + ); + path = PciBusDxe; + sourceTree = ""; + }; + A58147F62538170800CF4451 /* XhciPei */ = { + isa = PBXGroup; + children = ( + A58147F72538170800CF4451 /* XhciSched.h */, + A58147F82538170800CF4451 /* XhciPei.inf */, + A58147F92538170800CF4451 /* XhcPeim.h */, + A58147FA2538170800CF4451 /* XhciPei.uni */, + A58147FB2538170800CF4451 /* UsbHcMem.h */, + A58147FC2538170800CF4451 /* XhciSched.c */, + A58147FD2538170800CF4451 /* DmaMem.c */, + A58147FE2538170800CF4451 /* XhciPeiExtra.uni */, + A58147FF2538170800CF4451 /* UsbHcMem.c */, + A58148002538170800CF4451 /* XhciReg.h */, + A58148012538170800CF4451 /* XhcPeim.c */, + ); + path = XhciPei; + sourceTree = ""; + }; + A58148022538170800CF4451 /* EhciPei */ = { + isa = PBXGroup; + children = ( + A58148032538170800CF4451 /* EhciPeiExtra.uni */, + A58148042538170800CF4451 /* EhciUrb.h */, + A58148052538170800CF4451 /* EhcPeim.h */, + A58148062538170800CF4451 /* UsbHcMem.h */, + A58148072538170800CF4451 /* EhciSched.c */, + A58148082538170800CF4451 /* EhciPei.uni */, + A58148092538170800CF4451 /* EhciPei.inf */, + A581480A2538170800CF4451 /* DmaMem.c */, + A581480B2538170800CF4451 /* EhciReg.h */, + A581480C2538170800CF4451 /* EhcPeim.c */, + A581480D2538170800CF4451 /* EhciUrb.c */, + A581480E2538170800CF4451 /* EhciSched.h */, + A581480F2538170800CF4451 /* UsbHcMem.c */, + ); + path = EhciPei; + sourceTree = ""; + }; + A58148102538170800CF4451 /* UfsPciHcDxe */ = { + isa = PBXGroup; + children = ( + A58148112538170800CF4451 /* UfsPciHcDxeExtra.uni */, + A58148122538170800CF4451 /* ComponentName.c */, + A58148132538170800CF4451 /* UfsPciHcDxe.c */, + A58148142538170800CF4451 /* UfsPciHcDxe.uni */, + A58148152538170800CF4451 /* UfsPciHcDxe.h */, + A58148162538170800CF4451 /* UfsPciHcDxe.inf */, + ); + path = UfsPciHcDxe; + sourceTree = ""; + }; + A58148172538170800CF4451 /* UhciDxe */ = { + isa = PBXGroup; + children = ( + A58148182538170800CF4451 /* UhciSched.h */, + A58148192538170800CF4451 /* UhciReg.h */, + A581481A2538170800CF4451 /* UhciDebug.c */, + A581481B2538170800CF4451 /* UhciQueue.h */, + A581481C2538170800CF4451 /* Uhci.c */, + A581481D2538170800CF4451 /* UhciDxeExtra.uni */, + A581481E2538170800CF4451 /* ComponentName.c */, + A581481F2538170800CF4451 /* UsbHcMem.h */, + A58148202538170800CF4451 /* UhciSched.c */, + A58148212538170800CF4451 /* UhciDxe.inf */, + A58148222538170800CF4451 /* UhciDebug.h */, + A58148232538170800CF4451 /* UhciReg.c */, + A58148242538170800CF4451 /* UhciDxe.uni */, + A58148252538170800CF4451 /* UhciQueue.c */, + A58148262538170800CF4451 /* UsbHcMem.c */, + A58148272538170800CF4451 /* Uhci.h */, + A58148282538170800CF4451 /* ComponentName.h */, + ); + path = UhciDxe; + sourceTree = ""; + }; + A58148292538170800CF4451 /* NvmExpressPei */ = { + isa = PBXGroup; + children = ( + A581482A2538170800CF4451 /* DevicePath.c */, + A581482B2538170800CF4451 /* NvmExpressPeiHci.h */, + A581482C2538170800CF4451 /* NvmExpressPeiStorageSecurity.h */, + A581482D2538170800CF4451 /* NvmExpressPei.c */, + A581482E2538170800CF4451 /* NvmExpressPeiBlockIo.c */, + A581482F2538170800CF4451 /* NvmExpressPeiExtra.uni */, + A58148302538170800CF4451 /* NvmExpressPeiPassThru.h */, + A58148312538170800CF4451 /* NvmExpressPeiS3.c */, + A58148322538170800CF4451 /* NvmExpressPeiStorageSecurity.c */, + A58148332538170800CF4451 /* NvmExpressPei.h */, + A58148342538170800CF4451 /* NvmExpressPei.inf */, + A58148352538170800CF4451 /* NvmExpressPeiHci.c */, + A58148362538170800CF4451 /* NvmExpressPei.uni */, + A58148372538170800CF4451 /* NvmExpressPeiBlockIo.h */, + A58148382538170800CF4451 /* DmaMem.c */, + A58148392538170800CF4451 /* NvmExpressPeiPassThru.c */, + ); + path = NvmExpressPei; + sourceTree = ""; + }; + A581483A2538170800CF4451 /* SdMmcPciHcPei */ = { + isa = PBXGroup; + children = ( + A581483B2538170800CF4451 /* SdMmcPciHcPei.inf */, + A581483C2538170800CF4451 /* SdMmcPciHcPei.c */, + A581483D2538170800CF4451 /* SdMmcPciHcPei.uni */, + A581483E2538170800CF4451 /* SdMmcPciHcPeiExtra.uni */, + A581483F2538170800CF4451 /* SdMmcPciHcPei.h */, + ); + path = SdMmcPciHcPei; + sourceTree = ""; + }; + A58148402538170800CF4451 /* SataControllerDxe */ = { + isa = PBXGroup; + children = ( + A58148412538170800CF4451 /* SataController.c */, + A58148422538170800CF4451 /* SataControllerDxe.uni */, + A58148432538170800CF4451 /* SataControllerDxeExtra.uni */, + A58148442538170800CF4451 /* ComponentName.c */, + A58148452538170800CF4451 /* SataControllerDxe.inf */, + A58148462538170800CF4451 /* SataController.h */, + ); + path = SataControllerDxe; + sourceTree = ""; + }; + A58148472538170800CF4451 /* PciSioSerialDxe */ = { + isa = PBXGroup; + children = ( + A58148482538170800CF4451 /* PciSioSerialDxe.inf */, + A58148492538170800CF4451 /* Serial.c */, + A581484A2538170800CF4451 /* SerialIo.c */, + A581484B2538170800CF4451 /* PciSioSerialDxe.uni */, + A581484C2538170800CF4451 /* PciSioSerialDxeExtra.uni */, + A581484D2538170800CF4451 /* ComponentName.c */, + A581484E2538170800CF4451 /* Serial.h */, + ); + path = PciSioSerialDxe; + sourceTree = ""; + }; + A581484F2538170800CF4451 /* PciHostBridgeDxe */ = { + isa = PBXGroup; + children = ( + A58148502538170800CF4451 /* PciRootBridgeIo.c */, + A58148512538170800CF4451 /* PciHostResource.h */, + A58148522538170800CF4451 /* PciHostBridge.h */, + A58148532538170800CF4451 /* PciRootBridge.h */, + A58148542538170800CF4451 /* PciHostBridgeDxe.inf */, + A58148552538170800CF4451 /* PciHostBridge.c */, + ); + path = PciHostBridgeDxe; + sourceTree = ""; + }; + A58148562538170800CF4451 /* XhciDxe */ = { + isa = PBXGroup; + children = ( + A58148572538170800CF4451 /* XhciDxeExtra.uni */, + A58148582538170800CF4451 /* XhciSched.h */, + A58148592538170800CF4451 /* Xhci.c */, + A581485A2538170800CF4451 /* XhciReg.c */, + A581485B2538170800CF4451 /* ComponentName.c */, + A581485C2538170800CF4451 /* UsbHcMem.h */, + A581485D2538170800CF4451 /* XhciSched.c */, + A581485E2538170800CF4451 /* XhciDxe.inf */, + A581485F2538170800CF4451 /* XhciDxe.uni */, + A58148602538170800CF4451 /* Xhci.h */, + A58148612538170800CF4451 /* UsbHcMem.c */, + A58148622538170800CF4451 /* ComponentName.h */, + A58148632538170800CF4451 /* XhciReg.h */, + ); + path = XhciDxe; + sourceTree = ""; + }; + A58148642538170800CF4451 /* UhciPei */ = { + isa = PBXGroup; + children = ( + A58148652538170800CF4451 /* UhcPeim.c */, + A58148662538170800CF4451 /* UhciPei.inf */, + A58148672538170800CF4451 /* UhciPei.uni */, + A58148682538170800CF4451 /* UhciPeiExtra.uni */, + A58148692538170800CF4451 /* UhcPeim.h */, + A581486A2538170800CF4451 /* DmaMem.c */, + ); + path = UhciPei; + sourceTree = ""; + }; + A581486B2538170800CF4451 /* NvmExpressDxe */ = { + isa = PBXGroup; + children = ( + A581486C2538170800CF4451 /* NvmExpressHci.c */, + A581486D2538170800CF4451 /* NvmExpressPassthru.c */, + A581486E2538170800CF4451 /* NvmExpressBlockIo.c */, + A581486F2538170800CF4451 /* NvmExpressDxe.inf */, + A58148702538170800CF4451 /* NvmExpressDxe.uni */, + A58148712538170800CF4451 /* NvmExpress.c */, + A58148722538170800CF4451 /* NvmExpressDiskInfo.h */, + A58148732538170800CF4451 /* ComponentName.c */, + A58148742538170800CF4451 /* NvmExpressBlockIo.h */, + A58148752538170800CF4451 /* NvmExpressHci.h */, + A58148762538170800CF4451 /* NvmExpressDxeExtra.uni */, + A58148772538170800CF4451 /* NvmExpressDiskInfo.c */, + A58148782538170800CF4451 /* NvmExpress.h */, + ); + path = NvmExpressDxe; + sourceTree = ""; + }; + A58148792538170800CF4451 /* NonDiscoverablePciDeviceDxe */ = { + isa = PBXGroup; + children = ( + A581487A2538170800CF4451 /* NonDiscoverablePciDeviceDxe.inf */, + A581487B2538170800CF4451 /* NonDiscoverablePciDeviceIo.c */, + A581487C2538170800CF4451 /* ComponentName.c */, + A581487D2538170800CF4451 /* NonDiscoverablePciDeviceDxe.c */, + A581487E2538170800CF4451 /* NonDiscoverablePciDeviceIo.h */, + ); + path = NonDiscoverablePciDeviceDxe; + sourceTree = ""; + }; + A581487F2538170800CF4451 /* EhciDxe */ = { + isa = PBXGroup; + children = ( + A58148802538170800CF4451 /* EhciReg.c */, + A58148812538170800CF4451 /* EhciUrb.h */, + A58148822538170800CF4451 /* EhciDebug.h */, + A58148832538170800CF4451 /* EhciDxe.uni */, + A58148842538170800CF4451 /* Ehci.h */, + A58148852538170800CF4451 /* ComponentName.c */, + A58148862538170800CF4451 /* EhciDxe.inf */, + A58148872538170800CF4451 /* UsbHcMem.h */, + A58148882538170800CF4451 /* EhciSched.c */, + A58148892538170800CF4451 /* EhciDxeExtra.uni */, + A581488A2538170800CF4451 /* Ehci.c */, + A581488B2538170800CF4451 /* EhciDebug.c */, + A581488C2538170800CF4451 /* EhciReg.h */, + A581488D2538170800CF4451 /* EhciUrb.c */, + A581488E2538170800CF4451 /* EhciSched.h */, + A581488F2538170800CF4451 /* UsbHcMem.c */, + A58148902538170800CF4451 /* ComponentName.h */, + ); + path = EhciDxe; + sourceTree = ""; + }; + A58148912538170800CF4451 /* UfsPciHcPei */ = { + isa = PBXGroup; + children = ( + A58148922538170800CF4451 /* UfsPciHcPei.uni */, + A58148932538170800CF4451 /* UfsPciHcPei.inf */, + A58148942538170800CF4451 /* UfsPciHcPei.h */, + A58148952538170800CF4451 /* UfsPciHcPeiExtra.uni */, + A58148962538170800CF4451 /* UfsPciHcPei.c */, + ); + path = UfsPciHcPei; + sourceTree = ""; + }; + A58148972538170800CF4451 /* Isa */ = { + isa = PBXGroup; + children = ( + A58148982538170800CF4451 /* IsaBusDxe */, + A58148A02538170800CF4451 /* Ps2KeyboardDxe */, + A58148A92538170800CF4451 /* Ps2MouseDxe */, + ); + path = Isa; + sourceTree = ""; + }; + A58148982538170800CF4451 /* IsaBusDxe */ = { + isa = PBXGroup; + children = ( + A58148992538170800CF4451 /* IsaBusDxeExtra.uni */, + A581489A2538170800CF4451 /* ComponentName.c */, + A581489B2538170800CF4451 /* IsaBusDxe.h */, + A581489C2538170800CF4451 /* IsaBusDxe.inf */, + A581489D2538170800CF4451 /* IsaBusDxe.uni */, + A581489E2538170800CF4451 /* IsaBusDxe.c */, + A581489F2538170800CF4451 /* ComponentName.h */, + ); + path = IsaBusDxe; + sourceTree = ""; + }; + A58148A02538170800CF4451 /* Ps2KeyboardDxe */ = { + isa = PBXGroup; + children = ( + A58148A12538170800CF4451 /* Ps2KbdTextIn.c */, + A58148A22538170800CF4451 /* Ps2KeyboardDxeExtra.uni */, + A58148A32538170800CF4451 /* Ps2Keyboard.c */, + A58148A42538170800CF4451 /* Ps2KbdCtrller.c */, + A58148A52538170800CF4451 /* ComponentName.c */, + A58148A62538170800CF4451 /* Ps2KeyboardDxe.inf */, + A58148A72538170800CF4451 /* Ps2KeyboardDxe.uni */, + A58148A82538170800CF4451 /* Ps2Keyboard.h */, + ); + path = Ps2KeyboardDxe; + sourceTree = ""; + }; + A58148A92538170800CF4451 /* Ps2MouseDxe */ = { + isa = PBXGroup; + children = ( + A58148AA2538170800CF4451 /* Ps2Mouse.c */, + A58148AB2538170800CF4451 /* ComponentName.c */, + A58148AC2538170800CF4451 /* CommPs2.h */, + A58148AD2538170800CF4451 /* Ps2Mouse.h */, + A58148AE2538170800CF4451 /* Ps2MouseDxeExtra.uni */, + A58148AF2538170800CF4451 /* Ps2MouseDxe.inf */, + A58148B02538170800CF4451 /* CommPs2.c */, + A58148B12538170800CF4451 /* Ps2MouseDxe.uni */, + ); + path = Ps2MouseDxe; + sourceTree = ""; + }; + A58148B22538170800CF4451 /* Scsi */ = { + isa = PBXGroup; + children = ( + A58148B32538170800CF4451 /* ScsiDiskDxe */, + A58148BA2538170800CF4451 /* ScsiBusDxe */, + ); + path = Scsi; + sourceTree = ""; + }; + A58148B32538170800CF4451 /* ScsiDiskDxe */ = { + isa = PBXGroup; + children = ( + A58148B42538170800CF4451 /* ScsiDiskDxe.inf */, + A58148B52538170800CF4451 /* ScsiDisk.c */, + A58148B62538170800CF4451 /* ComponentName.c */, + A58148B72538170800CF4451 /* ScsiDisk.uni */, + A58148B82538170800CF4451 /* ScsiDiskExtra.uni */, + A58148B92538170800CF4451 /* ScsiDisk.h */, + ); + path = ScsiDiskDxe; + sourceTree = ""; + }; + A58148BA2538170800CF4451 /* ScsiBusDxe */ = { + isa = PBXGroup; + children = ( + A58148BB2538170800CF4451 /* ScsiBusExtra.uni */, + A58148BC2538170800CF4451 /* ScsiBus.c */, + A58148BD2538170800CF4451 /* ComponentName.c */, + A58148BE2538170800CF4451 /* ScsiBus.uni */, + A58148BF2538170800CF4451 /* ScsiBusDxe.inf */, + A58148C02538170800CF4451 /* ScsiBus.h */, + ); + path = ScsiBusDxe; + sourceTree = ""; + }; + A58148C12538170800CF4451 /* Ufs */ = { + isa = PBXGroup; + children = ( + A58148C22538170800CF4451 /* UfsBlockIoPei */, + A58148CD2538170800CF4451 /* UfsPassThruDxe */, + ); + path = Ufs; + sourceTree = ""; + }; + A58148C22538170800CF4451 /* UfsBlockIoPei */ = { + isa = PBXGroup; + children = ( + A58148C32538170800CF4451 /* UfsBlockIoPei.inf */, + A58148C42538170800CF4451 /* UfsHcMem.c */, + A58148C52538170800CF4451 /* UfsBlockIoPeiExtra.uni */, + A58148C62538170800CF4451 /* UfsHci.c */, + A58148C72538170800CF4451 /* UfsBlockIoPei.uni */, + A58148C82538170800CF4451 /* UfsBlockIoPei.c */, + A58148C92538170800CF4451 /* UfsHcMem.h */, + A58148CA2538170800CF4451 /* UfsHci.h */, + A58148CB2538170800CF4451 /* UfsBlockIoPei.h */, + A58148CC2538170800CF4451 /* DmaMem.c */, + ); + path = UfsBlockIoPei; + sourceTree = ""; + }; + A58148CD2538170800CF4451 /* UfsPassThruDxe */ = { + isa = PBXGroup; + children = ( + A58148CE2538170800CF4451 /* UfsPassThru.uni */, + A58148CF2538170800CF4451 /* UfsPassThruHci.c */, + A58148D02538170800CF4451 /* UfsPassThru.h */, + A58148D12538170800CF4451 /* ComponentName.c */, + A58148D22538170800CF4451 /* UfsDevConfigProtocol.c */, + A58148D32538170800CF4451 /* UfsPassThruHci.h */, + A58148D42538170800CF4451 /* UfsPassThruDxe.inf */, + A58148D52538170800CF4451 /* UfsPassThruExtra.uni */, + A58148D62538170800CF4451 /* UfsPassThru.c */, + ); + path = UfsPassThruDxe; + sourceTree = ""; + }; + A58148D72538170800CF4451 /* I2c */ = { + isa = PBXGroup; + children = ( + A58148D82538170800CF4451 /* I2cDxe */, + ); + path = I2c; + sourceTree = ""; + }; + A58148D82538170800CF4451 /* I2cDxe */ = { + isa = PBXGroup; + children = ( + A58148D92538170800CF4451 /* I2cBusDxeExtra.uni */, + A58148DA2538170800CF4451 /* I2cDxeExtra.uni */, + A58148DB2538170800CF4451 /* I2cDxe.inf */, + A58148DC2538170800CF4451 /* I2cBus.c */, + A58148DD2538170800CF4451 /* I2cDxe.h */, + A58148DE2538170800CF4451 /* I2cDxe.uni */, + A58148DF2538170800CF4451 /* I2cHost.c */, + A58148E02538170800CF4451 /* I2cBusDxe.uni */, + A58148E12538170800CF4451 /* I2cBusDxe.inf */, + A58148E22538170800CF4451 /* I2cHostDxe.inf */, + A58148E32538170800CF4451 /* I2cHostDxeExtra.uni */, + A58148E42538170800CF4451 /* I2cDxe.c */, + A58148E52538170800CF4451 /* I2cHostDxe.uni */, + ); + path = I2cDxe; + sourceTree = ""; + }; + A58148E62538170800CF4451 /* Usb */ = { + isa = PBXGroup; + children = ( + A58148E72538170800CF4451 /* UsbMouseDxe */, + A58148EF2538170800CF4451 /* UsbMouseAbsolutePointerDxe */, + A58148F72538170800CF4451 /* UsbBusDxe */, + A58149062538170800CF4451 /* UsbKbDxe */, + A581490F2538170900CF4451 /* UsbBusPei */, + A581491A2538170900CF4451 /* UsbBotPei */, + A58149262538170900CF4451 /* UsbMassStorageDxe */, + ); + path = Usb; + sourceTree = ""; + }; + A58148E72538170800CF4451 /* UsbMouseDxe */ = { + isa = PBXGroup; + children = ( + A58148E82538170800CF4451 /* UsbMouseDxeExtra.uni */, + A58148E92538170800CF4451 /* UsbMouse.h */, + A58148EA2538170800CF4451 /* ComponentName.c */, + A58148EB2538170800CF4451 /* UsbMouseDxe.inf */, + A58148EC2538170800CF4451 /* UsbMouse.c */, + A58148ED2538170800CF4451 /* MouseHid.c */, + A58148EE2538170800CF4451 /* UsbMouseDxe.uni */, + ); + path = UsbMouseDxe; + sourceTree = ""; + }; + A58148EF2538170800CF4451 /* UsbMouseAbsolutePointerDxe */ = { + isa = PBXGroup; + children = ( + A58148F02538170800CF4451 /* UsbMouseAbsolutePointerDxeExtra.uni */, + A58148F12538170800CF4451 /* UsbMouseAbsolutePointer.c */, + A58148F22538170800CF4451 /* UsbMouseAbsolutePointerDxe.inf */, + A58148F32538170800CF4451 /* ComponentName.c */, + A58148F42538170800CF4451 /* UsbMouseAbsolutePointerDxe.uni */, + A58148F52538170800CF4451 /* UsbMouseAbsolutePointer.h */, + A58148F62538170800CF4451 /* MouseHid.c */, + ); + path = UsbMouseAbsolutePointerDxe; + sourceTree = ""; + }; + A58148F72538170800CF4451 /* UsbBusDxe */ = { + isa = PBXGroup; + children = ( + A58148F82538170800CF4451 /* UsbEnumer.h */, + A58148F92538170800CF4451 /* UsbBusDxe.uni */, + A58148FA2538170800CF4451 /* UsbDesc.c */, + A58148FB2538170800CF4451 /* UsbBusDxe.inf */, + A58148FC2538170800CF4451 /* UsbHub.h */, + A58148FD2538170800CF4451 /* UsbBus.c */, + A58148FE2538170800CF4451 /* ComponentName.c */, + A58148FF2538170800CF4451 /* UsbUtility.h */, + A58149002538170800CF4451 /* UsbEnumer.c */, + A58149012538170800CF4451 /* UsbBusDxeExtra.uni */, + A58149022538170800CF4451 /* UsbDesc.h */, + A58149032538170800CF4451 /* UsbHub.c */, + A58149042538170800CF4451 /* UsbUtility.c */, + A58149052538170800CF4451 /* UsbBus.h */, + ); + path = UsbBusDxe; + sourceTree = ""; + }; + A58149062538170800CF4451 /* UsbKbDxe */ = { + isa = PBXGroup; + children = ( + A58149072538170800CF4451 /* UsbKbDxeExtra.uni */, + A58149082538170800CF4451 /* KeyBoard.c */, + A58149092538170800CF4451 /* UsbKbDxe.inf */, + A581490A2538170800CF4451 /* EfiKey.h */, + A581490B2538170800CF4451 /* UsbKbDxe.uni */, + A581490C2538170900CF4451 /* ComponentName.c */, + A581490D2538170900CF4451 /* KeyBoard.h */, + A581490E2538170900CF4451 /* EfiKey.c */, + ); + path = UsbKbDxe; + sourceTree = ""; + }; + A581490F2538170900CF4451 /* UsbBusPei */ = { + isa = PBXGroup; + children = ( + A58149102538170900CF4451 /* PeiUsbLib.c */, + A58149112538170900CF4451 /* HubPeim.h */, + A58149122538170900CF4451 /* UsbBusPeiExtra.uni */, + A58149132538170900CF4451 /* UsbPeim.h */, + A58149142538170900CF4451 /* UsbIoPeim.c */, + A58149152538170900CF4451 /* PeiUsbLib.h */, + A58149162538170900CF4451 /* HubPeim.c */, + A58149172538170900CF4451 /* UsbBusPei.uni */, + A58149182538170900CF4451 /* UsbPeim.c */, + A58149192538170900CF4451 /* UsbBusPei.inf */, + ); + path = UsbBusPei; + sourceTree = ""; + }; + A581491A2538170900CF4451 /* UsbBotPei */ = { + isa = PBXGroup; + children = ( + A581491B2538170900CF4451 /* PeiUsbLib.c */, + A581491C2538170900CF4451 /* UsbBotPeiExtra.uni */, + A581491D2538170900CF4451 /* UsbBotPeim.h */, + A581491E2538170900CF4451 /* UsbPeim.h */, + A581491F2538170900CF4451 /* BotPeim.c */, + A58149202538170900CF4451 /* UsbBotPei.inf */, + A58149212538170900CF4451 /* PeiUsbLib.h */, + A58149222538170900CF4451 /* PeiAtapi.c */, + A58149232538170900CF4451 /* UsbBotPei.uni */, + A58149242538170900CF4451 /* UsbBotPeim.c */, + A58149252538170900CF4451 /* BotPeim.h */, + ); + path = UsbBotPei; + sourceTree = ""; + }; + A58149262538170900CF4451 /* UsbMassStorageDxe */ = { + isa = PBXGroup; + children = ( + A58149272538170900CF4451 /* UsbMassDiskInfo.c */, + A58149282538170900CF4451 /* UsbMassCbi.h */, + A58149292538170900CF4451 /* UsbMassImpl.h */, + A581492A2538170900CF4451 /* UsbMassBoot.c */, + A581492B2538170900CF4451 /* UsbMassBot.h */, + A581492C2538170900CF4451 /* UsbMassStorageDxe.uni */, + A581492D2538170900CF4451 /* UsbMassStorageDxeExtra.uni */, + A581492E2538170900CF4451 /* UsbMassStorageDxe.inf */, + A581492F2538170900CF4451 /* ComponentName.c */, + A58149302538170900CF4451 /* UsbMassCbi.c */, + A58149312538170900CF4451 /* UsbMass.h */, + A58149322538170900CF4451 /* UsbMassImpl.c */, + A58149332538170900CF4451 /* UsbMassDiskInfo.h */, + A58149342538170900CF4451 /* UsbMassBoot.h */, + A58149352538170900CF4451 /* UsbMassBot.c */, + ); + path = UsbMassStorageDxe; + sourceTree = ""; + }; + A58149362538170900CF4451 /* Ata */ = { + isa = PBXGroup; + children = ( + A58149372538170900CF4451 /* AhciPei */, + A58149472538170900CF4451 /* AtaAtapiPassThru */, + A58149522538170900CF4451 /* AtaBusDxe */, + ); + path = Ata; + sourceTree = ""; + }; + A58149372538170900CF4451 /* AhciPei */ = { + isa = PBXGroup; + children = ( + A58149382538170900CF4451 /* DevicePath.c */, + A58149392538170900CF4451 /* AhciPei.inf */, + A581493A2538170900CF4451 /* AhciPei.h */, + A581493B2538170900CF4451 /* AhciPeiBlockIo.c */, + A581493C2538170900CF4451 /* AhciPei.uni */, + A581493D2538170900CF4451 /* AhciPeiPassThru.c */, + A581493E2538170900CF4451 /* AhciPeiExtra.uni */, + A581493F2538170900CF4451 /* AhciPeiStorageSecurity.c */, + A58149402538170900CF4451 /* AhciPeiBlockIo.h */, + A58149412538170900CF4451 /* AhciPei.c */, + A58149422538170900CF4451 /* AhciPeiPassThru.h */, + A58149432538170900CF4451 /* DmaMem.c */, + A58149442538170900CF4451 /* AhciPeiStorageSecurity.h */, + A58149452538170900CF4451 /* AhciMode.c */, + A58149462538170900CF4451 /* AhciPeiS3.c */, + ); + path = AhciPei; + sourceTree = ""; + }; + A58149472538170900CF4451 /* AtaAtapiPassThru */ = { + isa = PBXGroup; + children = ( + A58149482538170900CF4451 /* AtaAtapiPassThru.h */, + A58149492538170900CF4451 /* AhciMode.h */, + A581494A2538170900CF4451 /* ComponentName.c */, + A581494B2538170900CF4451 /* AtaAtapiPassThru.inf */, + A581494C2538170900CF4451 /* IdeMode.c */, + A581494D2538170900CF4451 /* AtaAtapiPassThruDxeExtra.uni */, + A581494E2538170900CF4451 /* AtaAtapiPassThru.c */, + A581494F2538170900CF4451 /* AtaAtapiPassThruDxe.uni */, + A58149502538170900CF4451 /* IdeMode.h */, + A58149512538170900CF4451 /* AhciMode.c */, + ); + path = AtaAtapiPassThru; + sourceTree = ""; + }; + A58149522538170900CF4451 /* AtaBusDxe */ = { + isa = PBXGroup; + children = ( + A58149532538170900CF4451 /* AtaBusDxe.inf */, + A58149542538170900CF4451 /* AtaPassThruExecute.c */, + A58149552538170900CF4451 /* AtaBusDxe.uni */, + A58149562538170900CF4451 /* ComponentName.c */, + A58149572538170900CF4451 /* AtaBus.h */, + A58149582538170900CF4451 /* AtaBusDxeExtra.uni */, + A58149592538170900CF4451 /* AtaBus.c */, + ); + path = AtaBusDxe; + sourceTree = ""; + }; + A581495A2538170900CF4451 /* Library */ = { + isa = PBXGroup; + children = ( + A581495B2538170900CF4451 /* DxeCapsuleLibFmp */, + A58149682538170900CF4451 /* SmmIpmiLibSmmIpmiProtocol */, + A581496C2538170900CF4451 /* OemHookStatusCodeLibNull */, + A58149702538170900CF4451 /* DxeCrc32GuidedSectionExtractLib */, + A58149742538170900CF4451 /* BootLogoLib */, + A58149782538170900CF4451 /* LockBoxNullLib */, + A581497C2538170900CF4451 /* FmpAuthenticationLibNull */, + A58149802538170900CF4451 /* PlatformVarCleanupLib */, + A58149882538170900CF4451 /* PeiIpmiLibIpmiPpi */, + A581498C2538170900CF4451 /* LzmaCustomDecompressLib */, + A58149A82538170900CF4451 /* DeviceManagerUiLib */, + A58149AF2538170900CF4451 /* BaseIpmiLibNull */, + A58149B32538170900CF4451 /* PeiCrc32GuidedSectionExtractLib */, + A58149B72538170900CF4451 /* UefiBootManagerLib */, + A58149C32538170900CF4451 /* DxeNetLib */, + A58149C82538170900CF4451 /* FileExplorerLib */, + A58149D02538170900CF4451 /* DxeIpmiLibIpmiProtocol */, + A58149D42538170900CF4451 /* VarCheckLib */, + A58149D82538170900CF4451 /* DisplayUpdateProgressLibGraphics */, + A58149DC2538170900CF4451 /* AuthVariableLibNull */, + A58149E02538170900CF4451 /* SmmReportStatusCodeLib */, + A58149E42538170900CF4451 /* PeiReportStatusCodeLib */, + A58149E82538170900CF4451 /* PeiPerformanceLib */, + A58149EC2538170900CF4451 /* SmmLockBoxLib */, + A58149F72538170900CF4451 /* DxePerformanceLib */, + A58149FB2538170900CF4451 /* SmmMemoryAllocationProfileLib */, + A5814A002538170900CF4451 /* PlatformBootManagerLibNull */, + A5814A042538170900CF4451 /* DxeFileExplorerProtocol */, + A5814A082538170900CF4451 /* PiDxeS3BootScriptLib */, + A5814A0F2538170900CF4451 /* DxeHttpLib */, + A5814A142538170900CF4451 /* BasePlatformHookLibNull */, + A5814A182538170900CF4451 /* BaseResetSystemLibNull */, + A5814A1C2538170900CF4451 /* NonDiscoverableDeviceRegistrationLib */, + A5814A1F2538170900CF4451 /* FrameBufferBltLib */, + A5814A222538170900CF4451 /* PciHostBridgeLibNull */, + A5814A262538170900CF4451 /* PeiDxeDebugLibReportStatusCode */, + A5814A2A2538170900CF4451 /* TpmMeasurementLibNull */, + A5814A2E2538170900CF4451 /* PeiDebugPrintHobLib */, + A5814A322538170900CF4451 /* RuntimeDxeReportStatusCodeLib */, + A5814A362538170900CF4451 /* UefiSortLib */, + A5814A3A2538170900CF4451 /* VarCheckHiiLib */, + A5814A442538170900CF4451 /* BaseMemoryAllocationLibNull */, + A5814A482538170900CF4451 /* DisplayUpdateProgressLibText */, + A5814A4C2538170900CF4451 /* CustomizedDisplayLib */, + A5814A542538170900CF4451 /* SmmCorePlatformHookLibNull */, + A5814A582538170900CF4451 /* DebugAgentLibNull */, + A5814A5C2538170900CF4451 /* UefiHiiServicesLib */, + A5814A602538170900CF4451 /* BootMaintenanceManagerUiLib */, + A5814A722538170900CF4451 /* PlatformHookLibSerialPortPpi */, + A5814A762538170900CF4451 /* BaseSerialPortLib16550 */, + A5814A7A2538170900CF4451 /* BaseHobLibNull */, + A5814A7E2538170900CF4451 /* SmmPerformanceLib */, + A5814A822538170900CF4451 /* DxeCapsuleLibNull */, + A5814A862538170900CF4451 /* DxeDebugPrintErrorLevelLib */, + A5814A8A2538170900CF4451 /* PiSmmCoreSmmServicesTableLib */, + A5814A8E2538170900CF4451 /* BrotliCustomDecompressLib */, + A5814AAF2538170900CF4451 /* ResetUtilityLib */, + A5814AB22538170900CF4451 /* SmmCorePerformanceLib */, + A5814AB72538170900CF4451 /* UefiMemoryAllocationProfileLib */, + A5814ABC2538170900CF4451 /* PeiDebugLibDebugPpi */, + A5814ABF2538170900CF4451 /* SmmSmiHandlerProfileLib */, + A5814AC32538170900CF4451 /* DxeReportStatusCodeLib */, + A5814AC72538170900CF4451 /* VarCheckUefiLib */, + A5814ACB2538170900CF4451 /* RuntimeResetSystemLib */, + A5814ACF2538170900CF4451 /* VarCheckPcdLib */, + A5814AD42538170900CF4451 /* DxeSecurityManagementLib */, + A5814AD82538170900CF4451 /* PiSmmCoreMemoryAllocationLib */, + A5814AE22538170900CF4451 /* DxePrintLibPrint2Protocol */, + A5814AE62538170900CF4451 /* DxeCoreMemoryAllocationLib */, + A5814AF02538170900CF4451 /* BootManagerUiLib */, + A5814AF72538170900CF4451 /* BaseBmpSupportLib */, + A5814AFB2538170900CF4451 /* CpuExceptionHandlerLibNull */, + A5814AFF2538170900CF4451 /* UefiHiiLib */, + A5814B062538170900CF4451 /* BaseSortLib */, + A5814B0A2538170900CF4451 /* DxeCorePerformanceLib */, + A5814B0F2538170900CF4451 /* DxeResetSystemLib */, + A5814B132538170900CF4451 /* PeiResetSystemLib */, + ); + path = Library; + sourceTree = ""; + }; + A581495B2538170900CF4451 /* DxeCapsuleLibFmp */ = { + isa = PBXGroup; + children = ( + A581495C2538170900CF4451 /* DxeCapsuleRuntime.c */, + A581495D2538170900CF4451 /* CapsuleOnDisk.c */, + A581495E2538170900CF4451 /* DxeCapsuleProcessLibNull.c */, + A581495F2538170900CF4451 /* DxeCapsuleReportLibNull.c */, + A58149602538170900CF4451 /* DxeCapsuleProcessLib.c */, + A58149612538170900CF4451 /* DxeCapsuleReportLib.c */, + A58149622538170900CF4451 /* CapsuleOnDisk.h */, + A58149632538170900CF4451 /* DxeRuntimeCapsuleLib.inf */, + A58149642538170900CF4451 /* DxeCapsuleLib.uni */, + A58149652538170900CF4451 /* DxeCapsuleLib.c */, + A58149662538170900CF4451 /* DxeRuntimeCapsuleLib.uni */, + A58149672538170900CF4451 /* DxeCapsuleLib.inf */, + ); + path = DxeCapsuleLibFmp; + sourceTree = ""; + }; + A58149682538170900CF4451 /* SmmIpmiLibSmmIpmiProtocol */ = { + isa = PBXGroup; + children = ( + A58149692538170900CF4451 /* SmmIpmiLibSmmIpmiProtocol.c */, + A581496A2538170900CF4451 /* SmmIpmiLibSmmIpmiProtocol.inf */, + A581496B2538170900CF4451 /* SmmIpmiLibSmmIpmiProtocol.uni */, + ); + path = SmmIpmiLibSmmIpmiProtocol; + sourceTree = ""; + }; + A581496C2538170900CF4451 /* OemHookStatusCodeLibNull */ = { + isa = PBXGroup; + children = ( + A581496D2538170900CF4451 /* OemHookStatusCodeLibNull.inf */, + A581496E2538170900CF4451 /* OemHookStatusCodeLibNull.c */, + A581496F2538170900CF4451 /* OemHookStatusCodeLibNull.uni */, + ); + path = OemHookStatusCodeLibNull; + sourceTree = ""; + }; + A58149702538170900CF4451 /* DxeCrc32GuidedSectionExtractLib */ = { + isa = PBXGroup; + children = ( + A58149712538170900CF4451 /* DxeCrc32GuidedSectionExtractLib.c */, + A58149722538170900CF4451 /* DxeCrc32GuidedSectionExtractLib.inf */, + A58149732538170900CF4451 /* DxeCrc32GuidedSectionExtractLib.uni */, + ); + path = DxeCrc32GuidedSectionExtractLib; + sourceTree = ""; + }; + A58149742538170900CF4451 /* BootLogoLib */ = { + isa = PBXGroup; + children = ( + A58149752538170900CF4451 /* BootLogoLib.c */, + A58149762538170900CF4451 /* BootLogoLib.inf */, + A58149772538170900CF4451 /* BootLogoLib.uni */, + ); + path = BootLogoLib; + sourceTree = ""; + }; + A58149782538170900CF4451 /* LockBoxNullLib */ = { + isa = PBXGroup; + children = ( + A58149792538170900CF4451 /* LockBoxNullLib.inf */, + A581497A2538170900CF4451 /* LockBoxNullLib.c */, + A581497B2538170900CF4451 /* LockBoxNullLib.uni */, + ); + path = LockBoxNullLib; + sourceTree = ""; + }; + A581497C2538170900CF4451 /* FmpAuthenticationLibNull */ = { + isa = PBXGroup; + children = ( + A581497D2538170900CF4451 /* FmpAuthenticationLibNull.c */, + A581497E2538170900CF4451 /* FmpAuthenticationLibNull.inf */, + A581497F2538170900CF4451 /* FmpAuthenticationLibNull.uni */, + ); + path = FmpAuthenticationLibNull; + sourceTree = ""; + }; + A58149802538170900CF4451 /* PlatformVarCleanupLib */ = { + isa = PBXGroup; + children = ( + A58149812538170900CF4451 /* PlatVarCleanup.vfr */, + A58149822538170900CF4451 /* PlatVarCleanupLib.c */, + A58149832538170900CF4451 /* PlatVarCleanup.h */, + A58149842538170900CF4451 /* PlatformVarCleanupLib.inf */, + A58149852538170900CF4451 /* PlatVarCleanupHii.h */, + A58149862538170900CF4451 /* VfrStrings.uni */, + A58149872538170900CF4451 /* PlatformVarCleanupLib.uni */, + ); + path = PlatformVarCleanupLib; + sourceTree = ""; + }; + A58149882538170900CF4451 /* PeiIpmiLibIpmiPpi */ = { + isa = PBXGroup; + children = ( + A58149892538170900CF4451 /* PeiIpmiLibIpmiPpi.c */, + A581498A2538170900CF4451 /* PeiIpmiLibIpmiPpi.inf */, + A581498B2538170900CF4451 /* PeiIpmiLibIpmiPpi.uni */, + ); + path = PeiIpmiLibIpmiPpi; + sourceTree = ""; + }; + A581498C2538170900CF4451 /* LzmaCustomDecompressLib */ = { + isa = PBXGroup; + children = ( + A581498D2538170900CF4451 /* LzmaArchCustomDecompressLib.inf */, + A581498E2538170900CF4451 /* F86GuidedSectionExtraction.c */, + A581498F2538170900CF4451 /* LzmaCustomDecompressLib.inf */, + A58149902538170900CF4451 /* Sdk */, + A58149A12538170900CF4451 /* LzmaDecompressLibInternal.h */, + A58149A22538170900CF4451 /* LZMA-SDK-README.txt */, + A58149A32538170900CF4451 /* LzmaArchDecompressLib.uni */, + A58149A42538170900CF4451 /* LzmaDecompress.c */, + A58149A52538170900CF4451 /* LzmaDecompressLib.uni */, + A58149A62538170900CF4451 /* GuidedSectionExtraction.c */, + A58149A72538170900CF4451 /* UefiLzma.h */, + ); + path = LzmaCustomDecompressLib; + sourceTree = ""; + }; + A58149902538170900CF4451 /* Sdk */ = { + isa = PBXGroup; + children = ( + A58149912538170900CF4451 /* DOC */, + A58149942538170900CF4451 /* C */, + ); + path = Sdk; + sourceTree = ""; + }; + A58149912538170900CF4451 /* DOC */ = { + isa = PBXGroup; + children = ( + A58149922538170900CF4451 /* lzma-sdk.txt */, + A58149932538170900CF4451 /* lzma-history.txt */, + ); + path = DOC; + sourceTree = ""; + }; + A58149942538170900CF4451 /* C */ = { + isa = PBXGroup; + children = ( + A58149952538170900CF4451 /* LzHash.h */, + A58149962538170900CF4451 /* 7zTypes.h */, + A58149972538170900CF4451 /* Compiler.h */, + A58149982538170900CF4451 /* LzFind.c */, + A58149992538170900CF4451 /* Precomp.h */, + A581499A2538170900CF4451 /* CpuArch.h */, + A581499B2538170900CF4451 /* Bra86.c */, + A581499C2538170900CF4451 /* LzmaDec.c */, + A581499D2538170900CF4451 /* LzFind.h */, + A581499E2538170900CF4451 /* 7zVersion.h */, + A581499F2538170900CF4451 /* Bra.h */, + A58149A02538170900CF4451 /* LzmaDec.h */, + ); + path = C; + sourceTree = ""; + }; + A58149A82538170900CF4451 /* DeviceManagerUiLib */ = { + isa = PBXGroup; + children = ( + A58149A92538170900CF4451 /* DeviceManagerUiLib.uni */, + A58149AA2538170900CF4451 /* DeviceManagerStrings.uni */, + A58149AB2538170900CF4451 /* DeviceManagerUiLib.inf */, + A58149AC2538170900CF4451 /* DeviceManager.h */, + A58149AD2538170900CF4451 /* DeviceManagerVfr.Vfr */, + A58149AE2538170900CF4451 /* DeviceManager.c */, + ); + path = DeviceManagerUiLib; + sourceTree = ""; + }; + A58149AF2538170900CF4451 /* BaseIpmiLibNull */ = { + isa = PBXGroup; + children = ( + A58149B02538170900CF4451 /* BaseIpmiLibNull.c */, + A58149B12538170900CF4451 /* BaseIpmiLibNull.inf */, + A58149B22538170900CF4451 /* BaseIpmiLibNull.uni */, + ); + path = BaseIpmiLibNull; + sourceTree = ""; + }; + A58149B32538170900CF4451 /* PeiCrc32GuidedSectionExtractLib */ = { + isa = PBXGroup; + children = ( + A58149B42538170900CF4451 /* PeiCrc32GuidedSectionExtractLib.uni */, + A58149B52538170900CF4451 /* PeiCrc32GuidedSectionExtractLib.inf */, + A58149B62538170900CF4451 /* PeiCrc32GuidedSectionExtractLib.c */, + ); + path = PeiCrc32GuidedSectionExtractLib; + sourceTree = ""; + }; + A58149B72538170900CF4451 /* UefiBootManagerLib */ = { + isa = PBXGroup; + children = ( + A58149B82538170900CF4451 /* BmConnect.c */, + A58149B92538170900CF4451 /* BmConsole.c */, + A58149BA2538170900CF4451 /* BmHotkey.c */, + A58149BB2538170900CF4451 /* InternalBm.h */, + A58149BC2538170900CF4451 /* UefiBootManagerLib.inf */, + A58149BD2538170900CF4451 /* BmLoadOption.c */, + A58149BE2538170900CF4451 /* BmBootDescription.c */, + A58149BF2538170900CF4451 /* UefiBootManagerLib.uni */, + A58149C02538170900CF4451 /* BmDriverHealth.c */, + A58149C12538170900CF4451 /* BmBoot.c */, + A58149C22538170900CF4451 /* BmMisc.c */, + ); + path = UefiBootManagerLib; + sourceTree = ""; + }; + A58149C32538170900CF4451 /* DxeNetLib */ = { + isa = PBXGroup; + children = ( + A58149C42538170900CF4451 /* DxeNetLib.inf */, + A58149C52538170900CF4451 /* DxeNetLib.uni */, + A58149C62538170900CF4451 /* NetBuffer.c */, + A58149C72538170900CF4451 /* DxeNetLib.c */, + ); + path = DxeNetLib; + sourceTree = ""; + }; + A58149C82538170900CF4451 /* FileExplorerLib */ = { + isa = PBXGroup; + children = ( + A58149C92538170900CF4451 /* FileExplorer.h */, + A58149CA2538170900CF4451 /* FileExplorerString.uni */, + A58149CB2538170900CF4451 /* FormGuid.h */, + A58149CC2538170900CF4451 /* FileExplorer.c */, + A58149CD2538170900CF4451 /* FileExplorerVfr.vfr */, + A58149CE2538170900CF4451 /* FileExplorerLib.inf */, + A58149CF2538170900CF4451 /* FileExplorerLib.uni */, + ); + path = FileExplorerLib; + sourceTree = ""; + }; + A58149D02538170900CF4451 /* DxeIpmiLibIpmiProtocol */ = { + isa = PBXGroup; + children = ( + A58149D12538170900CF4451 /* DxeIpmiLibIpmiProtocol.uni */, + A58149D22538170900CF4451 /* DxeIpmiLibIpmiProtocol.inf */, + A58149D32538170900CF4451 /* DxeIpmiLibIpmiProtocol.c */, + ); + path = DxeIpmiLibIpmiProtocol; + sourceTree = ""; + }; + A58149D42538170900CF4451 /* VarCheckLib */ = { + isa = PBXGroup; + children = ( + A58149D52538170900CF4451 /* VarCheckLib.c */, + A58149D62538170900CF4451 /* VarCheckLib.inf */, + A58149D72538170900CF4451 /* VarCheckLib.uni */, + ); + path = VarCheckLib; + sourceTree = ""; + }; + A58149D82538170900CF4451 /* DisplayUpdateProgressLibGraphics */ = { + isa = PBXGroup; + children = ( + A58149D92538170900CF4451 /* DisplayUpdateProgressLibGraphics.uni */, + A58149DA2538170900CF4451 /* DisplayUpdateProgressLibGraphics.inf */, + A58149DB2538170900CF4451 /* DisplayUpdateProgressLibGraphics.c */, + ); + path = DisplayUpdateProgressLibGraphics; + sourceTree = ""; + }; + A58149DC2538170900CF4451 /* AuthVariableLibNull */ = { + isa = PBXGroup; + children = ( + A58149DD2538170900CF4451 /* AuthVariableLibNull.uni */, + A58149DE2538170900CF4451 /* AuthVariableLibNull.inf */, + A58149DF2538170900CF4451 /* AuthVariableLibNull.c */, + ); + path = AuthVariableLibNull; + sourceTree = ""; + }; + A58149E02538170900CF4451 /* SmmReportStatusCodeLib */ = { + isa = PBXGroup; + children = ( + A58149E12538170900CF4451 /* SmmReportStatusCodeLib.uni */, + A58149E22538170900CF4451 /* ReportStatusCodeLib.c */, + A58149E32538170900CF4451 /* SmmReportStatusCodeLib.inf */, + ); + path = SmmReportStatusCodeLib; + sourceTree = ""; + }; + A58149E42538170900CF4451 /* PeiReportStatusCodeLib */ = { + isa = PBXGroup; + children = ( + A58149E52538170900CF4451 /* PeiReportStatusCodeLib.uni */, + A58149E62538170900CF4451 /* PeiReportStatusCodeLib.inf */, + A58149E72538170900CF4451 /* ReportStatusCodeLib.c */, + ); + path = PeiReportStatusCodeLib; + sourceTree = ""; + }; + A58149E82538170900CF4451 /* PeiPerformanceLib */ = { + isa = PBXGroup; + children = ( + A58149E92538170900CF4451 /* PeiPerformanceLib.uni */, + A58149EA2538170900CF4451 /* PeiPerformanceLib.c */, + A58149EB2538170900CF4451 /* PeiPerformanceLib.inf */, + ); + path = PeiPerformanceLib; + sourceTree = ""; + }; + A58149EC2538170900CF4451 /* SmmLockBoxLib */ = { + isa = PBXGroup; + children = ( + A58149ED2538170900CF4451 /* SmmLockBoxSmmLib.c */, + A58149EE2538170900CF4451 /* SmmLockBoxPeiLib.uni */, + A58149EF2538170900CF4451 /* SmmLockBoxDxeLib.uni */, + A58149F02538170900CF4451 /* SmmLockBoxPeiLib.inf */, + A58149F12538170900CF4451 /* SmmLockBoxDxeLib.inf */, + A58149F22538170900CF4451 /* SmmLockBoxSmmLib.inf */, + A58149F32538170900CF4451 /* SmmLockBoxSmmLib.uni */, + A58149F42538170900CF4451 /* SmmLockBoxPeiLib.c */, + A58149F52538170900CF4451 /* SmmLockBoxLibPrivate.h */, + A58149F62538170900CF4451 /* SmmLockBoxDxeLib.c */, + ); + path = SmmLockBoxLib; + sourceTree = ""; + }; + A58149F72538170900CF4451 /* DxePerformanceLib */ = { + isa = PBXGroup; + children = ( + A58149F82538170900CF4451 /* DxePerformanceLib.c */, + A58149F92538170900CF4451 /* DxePerformanceLib.uni */, + A58149FA2538170900CF4451 /* DxePerformanceLib.inf */, + ); + path = DxePerformanceLib; + sourceTree = ""; + }; + A58149FB2538170900CF4451 /* SmmMemoryAllocationProfileLib */ = { + isa = PBXGroup; + children = ( + A58149FC2538170900CF4451 /* SmmMemoryAllocationProfileLib.uni */, + A58149FD2538170900CF4451 /* MemoryAllocationLib.c */, + A58149FE2538170900CF4451 /* SmmMemoryAllocationProfileLib.inf */, + A58149FF2538170900CF4451 /* SmmMemoryProfileLib.c */, + ); + path = SmmMemoryAllocationProfileLib; + sourceTree = ""; + }; + A5814A002538170900CF4451 /* PlatformBootManagerLibNull */ = { + isa = PBXGroup; + children = ( + A5814A012538170900CF4451 /* PlatformBootManager.c */, + A5814A022538170900CF4451 /* PlatformBootManagerLibNull.inf */, + A5814A032538170900CF4451 /* PlatformBootManagerLibNull.uni */, + ); + path = PlatformBootManagerLibNull; + sourceTree = ""; + }; + A5814A042538170900CF4451 /* DxeFileExplorerProtocol */ = { + isa = PBXGroup; + children = ( + A5814A052538170900CF4451 /* DxeFileExplorerProtocol.inf */, + A5814A062538170900CF4451 /* DxeFileExplorerProtocol.uni */, + A5814A072538170900CF4451 /* DxeFileExplorerProtocol.c */, + ); + path = DxeFileExplorerProtocol; + sourceTree = ""; + }; + A5814A082538170900CF4451 /* PiDxeS3BootScriptLib */ = { + isa = PBXGroup; + children = ( + A5814A092538170900CF4451 /* InternalBootScriptLib.h */, + A5814A0A2538170900CF4451 /* BootScriptInternalFormat.h */, + A5814A0B2538170900CF4451 /* BootScriptSave.c */, + A5814A0C2538170900CF4451 /* BootScriptExecute.c */, + A5814A0D2538170900CF4451 /* DxeS3BootScriptLib.inf */, + A5814A0E2538170900CF4451 /* DxeS3BootScriptLib.uni */, + ); + path = PiDxeS3BootScriptLib; + sourceTree = ""; + }; + A5814A0F2538170900CF4451 /* DxeHttpLib */ = { + isa = PBXGroup; + children = ( + A5814A102538170900CF4451 /* DxeHttpLib.c */, + A5814A112538170900CF4451 /* DxeHttpLib.inf */, + A5814A122538170900CF4451 /* DxeHttpLib.uni */, + A5814A132538170900CF4451 /* DxeHttpLib.h */, + ); + path = DxeHttpLib; + sourceTree = ""; + }; + A5814A142538170900CF4451 /* BasePlatformHookLibNull */ = { + isa = PBXGroup; + children = ( + A5814A152538170900CF4451 /* BasePlatformHookLibNull.inf */, + A5814A162538170900CF4451 /* BasePlatformHookLibNull.uni */, + A5814A172538170900CF4451 /* BasePlatformHookLibNull.c */, + ); + path = BasePlatformHookLibNull; + sourceTree = ""; + }; + A5814A182538170900CF4451 /* BaseResetSystemLibNull */ = { + isa = PBXGroup; + children = ( + A5814A192538170900CF4451 /* BaseResetSystemLibNull.uni */, + A5814A1A2538170900CF4451 /* BaseResetSystemLibNull.inf */, + A5814A1B2538170900CF4451 /* BaseResetSystemLibNull.c */, + ); + path = BaseResetSystemLibNull; + sourceTree = ""; + }; + A5814A1C2538170900CF4451 /* NonDiscoverableDeviceRegistrationLib */ = { + isa = PBXGroup; + children = ( + A5814A1D2538170900CF4451 /* NonDiscoverableDeviceRegistrationLib.c */, + A5814A1E2538170900CF4451 /* NonDiscoverableDeviceRegistrationLib.inf */, + ); + path = NonDiscoverableDeviceRegistrationLib; + sourceTree = ""; + }; + A5814A1F2538170900CF4451 /* FrameBufferBltLib */ = { + isa = PBXGroup; + children = ( + A5814A202538170900CF4451 /* FrameBufferBltLib.c */, + A5814A212538170900CF4451 /* FrameBufferBltLib.inf */, + ); + path = FrameBufferBltLib; + sourceTree = ""; + }; + A5814A222538170900CF4451 /* PciHostBridgeLibNull */ = { + isa = PBXGroup; + children = ( + A5814A232538170900CF4451 /* PciHostBridgeLibNull.uni */, + A5814A242538170900CF4451 /* PciHostBridgeLibNull.inf */, + A5814A252538170900CF4451 /* PciHostBridgeLibNull.c */, + ); + path = PciHostBridgeLibNull; + sourceTree = ""; + }; + A5814A262538170900CF4451 /* PeiDxeDebugLibReportStatusCode */ = { + isa = PBXGroup; + children = ( + A5814A272538170900CF4451 /* PeiDxeDebugLibReportStatusCode.uni */, + A5814A282538170900CF4451 /* DebugLib.c */, + A5814A292538170900CF4451 /* PeiDxeDebugLibReportStatusCode.inf */, + ); + path = PeiDxeDebugLibReportStatusCode; + sourceTree = ""; + }; + A5814A2A2538170900CF4451 /* TpmMeasurementLibNull */ = { + isa = PBXGroup; + children = ( + A5814A2B2538170900CF4451 /* TpmMeasurementLibNull.uni */, + A5814A2C2538170900CF4451 /* TpmMeasurementLibNull.c */, + A5814A2D2538170900CF4451 /* TpmMeasurementLibNull.inf */, + ); + path = TpmMeasurementLibNull; + sourceTree = ""; + }; + A5814A2E2538170900CF4451 /* PeiDebugPrintHobLib */ = { + isa = PBXGroup; + children = ( + A5814A2F2538170900CF4451 /* PeiDebugPrintHobLib.uni */, + A5814A302538170900CF4451 /* PeiDebugPrintHobLib.c */, + A5814A312538170900CF4451 /* PeiDebugPrintHobLib.inf */, + ); + path = PeiDebugPrintHobLib; + sourceTree = ""; + }; + A5814A322538170900CF4451 /* RuntimeDxeReportStatusCodeLib */ = { + isa = PBXGroup; + children = ( + A5814A332538170900CF4451 /* RuntimeDxeReportStatusCodeLib.inf */, + A5814A342538170900CF4451 /* RuntimeDxeReportStatusCodeLib.uni */, + A5814A352538170900CF4451 /* ReportStatusCodeLib.c */, + ); + path = RuntimeDxeReportStatusCodeLib; + sourceTree = ""; + }; + A5814A362538170900CF4451 /* UefiSortLib */ = { + isa = PBXGroup; + children = ( + A5814A372538170900CF4451 /* UefiSortLib.inf */, + A5814A382538170900CF4451 /* UefiSortLib.c */, + A5814A392538170900CF4451 /* UefiSortLib.uni */, + ); + path = UefiSortLib; + sourceTree = ""; + }; + A5814A3A2538170900CF4451 /* VarCheckHiiLib */ = { + isa = PBXGroup; + children = ( + A5814A3B2538170900CF4451 /* VarCheckHiiGen.c */, + A5814A3C2538170900CF4451 /* VarCheckHii.h */, + A5814A3D2538170900CF4451 /* VarCheckHiiLib.uni */, + A5814A3E2538170900CF4451 /* VarCheckHiiGenFromFv.c */, + A5814A3F2538170900CF4451 /* VarCheckHiiLib.inf */, + A5814A402538170900CF4451 /* InternalVarCheckStructure.h */, + A5814A412538170900CF4451 /* VarCheckHiiGenFromHii.c */, + A5814A422538170900CF4451 /* VarCheckHiiLibNullClass.c */, + A5814A432538170900CF4451 /* VarCheckHiiGen.h */, + ); + path = VarCheckHiiLib; + sourceTree = ""; + }; + A5814A442538170900CF4451 /* BaseMemoryAllocationLibNull */ = { + isa = PBXGroup; + children = ( + A5814A452538170900CF4451 /* BaseMemoryAllocationLibNull.c */, + A5814A462538170900CF4451 /* BaseMemoryAllocationLibNull.inf */, + A5814A472538170900CF4451 /* BaseMemoryAllocationLibNull.uni */, + ); + path = BaseMemoryAllocationLibNull; + sourceTree = ""; + }; + A5814A482538170900CF4451 /* DisplayUpdateProgressLibText */ = { + isa = PBXGroup; + children = ( + A5814A492538170900CF4451 /* DisplayUpdateProgressLibText.c */, + A5814A4A2538170900CF4451 /* DisplayUpdateProgressLibText.inf */, + A5814A4B2538170900CF4451 /* DisplayUpdateProgressLibText.uni */, + ); + path = DisplayUpdateProgressLibText; + sourceTree = ""; + }; + A5814A4C2538170900CF4451 /* CustomizedDisplayLib */ = { + isa = PBXGroup; + children = ( + A5814A4D2538170900CF4451 /* CustomizedDisplayLibModStrs.uni */, + A5814A4E2538170900CF4451 /* Colors.h */, + A5814A4F2538170900CF4451 /* CustomizedDisplayLibInternal.h */, + A5814A502538170900CF4451 /* CustomizedDisplayLib.inf */, + A5814A512538170900CF4451 /* CustomizedDisplayLib.uni */, + A5814A522538170900CF4451 /* CustomizedDisplayLibInternal.c */, + A5814A532538170900CF4451 /* CustomizedDisplayLib.c */, + ); + path = CustomizedDisplayLib; + sourceTree = ""; + }; + A5814A542538170900CF4451 /* SmmCorePlatformHookLibNull */ = { + isa = PBXGroup; + children = ( + A5814A552538170900CF4451 /* SmmCorePlatformHookLibNull.inf */, + A5814A562538170900CF4451 /* SmmCorePlatformHookLibNull.uni */, + A5814A572538170900CF4451 /* SmmCorePlatformHookLibNull.c */, + ); + path = SmmCorePlatformHookLibNull; + sourceTree = ""; + }; + A5814A582538170900CF4451 /* DebugAgentLibNull */ = { + isa = PBXGroup; + children = ( + A5814A592538170900CF4451 /* DebugAgentLibNull.uni */, + A5814A5A2538170900CF4451 /* DebugAgentLibNull.inf */, + A5814A5B2538170900CF4451 /* DebugAgentLibNull.c */, + ); + path = DebugAgentLibNull; + sourceTree = ""; + }; + A5814A5C2538170900CF4451 /* UefiHiiServicesLib */ = { + isa = PBXGroup; + children = ( + A5814A5D2538170900CF4451 /* UefiHiiServicesLib.inf */, + A5814A5E2538170900CF4451 /* UefiHiiServicesLib.uni */, + A5814A5F2538170900CF4451 /* UefiHiiServicesLib.c */, + ); + path = UefiHiiServicesLib; + sourceTree = ""; + }; + A5814A602538170900CF4451 /* BootMaintenanceManagerUiLib */ = { + isa = PBXGroup; + children = ( + A5814A612538170900CF4451 /* BmLib.c */, + A5814A622538170900CF4451 /* BootMaintenanceManagerUiLib.inf */, + A5814A632538170900CF4451 /* BootOption.c */, + A5814A642538170900CF4451 /* BootMaintenanceManagerUiLib.uni */, + A5814A652538170900CF4451 /* BootMaintenanceManagerCustomizedUiSupport.c */, + A5814A662538170900CF4451 /* BootMaintenanceManagerCustomizedUi.c */, + A5814A672538170900CF4451 /* BootMaintenanceManager.vfr */, + A5814A682538170900CF4451 /* BootMaintenanceManagerStrings.uni */, + A5814A692538170900CF4451 /* BootMaintenanceManager.h */, + A5814A6A2538170900CF4451 /* BootMaintenance.c */, + A5814A6B2538170900CF4451 /* FormGuid.h */, + A5814A6C2538170900CF4451 /* BootMaintenanceManagerCustomizedUiSupport.h */, + A5814A6D2538170900CF4451 /* UpdatePage.c */, + A5814A6E2538170900CF4451 /* Data.c */, + A5814A6F2538170900CF4451 /* BootMaintenanceManagerCustomizedUi.h */, + A5814A702538170900CF4451 /* ConsoleOption.c */, + A5814A712538170900CF4451 /* Variable.c */, + ); + path = BootMaintenanceManagerUiLib; + sourceTree = ""; + }; + A5814A722538170900CF4451 /* PlatformHookLibSerialPortPpi */ = { + isa = PBXGroup; + children = ( + A5814A732538170900CF4451 /* PlatformHookLibSerialPortPpi.inf */, + A5814A742538170900CF4451 /* PlatformHookLibSerialPortPpi.uni */, + A5814A752538170900CF4451 /* PlatformHookLibSerialPortPpi.c */, + ); + path = PlatformHookLibSerialPortPpi; + sourceTree = ""; + }; + A5814A762538170900CF4451 /* BaseSerialPortLib16550 */ = { + isa = PBXGroup; + children = ( + A5814A772538170900CF4451 /* BaseSerialPortLib16550.c */, + A5814A782538170900CF4451 /* BaseSerialPortLib16550.inf */, + A5814A792538170900CF4451 /* BaseSerialPortLib16550.uni */, + ); + path = BaseSerialPortLib16550; + sourceTree = ""; + }; + A5814A7A2538170900CF4451 /* BaseHobLibNull */ = { + isa = PBXGroup; + children = ( + A5814A7B2538170900CF4451 /* BaseHobLibNull.c */, + A5814A7C2538170900CF4451 /* BaseHobLibNull.inf */, + A5814A7D2538170900CF4451 /* BaseHobLibNull.uni */, + ); + path = BaseHobLibNull; + sourceTree = ""; + }; + A5814A7E2538170900CF4451 /* SmmPerformanceLib */ = { + isa = PBXGroup; + children = ( + A5814A7F2538170900CF4451 /* SmmPerformanceLib.c */, + A5814A802538170900CF4451 /* SmmPerformanceLib.inf */, + A5814A812538170900CF4451 /* SmmPerformanceLib.uni */, + ); + path = SmmPerformanceLib; + sourceTree = ""; + }; + A5814A822538170900CF4451 /* DxeCapsuleLibNull */ = { + isa = PBXGroup; + children = ( + A5814A832538170900CF4451 /* DxeCapsuleLibNull.inf */, + A5814A842538170900CF4451 /* DxeCapsuleLibNull.uni */, + A5814A852538170900CF4451 /* DxeCapsuleLibNull.c */, + ); + path = DxeCapsuleLibNull; + sourceTree = ""; + }; + A5814A862538170900CF4451 /* DxeDebugPrintErrorLevelLib */ = { + isa = PBXGroup; + children = ( + A5814A872538170900CF4451 /* DxeDebugPrintErrorLevelLib.inf */, + A5814A882538170900CF4451 /* DxeDebugPrintErrorLevelLib.uni */, + A5814A892538170900CF4451 /* DxeDebugPrintErrorLevelLib.c */, + ); + path = DxeDebugPrintErrorLevelLib; + sourceTree = ""; + }; + A5814A8A2538170900CF4451 /* PiSmmCoreSmmServicesTableLib */ = { + isa = PBXGroup; + children = ( + A5814A8B2538170900CF4451 /* PiSmmCoreSmmServicesTableLib.uni */, + A5814A8C2538170900CF4451 /* PiSmmCoreSmmServicesTableLib.inf */, + A5814A8D2538170900CF4451 /* PiSmmCoreSmmServicesTableLib.c */, + ); + path = PiSmmCoreSmmServicesTableLib; + sourceTree = ""; + }; + A5814A8E2538170900CF4451 /* BrotliCustomDecompressLib */ = { + isa = PBXGroup; + children = ( + A5814A8F2538170900CF4451 /* LICENSE */, + A5814A902538170900CF4451 /* BrotliDecompressLibInternal.h */, + A5814A912538170900CF4451 /* brotli */, + A5814A952538170900CF4451 /* BrotliDecompress.c */, + A5814A962538170900CF4451 /* docs */, + A5814A982538170900CF4451 /* README.md */, + A5814A992538170900CF4451 /* common */, + A5814AA22538170900CF4451 /* dec */, + A5814AAB2538170900CF4451 /* ReadMe.txt */, + A5814AAC2538170900CF4451 /* BrotliDecompressLib.uni */, + A5814AAD2538170900CF4451 /* BrotliCustomDecompressLib.inf */, + A5814AAE2538170900CF4451 /* GuidedSectionExtraction.c */, + ); + path = BrotliCustomDecompressLib; + sourceTree = ""; + }; + A5814A912538170900CF4451 /* brotli */ = { + isa = PBXGroup; + children = ( + A5814A922538170900CF4451 /* port.h */, + A5814A932538170900CF4451 /* types.h */, + A5814A942538170900CF4451 /* decode.h */, + ); + path = brotli; + sourceTree = ""; + }; + A5814A962538170900CF4451 /* docs */ = { + isa = PBXGroup; + children = ( + A5814A972538170900CF4451 /* brotli-comparison-study-2015-09-22.pdf */, + ); + path = docs; + sourceTree = ""; + }; + A5814A992538170900CF4451 /* common */ = { + isa = PBXGroup; + children = ( + A5814A9A2538170900CF4451 /* dictionary.c */, + A5814A9B2538170900CF4451 /* version.h */, + A5814A9C2538170900CF4451 /* transform.c */, + A5814A9D2538170900CF4451 /* context.h */, + A5814A9E2538170900CF4451 /* constants.h */, + A5814A9F2538170900CF4451 /* dictionary.h */, + A5814AA02538170900CF4451 /* transform.h */, + A5814AA12538170900CF4451 /* platform.h */, + ); + path = common; + sourceTree = ""; + }; + A5814AA22538170900CF4451 /* dec */ = { + isa = PBXGroup; + children = ( + A5814AA32538170900CF4451 /* state.c */, + A5814AA42538170900CF4451 /* bit_reader.h */, + A5814AA52538170900CF4451 /* decode.c */, + A5814AA62538170900CF4451 /* huffman.c */, + A5814AA72538170900CF4451 /* bit_reader.c */, + A5814AA82538170900CF4451 /* prefix.h */, + A5814AA92538170900CF4451 /* state.h */, + A5814AAA2538170900CF4451 /* huffman.h */, + ); + path = dec; + sourceTree = ""; + }; + A5814AAF2538170900CF4451 /* ResetUtilityLib */ = { + isa = PBXGroup; + children = ( + A5814AB02538170900CF4451 /* ResetUtility.c */, + A5814AB12538170900CF4451 /* ResetUtilityLib.inf */, + ); + path = ResetUtilityLib; + sourceTree = ""; + }; + A5814AB22538170900CF4451 /* SmmCorePerformanceLib */ = { + isa = PBXGroup; + children = ( + A5814AB32538170900CF4451 /* SmmCorePerformanceLib.c */, + A5814AB42538170900CF4451 /* SmmCorePerformanceLib.uni */, + A5814AB52538170900CF4451 /* SmmCorePerformanceLib.inf */, + A5814AB62538170900CF4451 /* SmmCorePerformanceLibInternal.h */, + ); + path = SmmCorePerformanceLib; + sourceTree = ""; + }; + A5814AB72538170900CF4451 /* UefiMemoryAllocationProfileLib */ = { + isa = PBXGroup; + children = ( + A5814AB82538170900CF4451 /* MemoryAllocationLib.c */, + A5814AB92538170900CF4451 /* UefiMemoryAllocationProfileLib.uni */, + A5814ABA2538170900CF4451 /* UefiMemoryAllocationProfileLib.inf */, + A5814ABB2538170900CF4451 /* DxeMemoryProfileLib.c */, + ); + path = UefiMemoryAllocationProfileLib; + sourceTree = ""; + }; + A5814ABC2538170900CF4451 /* PeiDebugLibDebugPpi */ = { + isa = PBXGroup; + children = ( + A5814ABD2538170900CF4451 /* PeiDebugLibDebugPpi.inf */, + A5814ABE2538170900CF4451 /* DebugLib.c */, + ); + path = PeiDebugLibDebugPpi; + sourceTree = ""; + }; + A5814ABF2538170900CF4451 /* SmmSmiHandlerProfileLib */ = { + isa = PBXGroup; + children = ( + A5814AC02538170900CF4451 /* SmmSmiHandlerProfileLib.c */, + A5814AC12538170900CF4451 /* SmmSmiHandlerProfileLib.inf */, + A5814AC22538170900CF4451 /* SmmSmiHandlerProfileLib.uni */, + ); + path = SmmSmiHandlerProfileLib; + sourceTree = ""; + }; + A5814AC32538170900CF4451 /* DxeReportStatusCodeLib */ = { + isa = PBXGroup; + children = ( + A5814AC42538170900CF4451 /* DxeReportStatusCodeLib.inf */, + A5814AC52538170900CF4451 /* DxeReportStatusCodeLib.uni */, + A5814AC62538170900CF4451 /* ReportStatusCodeLib.c */, + ); + path = DxeReportStatusCodeLib; + sourceTree = ""; + }; + A5814AC72538170900CF4451 /* VarCheckUefiLib */ = { + isa = PBXGroup; + children = ( + A5814AC82538170900CF4451 /* VarCheckUefiLib.inf */, + A5814AC92538170900CF4451 /* VarCheckUefiLib.uni */, + A5814ACA2538170900CF4451 /* VarCheckUefiLibNullClass.c */, + ); + path = VarCheckUefiLib; + sourceTree = ""; + }; + A5814ACB2538170900CF4451 /* RuntimeResetSystemLib */ = { + isa = PBXGroup; + children = ( + A5814ACC2538170900CF4451 /* RuntimeResetSystemLib.inf */, + A5814ACD2538170900CF4451 /* RuntimeResetSystemLib.c */, + A5814ACE2538170900CF4451 /* RuntimeResetSystemLib.uni */, + ); + path = RuntimeResetSystemLib; + sourceTree = ""; + }; + A5814ACF2538170900CF4451 /* VarCheckPcdLib */ = { + isa = PBXGroup; + children = ( + A5814AD02538170900CF4451 /* VarCheckPcdLibNullClass.c */, + A5814AD12538170900CF4451 /* VarCheckPcdStructure.h */, + A5814AD22538170900CF4451 /* VarCheckPcdLib.uni */, + A5814AD32538170900CF4451 /* VarCheckPcdLib.inf */, + ); + path = VarCheckPcdLib; + sourceTree = ""; + }; + A5814AD42538170900CF4451 /* DxeSecurityManagementLib */ = { + isa = PBXGroup; + children = ( + A5814AD52538170900CF4451 /* DxeSecurityManagementLib.c */, + A5814AD62538170900CF4451 /* DxeSecurityManagementLib.uni */, + A5814AD72538170900CF4451 /* DxeSecurityManagementLib.inf */, + ); + path = DxeSecurityManagementLib; + sourceTree = ""; + }; + A5814AD82538170900CF4451 /* PiSmmCoreMemoryAllocationLib */ = { + isa = PBXGroup; + children = ( + A5814AD92538170900CF4451 /* PiSmmCoreMemoryProfileLib.c */, + A5814ADA2538170900CF4451 /* PiSmmCoreMemoryAllocationServices.h */, + A5814ADB2538170900CF4451 /* MemoryAllocationLib.c */, + A5814ADC2538170900CF4451 /* PiSmmCoreMemoryProfileServices.h */, + A5814ADD2538170900CF4451 /* PiSmmCoreMemoryAllocationLib.uni */, + A5814ADE2538170900CF4451 /* PiSmmCoreMemoryAllocationProfileLib.inf */, + A5814ADF2538170900CF4451 /* PiSmmCoreMemoryProfileLibNull.c */, + A5814AE02538170900CF4451 /* PiSmmCoreMemoryAllocationLib.inf */, + A5814AE12538170900CF4451 /* PiSmmCoreMemoryAllocationProfileLib.uni */, + ); + path = PiSmmCoreMemoryAllocationLib; + sourceTree = ""; + }; + A5814AE22538170900CF4451 /* DxePrintLibPrint2Protocol */ = { + isa = PBXGroup; + children = ( + A5814AE32538170900CF4451 /* DxePrintLibPrint2Protocol.uni */, + A5814AE42538170900CF4451 /* PrintLib.c */, + A5814AE52538170900CF4451 /* DxePrintLibPrint2Protocol.inf */, + ); + path = DxePrintLibPrint2Protocol; + sourceTree = ""; + }; + A5814AE62538170900CF4451 /* DxeCoreMemoryAllocationLib */ = { + isa = PBXGroup; + children = ( + A5814AE72538170900CF4451 /* MemoryAllocationLib.c */, + A5814AE82538170900CF4451 /* DxeCoreMemoryAllocationServices.h */, + A5814AE92538170900CF4451 /* DxeCoreMemoryProfileServices.h */, + A5814AEA2538170900CF4451 /* DxeCoreMemoryAllocationProfileLib.inf */, + A5814AEB2538170900CF4451 /* DxeCoreMemoryAllocationProfileLib.uni */, + A5814AEC2538170900CF4451 /* DxeCoreMemoryProfileLib.c */, + A5814AED2538170900CF4451 /* DxeCoreMemoryAllocationLib.uni */, + A5814AEE2538170900CF4451 /* DxeCoreMemoryAllocationLib.inf */, + A5814AEF2538170900CF4451 /* DxeCoreMemoryProfileLibNull.c */, + ); + path = DxeCoreMemoryAllocationLib; + sourceTree = ""; + }; + A5814AF02538170900CF4451 /* BootManagerUiLib */ = { + isa = PBXGroup; + children = ( + A5814AF12538170900CF4451 /* BootManagerStrings.uni */, + A5814AF22538170900CF4451 /* BootManager.h */, + A5814AF32538170900CF4451 /* BootManagerUiLib.uni */, + A5814AF42538170900CF4451 /* BootManagerVfr.Vfr */, + A5814AF52538170900CF4451 /* BootManagerUiLib.inf */, + A5814AF62538170900CF4451 /* BootManager.c */, + ); + path = BootManagerUiLib; + sourceTree = ""; + }; + A5814AF72538170900CF4451 /* BaseBmpSupportLib */ = { + isa = PBXGroup; + children = ( + A5814AF82538170900CF4451 /* BmpSupportLib.c */, + A5814AF92538170900CF4451 /* BaseBmpSupportLib.inf */, + A5814AFA2538170900CF4451 /* BaseBmpSupportLib.uni */, + ); + path = BaseBmpSupportLib; + sourceTree = ""; + }; + A5814AFB2538170900CF4451 /* CpuExceptionHandlerLibNull */ = { + isa = PBXGroup; + children = ( + A5814AFC2538170900CF4451 /* CpuExceptionHandlerLibNull.uni */, + A5814AFD2538170900CF4451 /* CpuExceptionHandlerLibNull.inf */, + A5814AFE2538170900CF4451 /* CpuExceptionHandlerLibNull.c */, + ); + path = CpuExceptionHandlerLibNull; + sourceTree = ""; + }; + A5814AFF2538170900CF4451 /* UefiHiiLib */ = { + isa = PBXGroup; + children = ( + A5814B002538170900CF4451 /* HiiLib.c */, + A5814B012538170900CF4451 /* UefiHiiLib.uni */, + A5814B022538170900CF4451 /* UefiHiiLib.inf */, + A5814B032538170900CF4451 /* HiiString.c */, + A5814B042538170900CF4451 /* HiiLanguage.c */, + A5814B052538170900CF4451 /* InternalHiiLib.h */, + ); + path = UefiHiiLib; + sourceTree = ""; + }; + A5814B062538170900CF4451 /* BaseSortLib */ = { + isa = PBXGroup; + children = ( + A5814B072538170900CF4451 /* BaseSortLib.inf */, + A5814B082538170900CF4451 /* BaseSortLib.uni */, + A5814B092538170900CF4451 /* BaseSortLib.c */, + ); + path = BaseSortLib; + sourceTree = ""; + }; + A5814B0A2538170900CF4451 /* DxeCorePerformanceLib */ = { + isa = PBXGroup; + children = ( + A5814B0B2538170900CF4451 /* DxeCorePerformanceLib.c */, + A5814B0C2538170900CF4451 /* DxeCorePerformanceLibInternal.h */, + A5814B0D2538170900CF4451 /* DxeCorePerformanceLib.inf */, + A5814B0E2538170900CF4451 /* DxeCorePerformanceLib.uni */, + ); + path = DxeCorePerformanceLib; + sourceTree = ""; + }; + A5814B0F2538170900CF4451 /* DxeResetSystemLib */ = { + isa = PBXGroup; + children = ( + A5814B102538170900CF4451 /* DxeResetSystemLib.uni */, + A5814B112538170900CF4451 /* DxeResetSystemLib.inf */, + A5814B122538170900CF4451 /* DxeResetSystemLib.c */, + ); + path = DxeResetSystemLib; + sourceTree = ""; + }; + A5814B132538170900CF4451 /* PeiResetSystemLib */ = { + isa = PBXGroup; + children = ( + A5814B142538170900CF4451 /* PeiResetSystemLib.uni */, + A5814B152538170900CF4451 /* PeiResetSystemLib.inf */, + A5814B162538170900CF4451 /* PeiResetSystemLib.c */, + ); + path = PeiResetSystemLib; + sourceTree = ""; + }; + A5814B182538170900CF4451 /* Logo */ = { + isa = PBXGroup; + children = ( + A5814B192538170900CF4451 /* LogoDxe.uni */, + A5814B1A2538170900CF4451 /* LogoDxe.inf */, + A5814B1B2538170900CF4451 /* Logo.bmp */, + A5814B1C2538170900CF4451 /* Logo.uni */, + A5814B1D2538170900CF4451 /* LogoDxeExtra.uni */, + A5814B1E2538170900CF4451 /* LogoExtra.uni */, + A5814B1F2538170900CF4451 /* Logo.inf */, + A5814B202538170900CF4451 /* Logo.idf */, + A5814B212538170900CF4451 /* Logo.c */, + ); + path = Logo; + sourceTree = ""; + }; + A5814B242538170900CF4451 /* Application */ = { + isa = PBXGroup; + children = ( + A5814B252538170900CF4451 /* UiApp */, + A5814B342538170900CF4451 /* HelloWorld */, + A5814B3A2538170900CF4451 /* BootManagerMenuApp */, + A5814B412538170900CF4451 /* CapsuleApp */, + A5814B4A2538170900CF4451 /* MemoryProfileInfo */, + A5814B4F2538170900CF4451 /* DumpDynPcd */, + A5814B532538170900CF4451 /* VariableInfo */, + A5814B582538170900CF4451 /* SmiHandlerProfileInfo */, + ); + path = Application; + sourceTree = ""; + }; + A5814B252538170900CF4451 /* UiApp */ = { + isa = PBXGroup; + children = ( + A5814B262538170900CF4451 /* FrontPage.h */, + A5814B272538170900CF4451 /* FrontPageCustomizedUi.h */, + A5814B282538170900CF4451 /* Ui.h */, + A5814B292538170900CF4451 /* FrontPageCustomizedUiSupport.c */, + A5814B2A2538170900CF4451 /* FrontPageVfr.Vfr */, + A5814B2B2538170900CF4451 /* String.c */, + A5814B2C2538170900CF4451 /* FrontPageCustomizedUi.c */, + A5814B2D2538170900CF4451 /* UiApp.uni */, + A5814B2E2538170900CF4451 /* FrontPage.c */, + A5814B2F2538170900CF4451 /* FrontPageStrings.uni */, + A5814B302538170900CF4451 /* UiAppExtra.uni */, + A5814B312538170900CF4451 /* UiApp.inf */, + A5814B322538170900CF4451 /* FrontPageCustomizedUiSupport.h */, + A5814B332538170900CF4451 /* String.h */, + ); + path = UiApp; + sourceTree = ""; + }; + A5814B342538170900CF4451 /* HelloWorld */ = { + isa = PBXGroup; + children = ( + A5814B352538170900CF4451 /* HelloWorldStr.uni */, + A5814B362538170900CF4451 /* HelloWorld.uni */, + A5814B372538170900CF4451 /* HelloWorld.inf */, + A5814B382538170900CF4451 /* HelloWorld.c */, + A5814B392538170900CF4451 /* HelloWorldExtra.uni */, + ); + path = HelloWorld; + sourceTree = ""; + }; + A5814B3A2538170900CF4451 /* BootManagerMenuApp */ = { + isa = PBXGroup; + children = ( + A5814B3B2538170900CF4451 /* BootManagerMenu.c */, + A5814B3C2538170900CF4451 /* BootManagerMenuAppExtra.uni */, + A5814B3D2538170900CF4451 /* BootManagerMenuStrings.uni */, + A5814B3E2538170900CF4451 /* BootManagerMenu.h */, + A5814B3F2538170900CF4451 /* BootManagerMenuApp.inf */, + A5814B402538170900CF4451 /* BootManagerMenuApp.uni */, + ); + path = BootManagerMenuApp; + sourceTree = ""; + }; + A5814B412538170900CF4451 /* CapsuleApp */ = { + isa = PBXGroup; + children = ( + A5814B422538170900CF4451 /* CapsuleApp.h */, + A5814B432538170900CF4451 /* CapsuleApp.inf */, + A5814B442538170900CF4451 /* AppSupport.c */, + A5814B452538170900CF4451 /* CapsuleApp.uni */, + A5814B462538170900CF4451 /* CapsuleAppExtra.uni */, + A5814B472538170900CF4451 /* CapsuleOnDisk.c */, + A5814B482538170900CF4451 /* CapsuleApp.c */, + A5814B492538170900CF4451 /* CapsuleDump.c */, + ); + path = CapsuleApp; + sourceTree = ""; + }; + A5814B4A2538170900CF4451 /* MemoryProfileInfo */ = { + isa = PBXGroup; + children = ( + A5814B4B2538170900CF4451 /* MemoryProfileInfo.inf */, + A5814B4C2538170900CF4451 /* MemoryProfileInfo.c */, + A5814B4D2538170900CF4451 /* MemoryProfileInfo.uni */, + A5814B4E2538170900CF4451 /* MemoryProfileInfoExtra.uni */, + ); + path = MemoryProfileInfo; + sourceTree = ""; + }; + A5814B4F2538170900CF4451 /* DumpDynPcd */ = { + isa = PBXGroup; + children = ( + A5814B502538170900CF4451 /* DumpDynPcd.inf */, + A5814B512538170900CF4451 /* DumpDynPcdStr.uni */, + A5814B522538170900CF4451 /* DumpDynPcd.c */, + ); + path = DumpDynPcd; + sourceTree = ""; + }; + A5814B532538170900CF4451 /* VariableInfo */ = { + isa = PBXGroup; + children = ( + A5814B542538170900CF4451 /* VariableInfoExtra.uni */, + A5814B552538170900CF4451 /* VariableInfo.inf */, + A5814B562538170900CF4451 /* VariableInfo.uni */, + A5814B572538170900CF4451 /* VariableInfo.c */, + ); + path = VariableInfo; + sourceTree = ""; + }; + A5814B582538170900CF4451 /* SmiHandlerProfileInfo */ = { + isa = PBXGroup; + children = ( + A5814B592538170900CF4451 /* SmiHandlerProfileInfoExtra.uni */, + A5814B5A2538170900CF4451 /* SmiHandlerProfileInfo.uni */, + A5814B5B2538170900CF4451 /* SmiHandlerProfileInfo.inf */, + A5814B5C2538170900CF4451 /* SmiHandlerProfileInfo.c */, + ); + path = SmiHandlerProfileInfo; + sourceTree = ""; + }; + A5814B5E2538171000CF4451 /* MdePkg */ = { + isa = PBXGroup; + children = ( + A5814B5F2538171000CF4451 /* Include */, + A5814D872538171100CF4451 /* Library */, + A581522B2538171300CF4451 /* MdePkg.dec */, + A581522C2538171300CF4451 /* MdePkg.uni */, + A581522D2538171300CF4451 /* MdePkgExtra.uni */, + A581522E2538171300CF4451 /* MdePkg.dsc */, + ); + name = MdePkg; + path = ../../../MdePkg; + sourceTree = ""; + }; + A5814B5F2538171000CF4451 /* Include */ = { + isa = PBXGroup; + children = ( + A5814B602538171000CF4451 /* PiPei.h */, + A5814B612538171000CF4451 /* PiMm.h */, + A5814B622538171000CF4451 /* Uefi.h */, + A5814B632538171000CF4451 /* X64 */, + A5814B662538171000CF4451 /* Uefi */, + A5814B6E2538171000CF4451 /* IndustryStandard */, + A5814BBF2538171000CF4451 /* Library */, + A5814C002538171000CF4451 /* Protocol */, + A5814CFA2538171100CF4451 /* Pi */, + A5814D082538171100CF4451 /* PiSmm.h */, + A5814D092538171100CF4451 /* Register */, + A5814D2E2538171100CF4451 /* PiDxe.h */, + A5814D2F2538171100CF4451 /* Guid */, + A5814D572538171100CF4451 /* Ppi */, + A5814D862538171100CF4451 /* Base.h */, + ); + path = Include; + sourceTree = ""; + }; + A5814B632538171000CF4451 /* X64 */ = { + isa = PBXGroup; + children = ( + A5814B642538171000CF4451 /* Nasm.inc */, + A5814B652538171000CF4451 /* ProcessorBind.h */, + ); + path = X64; + sourceTree = ""; + }; + A5814B662538171000CF4451 /* Uefi */ = { + isa = PBXGroup; + children = ( + A5814B672538171000CF4451 /* UefiAcpiDataTable.h */, + A5814B682538171000CF4451 /* UefiPxe.h */, + A5814B692538171000CF4451 /* UefiSpec.h */, + A5814B6A2538171000CF4451 /* UefiGpt.h */, + A5814B6B2538171000CF4451 /* UefiBaseType.h */, + A5814B6C2538171000CF4451 /* UefiInternalFormRepresentation.h */, + A5814B6D2538171000CF4451 /* UefiMultiPhase.h */, + ); + path = Uefi; + sourceTree = ""; + }; + A5814B6E2538171000CF4451 /* IndustryStandard */ = { + isa = PBXGroup; + children = ( + A5814B6F2538171000CF4451 /* IpmiNetFnFirmware.h */, + A5814B702538171000CF4451 /* SdramSpdLpDdr.h */, + A5814B712538171000CF4451 /* ElTorito.h */, + A5814B722538171000CF4451 /* SdramSpdDdr3.h */, + A5814B732538171000CF4451 /* Acpi62.h */, + A5814B742538171000CF4451 /* WindowsSmmSecurityMitigationTable.h */, + A5814B752538171000CF4451 /* Nvme.h */, + A5814B762538171000CF4451 /* IoRemappingTable.h */, + A5814B772538171000CF4451 /* LowPowerIdleTable.h */, + A5814B782538171000CF4451 /* Emmc.h */, + A5814B792538171000CF4451 /* WatchdogActionTable.h */, + A5814B7A2538171000CF4451 /* DmaRemappingReportingTable.h */, + A5814B7B2538171000CF4451 /* AlertStandardFormatTable.h */, + A5814B7C2538171000CF4451 /* Acpi40.h */, + A5814B7D2538171000CF4451 /* Bmp.h */, + A5814B7E2538171000CF4451 /* UefiTcgPlatform.h */, + A5814B7F2538171000CF4451 /* SerialPortConsoleRedirectionTable.h */, + A5814B802538171000CF4451 /* Pci22.h */, + A5814B812538171000CF4451 /* Mbr.h */, + A5814B822538171000CF4451 /* Acpi61.h */, + A5814B832538171000CF4451 /* SdramSpdDdr4.h */, + A5814B842538171000CF4451 /* TcgStorageOpal.h */, + A5814B852538171000CF4451 /* IpmiNetFnChassis.h */, + A5814B862538171000CF4451 /* Acpi.h */, + A5814B872538171000CF4451 /* Tpm2Acpi.h */, + A5814B882538171000CF4451 /* PeImage.h */, + A5814B892538171000CF4451 /* PciExpress30.h */, + A5814B8A2538171000CF4451 /* SdramSpd.h */, + A5814B8B2538171000CF4451 /* Acpi10.h */, + A5814B8C2538171000CF4451 /* MemoryMappedConfigurationSpaceAccessTable.h */, + A5814B8D2538171000CF4451 /* IpmiFruInformationStorage.h */, + A5814B8E2538171000CF4451 /* IpmiNetFnStorage.h */, + A5814B8F2538171000CF4451 /* IScsiBootFirmwareTable.h */, + A5814B902538171000CF4451 /* Bluetooth.h */, + A5814B912538171000CF4451 /* AcpiAml.h */, + A5814B922538171000CF4451 /* Acpi50.h */, + A5814B932538171000CF4451 /* Tpm20.h */, + A5814B942538171000CF4451 /* PciCodeId.h */, + A5814B952538171000CF4451 /* IpmiNetFnTransport.h */, + A5814B962538171000CF4451 /* Dhcp.h */, + A5814B972538171000CF4451 /* TpmPtp.h */, + A5814B982538171000CF4451 /* Acpi20.h */, + A5814B992538171000CF4451 /* Pci23.h */, + A5814B9A2538171000CF4451 /* IpmiNetFnApp.h */, + A5814B9B2538171000CF4451 /* PciExpress40.h */, + A5814B9C2538171000CF4451 /* IpmiNetFnSensorEvent.h */, + A5814B9D2538171000CF4451 /* Acpi60.h */, + A5814B9E2538171000CF4451 /* PciExpress21.h */, + A5814B9F2538171000CF4451 /* PciExpress31.h */, + A5814BA02538171000CF4451 /* TcgStorageCore.h */, + A5814BA12538171000CF4451 /* HighPrecisionEventTimerTable.h */, + A5814BA22538171000CF4451 /* Usb.h */, + A5814BA32538171000CF4451 /* Acpi51.h */, + A5814BA42538171000CF4451 /* Sd.h */, + A5814BA52538171000CF4451 /* WatchdogResourceTable.h */, + A5814BA62538171000CF4451 /* Acpi30.h */, + A5814BA72538171000CF4451 /* Udf.h */, + A5814BA82538171000CF4451 /* DebugPortTable.h */, + A5814BA92538171000CF4451 /* SmBios.h */, + A5814BAA2538171000CF4451 /* MemoryOverwriteRequestControlLock.h */, + A5814BAB2538171000CF4451 /* Atapi.h */, + A5814BAC2538171000CF4451 /* TcpaAcpi.h */, + A5814BAD2538171000CF4451 /* LegacyBiosMpTable.h */, + A5814BAE2538171000CF4451 /* TpmTis.h */, + A5814BAF2538171000CF4451 /* Acpi63.h */, + A5814BB02538171000CF4451 /* SmBus.h */, + A5814BB12538171000CF4451 /* Http11.h */, + A5814BB22538171000CF4451 /* TcgPhysicalPresence.h */, + A5814BB32538171000CF4451 /* IpmiNetFnGroupExtension.h */, + A5814BB42538171000CF4451 /* Tls1.h */, + A5814BB52538171000CF4451 /* Pci.h */, + A5814BB62538171000CF4451 /* DebugPort2Table.h */, + A5814BB72538171000CF4451 /* Scsi.h */, + A5814BB82538171000CF4451 /* Pci30.h */, + A5814BB92538171000CF4451 /* Hsti.h */, + A5814BBA2538171000CF4451 /* WindowsUxCapsule.h */, + A5814BBB2538171000CF4451 /* Tpm12.h */, + A5814BBC2538171000CF4451 /* Ipmi.h */, + A5814BBD2538171000CF4451 /* IpmiNetFnBridge.h */, + A5814BBE2538171000CF4451 /* ServiceProcessorManagementInterfaceTable.h */, + ); + path = IndustryStandard; + sourceTree = ""; + }; + A5814BBF2538171000CF4451 /* Library */ = { + isa = PBXGroup; + children = ( + A5814BC02538171000CF4451 /* OrderedCollectionLib.h */, + A5814BC12538171000CF4451 /* TimerLib.h */, + A5814BC22538171000CF4451 /* PeiServicesTablePointerLib.h */, + A5814BC32538171000CF4451 /* SmiHandlerProfileLib.h */, + A5814BC42538171000CF4451 /* UefiUsbLib.h */, + A5814BC52538171000CF4451 /* UefiDecompressLib.h */, + A5814BC62538171000CF4451 /* UefiRuntimeServicesTableLib.h */, + A5814BC72538171000CF4451 /* PeimEntryPoint.h */, + A5814BC82538171000CF4451 /* RngLib.h */, + A5814BC92538171000CF4451 /* PciCf8Lib.h */, + A5814BCA2538171000CF4451 /* SmmPeriodicSmiLib.h */, + A5814BCB2538171000CF4451 /* PeiCoreEntryPoint.h */, + A5814BCC2538171000CF4451 /* S3PciLib.h */, + A5814BCD2538171000CF4451 /* PciSegmentLib.h */, + A5814BCE2538171000CF4451 /* DebugLib.h */, + A5814BCF2538171000CF4451 /* SynchronizationLib.h */, + A5814BD02538171000CF4451 /* SafeIntLib.h */, + A5814BD12538171000CF4451 /* S3SmbusLib.h */, + A5814BD22538171000CF4451 /* DevicePathLib.h */, + A5814BD32538171000CF4451 /* PcdLib.h */, + A5814BD42538171000CF4451 /* FileHandleLib.h */, + A5814BD52538171000CF4451 /* UefiLib.h */, + A5814BD62538171000CF4451 /* SmmMemLib.h */, + A5814BD72538171000CF4451 /* PostCodeLib.h */, + A5814BD82538171000CF4451 /* S3StallLib.h */, + A5814BD92538171000CF4451 /* PciLib.h */, + A5814BDA2538171000CF4451 /* UefiBootServicesTableLib.h */, + A5814BDB2538171000CF4451 /* MmServicesTableLib.h */, + A5814BDC2538171000CF4451 /* PeCoffExtraActionLib.h */, + A5814BDD2538171000CF4451 /* PciExpressLib.h */, + A5814BDE2538171000CF4451 /* S3IoLib.h */, + A5814BDF2538171000CF4451 /* ReportStatusCodeLib.h */, + A5814BE02538171000CF4451 /* UefiScsiLib.h */, + A5814BE12538171000CF4451 /* UefiRuntimeLib.h */, + A5814BE22538171000CF4451 /* SmmServicesTableLib.h */, + A5814BE32538171000CF4451 /* SerialPortLib.h */, + A5814BE42538171000CF4451 /* DxeCoreEntryPoint.h */, + A5814BE52538171000CF4451 /* PeCoffGetEntryPointLib.h */, + A5814BE62538171000CF4451 /* UefiDriverEntryPoint.h */, + A5814BE72538171000CF4451 /* BaseMemoryLib.h */, + A5814BE82538171000CF4451 /* DxeServicesLib.h */, + A5814BE92538171000CF4451 /* PeCoffLib.h */, + A5814BEA2538171000CF4451 /* S3PciSegmentLib.h */, + A5814BEB2538171000CF4451 /* BaseLib.h */, + A5814BEC2538171000CF4451 /* SmmLib.h */, + A5814BED2538171000CF4451 /* PeiServicesLib.h */, + A5814BEE2538171000CF4451 /* DxeServicesTableLib.h */, + A5814BEF2538171000CF4451 /* SmbusLib.h */, + A5814BF02538171000CF4451 /* MemoryAllocationLib.h */, + A5814BF12538171000CF4451 /* HstiLib.h */, + A5814BF22538171000CF4451 /* ExtractGuidedSectionLib.h */, + A5814BF32538171000CF4451 /* ResourcePublicationLib.h */, + A5814BF42538171000CF4451 /* S3BootScriptLib.h */, + A5814BF52538171000CF4451 /* CacheMaintenanceLib.h */, + A5814BF62538171000CF4451 /* CpuLib.h */, + A5814BF72538171000CF4451 /* StandaloneMmDriverEntryPoint.h */, + A5814BF82538171000CF4451 /* SmmIoLib.h */, + A5814BF92538171000CF4451 /* IoLib.h */, + A5814BFA2538171000CF4451 /* PrintLib.h */, + A5814BFB2538171000CF4451 /* UefiApplicationEntryPoint.h */, + A5814BFC2538171000CF4451 /* PerformanceLib.h */, + A5814BFD2538171000CF4451 /* HobLib.h */, + A5814BFE2538171000CF4451 /* DebugPrintErrorLevelLib.h */, + A5814BFF2538171000CF4451 /* PciSegmentInfoLib.h */, + ); + path = Library; + sourceTree = ""; + }; + A5814C002538171000CF4451 /* Protocol */ = { + isa = PBXGroup; + children = ( + A5814C012538171000CF4451 /* LegacySpiController.h */, + A5814C022538171000CF4451 /* SpiHc.h */, + A5814C032538171000CF4451 /* Tcp4.h */, + A5814C042538171000CF4451 /* DriverFamilyOverride.h */, + A5814C052538171000CF4451 /* MmSxDispatch.h */, + A5814C062538171000CF4451 /* MmCpu.h */, + A5814C072538171000CF4451 /* TcgService.h */, + A5814C082538171000CF4451 /* WiFi2.h */, + A5814C092538171000CF4451 /* PartitionInfo.h */, + A5814C0A2538171000CF4451 /* SmmReportStatusCodeHandler.h */, + A5814C0B2538171000CF4451 /* UgaDraw.h */, + A5814C0C2538171000CF4451 /* Bis.h */, + A5814C0D2538171000CF4451 /* SmartCardEdge.h */, + A5814C0E2538171000CF4451 /* EapConfiguration.h */, + A5814C0F2538171000CF4451 /* ShellDynamicCommand.h */, + A5814C102538171000CF4451 /* Rest.h */, + A5814C112538171000CF4451 /* NvdimmLabel.h */, + A5814C122538171000CF4451 /* Udp4.h */, + A5814C132538171000CF4451 /* LoadedImage.h */, + A5814C142538171000CF4451 /* WiFi.h */, + A5814C152538171000CF4451 /* SmmSwDispatch2.h */, + A5814C162538171000CF4451 /* FormBrowser2.h */, + A5814C172538171000CF4451 /* I2cHost.h */, + A5814C182538171000CF4451 /* DevicePathFromText.h */, + A5814C192538171000CF4451 /* Shell.h */, + A5814C1A2538171000CF4451 /* IpSec.h */, + A5814C1B2538171000CF4451 /* SimpleTextInEx.h */, + A5814C1C2538171000CF4451 /* CpuIo2.h */, + A5814C1D2538171000CF4451 /* Ip4.h */, + A5814C1E2538171000CF4451 /* DriverConfiguration.h */, + A5814C1F2538171000CF4451 /* SpiSmmConfiguration.h */, + A5814C202538171000CF4451 /* DiskIo.h */, + A5814C212538171000CF4451 /* Tls.h */, + A5814C222538171000CF4451 /* MmReadyToLock.h */, + A5814C232538171000CF4451 /* SimpleFileSystem.h */, + A5814C242538171000CF4451 /* MmStatusCode.h */, + A5814C252538171000CF4451 /* Http.h */, + A5814C262538171000CF4451 /* ScsiPassThruExt.h */, + A5814C272538171000CF4451 /* HiiConfigAccess.h */, + A5814C282538171000CF4451 /* SmbusHc.h */, + A5814C292538171000CF4451 /* DevicePathToText.h */, + A5814C2A2538171000CF4451 /* MmCpuIo.h */, + A5814C2B2538171000CF4451 /* ServiceBinding.h */, + A5814C2C2538171000CF4451 /* DriverConfiguration2.h */, + A5814C2D2538171000CF4451 /* Usb2HostController.h */, + A5814C2E2538171000CF4451 /* FirmwareManagement.h */, + A5814C2F2538171000CF4451 /* EdidDiscovered.h */, + A5814C302538171000CF4451 /* MmEndOfDxe.h */, + A5814C312538171000CF4451 /* BootManagerPolicy.h */, + A5814C322538171000CF4451 /* RealTimeClock.h */, + A5814C332538171000CF4451 /* SimplePointer.h */, + A5814C342538171000CF4451 /* Ip6Config.h */, + A5814C352538171000CF4451 /* I2cIo.h */, + A5814C362538171000CF4451 /* Dns6.h */, + A5814C372538171000CF4451 /* UfsDeviceConfig.h */, + A5814C382538171000CF4451 /* DeviceIo.h */, + A5814C392538171000CF4451 /* ReportStatusCodeHandler.h */, + A5814C3A2538171000CF4451 /* TlsConfig.h */, + A5814C3B2538171000CF4451 /* ScsiIo.h */, + A5814C3C2538171000CF4451 /* Security.h */, + A5814C3D2538171000CF4451 /* SmmSxDispatch2.h */, + A5814C3E2538171000CF4451 /* MmControl.h */, + A5814C3F2538171000CF4451 /* NetworkInterfaceIdentifier.h */, + A5814C402538171000CF4451 /* MmPowerButtonDispatch.h */, + A5814C412538171000CF4451 /* Security2.h */, + A5814C422538171000CF4451 /* EdidActive.h */, + A5814C432538171000CF4451 /* UserCredential.h */, + A5814C442538171000CF4451 /* MmAccess.h */, + A5814C452538171000CF4451 /* UnicodeCollation.h */, + A5814C462538171000CF4451 /* MonotonicCounter.h */, + A5814C472538171000CF4451 /* BluetoothHc.h */, + A5814C482538171000CF4451 /* PlatformDriverOverride.h */, + A5814C492538171000CF4451 /* ManagedNetwork.h */, + A5814C4A2538171000CF4451 /* DriverDiagnostics.h */, + A5814C4B2538171000CF4451 /* HiiImageDecoder.h */, + A5814C4C2538171000CF4451 /* SimpleNetwork.h */, + A5814C4D2538171000CF4451 /* HiiString.h */, + A5814C4E2538171000CF4451 /* TrEEProtocol.h */, + A5814C4F2538171000CF4451 /* VariableWrite.h */, + A5814C502538171000CF4451 /* BluetoothLeConfig.h */, + A5814C512538171000CF4451 /* Ip4Config.h */, + A5814C522538171000CF4451 /* MmMp.h */, + A5814C532538171000CF4451 /* HiiPopup.h */, + A5814C542538171000CF4451 /* GraphicsOutput.h */, + A5814C552538171100CF4451 /* IScsiInitiatorName.h */, + A5814C562538171100CF4451 /* Ftp4.h */, + A5814C572538171100CF4451 /* AtaPassThru.h */, + A5814C582538171100CF4451 /* SimpleTextOut.h */, + A5814C592538171100CF4451 /* HiiConfigKeyword.h */, + A5814C5A2538171100CF4451 /* PciOverride.h */, + A5814C5B2538171100CF4451 /* DiskIo2.h */, + A5814C5C2538171100CF4451 /* IsaHc.h */, + A5814C5D2538171100CF4451 /* ComponentName2.h */, + A5814C5E2538171100CF4451 /* SmmStatusCode.h */, + A5814C5F2538171100CF4451 /* PciPlatform.h */, + A5814C602538171100CF4451 /* DriverDiagnostics2.h */, + A5814C612538171100CF4451 /* Rng.h */, + A5814C622538171100CF4451 /* Dhcp4.h */, + A5814C632538171100CF4451 /* PxeBaseCode.h */, + A5814C642538171100CF4451 /* GuidedSectionExtraction.h */, + A5814C652538171100CF4451 /* Variable.h */, + A5814C662538171100CF4451 /* MmReportStatusCodeHandler.h */, + A5814C672538171100CF4451 /* DxeMmReadyToLock.h */, + A5814C682538171100CF4451 /* DriverBinding.h */, + A5814C692538171100CF4451 /* FirmwareVolume2.h */, + A5814C6A2538171100CF4451 /* BlockIo.h */, + A5814C6B2538171100CF4451 /* MmBase.h */, + A5814C6C2538171100CF4451 /* SmmCpuIo2.h */, + A5814C6D2538171100CF4451 /* SmmUsbDispatch2.h */, + A5814C6E2538171100CF4451 /* Mtftp6.h */, + A5814C6F2538171100CF4451 /* S3SmmSaveState.h */, + A5814C702538171100CF4451 /* SpiNorFlash.h */, + A5814C712538171100CF4451 /* Metronome.h */, + A5814C722538171100CF4451 /* SmmPowerButtonDispatch2.h */, + A5814C732538171100CF4451 /* Runtime.h */, + A5814C742538171100CF4451 /* LegacySpiSmmFlash.h */, + A5814C752538171100CF4451 /* PlatformToDriverConfiguration.h */, + A5814C762538171100CF4451 /* Timer.h */, + A5814C772538171100CF4451 /* DevicePathUtilities.h */, + A5814C782538171100CF4451 /* PxeBaseCodeCallBack.h */, + A5814C792538171100CF4451 /* LegacySpiSmmController.h */, + A5814C7A2538171100CF4451 /* LegacyRegion2.h */, + A5814C7B2538171100CF4451 /* DebugPort.h */, + A5814C7C2538171100CF4451 /* Tcp6.h */, + A5814C7D2538171100CF4451 /* PciRootBridgeIo.h */, + A5814C7E2538171100CF4451 /* Pcd.h */, + A5814C7F2538171100CF4451 /* UgaIo.h */, + A5814C802538171100CF4451 /* SpiSmmNorFlash.h */, + A5814C812538171100CF4451 /* Hash2.h */, + A5814C822538171100CF4451 /* SpiConfiguration.h */, + A5814C832538171100CF4451 /* SuperIoControl.h */, + A5814C842538171100CF4451 /* DevicePath.h */, + A5814C852538171100CF4451 /* TapeIo.h */, + A5814C862538171100CF4451 /* SmmCpu.h */, + A5814C872538171100CF4451 /* DriverSupportedEfiVersion.h */, + A5814C882538171100CF4451 /* StorageSecurityCommand.h */, + A5814C892538171100CF4451 /* UserManager.h */, + A5814C8A2538171100CF4451 /* PiPcd.h */, + A5814C8B2538171100CF4451 /* SecurityPolicy.h */, + A5814C8C2538171100CF4451 /* UsbFunctionIo.h */, + A5814C8D2538171100CF4451 /* BusSpecificDriverOverride.h */, + A5814C8E2538171100CF4451 /* MmSwDispatch.h */, + A5814C8F2538171100CF4451 /* Supplicant.h */, + A5814C902538171100CF4451 /* Udp6.h */, + A5814C912538171100CF4451 /* SmmReadyToLock.h */, + A5814C922538171100CF4451 /* PciHotPlugRequest.h */, + A5814C932538171100CF4451 /* AuthenticationInfo.h */, + A5814C942538171100CF4451 /* Ip4Config2.h */, + A5814C952538171100CF4451 /* MmCommunication.h */, + A5814C962538171100CF4451 /* EapManagement2.h */, + A5814C972538171100CF4451 /* Decompress.h */, + A5814C982538171100CF4451 /* PiPcdInfo.h */, + A5814C992538171100CF4451 /* PciHostBridgeResourceAllocation.h */, + A5814C9A2538171100CF4451 /* HiiPackageList.h */, + A5814C9B2538171100CF4451 /* SpiIo.h */, + A5814C9C2538171100CF4451 /* HiiImage.h */, + A5814C9D2538171100CF4451 /* Pkcs7Verify.h */, + A5814C9E2538171100CF4451 /* SmmGpiDispatch2.h */, + A5814C9F2538171100CF4451 /* SmmCommunication.h */, + A5814CA02538171100CF4451 /* NvmExpressPassthru.h */, + A5814CA12538171100CF4451 /* IpSecConfig.h */, + A5814CA22538171100CF4451 /* DeferredImageLoad.h */, + A5814CA32538171100CF4451 /* MmUsbDispatch.h */, + A5814CA42538171100CF4451 /* SmmStandbyButtonDispatch2.h */, + A5814CA52538171100CF4451 /* Capsule.h */, + A5814CA62538171100CF4451 /* SuperIo.h */, + A5814CA72538171100CF4451 /* RegularExpressionProtocol.h */, + A5814CA82538171100CF4451 /* IdeControllerInit.h */, + A5814CA92538171100CF4451 /* Cpu.h */, + A5814CAA2538171100CF4451 /* AbsolutePointer.h */, + A5814CAB2538171100CF4451 /* UsbHostController.h */, + A5814CAC2538171100CF4451 /* UsbIo.h */, + A5814CAD2538171100CF4451 /* HiiConfigRouting.h */, + A5814CAE2538171100CF4451 /* BluetoothAttribute.h */, + A5814CAF2538171100CF4451 /* Ip6.h */, + A5814CB02538171100CF4451 /* BlockIo2.h */, + A5814CB12538171100CF4451 /* Dns4.h */, + A5814CB22538171100CF4451 /* HiiDatabase.h */, + A5814CB32538171100CF4451 /* HiiImageEx.h */, + A5814CB42538171100CF4451 /* PciIo.h */, + A5814CB52538171100CF4451 /* MmPeriodicTimerDispatch.h */, + A5814CB62538171100CF4451 /* RamDisk.h */, + A5814CB72538171100CF4451 /* ScsiPassThru.h */, + A5814CB82538171100CF4451 /* DiskInfo.h */, + A5814CB92538171100CF4451 /* Bds.h */, + A5814CBA2538171100CF4451 /* SerialIo.h */, + A5814CBB2538171100CF4451 /* DriverHealth.h */, + A5814CBC2538171100CF4451 /* Arp.h */, + A5814CBD2538171100CF4451 /* ShellParameters.h */, + A5814CBE2538171100CF4451 /* IncompatiblePciDeviceSupport.h */, + A5814CBF2538171100CF4451 /* LegacySpiFlash.h */, + A5814CC02538171100CF4451 /* I2cMaster.h */, + A5814CC12538171100CF4451 /* Smbios.h */, + A5814CC22538171100CF4451 /* EapManagement.h */, + A5814CC32538171100CF4451 /* EraseBlock.h */, + A5814CC42538171100CF4451 /* Tcg2Protocol.h */, + A5814CC52538171100CF4451 /* AcpiSystemDescriptionTable.h */, + A5814CC62538171100CF4451 /* PciEnumerationComplete.h */, + A5814CC72538171100CF4451 /* ResetNotification.h */, + A5814CC82538171100CF4451 /* PciHotPlugInit.h */, + A5814CC92538171100CF4451 /* Kms.h */, + A5814CCA2538171100CF4451 /* MmPciRootBridgeIo.h */, + A5814CCB2538171100CF4451 /* I2cBusConfigurationManagement.h */, + A5814CCC2538171100CF4451 /* LoadFile.h */, + A5814CCD2538171100CF4451 /* PcdInfo.h */, + A5814CCE2538171100CF4451 /* WatchdogTimer.h */, + A5814CCF2538171100CF4451 /* SmmEndOfDxe.h */, + A5814CD02538171100CF4451 /* MmConfiguration.h */, + A5814CD12538171100CF4451 /* SmmPeriodicTimerDispatch2.h */, + A5814CD22538171100CF4451 /* S3SaveState.h */, + A5814CD32538171100CF4451 /* SdMmcPassThru.h */, + A5814CD42538171100CF4451 /* Reset.h */, + A5814CD52538171100CF4451 /* Dhcp6.h */, + A5814CD62538171100CF4451 /* DxeSmmReadyToLock.h */, + A5814CD72538171100CF4451 /* MpService.h */, + A5814CD82538171100CF4451 /* SmmConfiguration.h */, + A5814CD92538171100CF4451 /* MmGpiDispatch.h */, + A5814CDA2538171100CF4451 /* SmmControl2.h */, + A5814CDB2538171100CF4451 /* StatusCode.h */, + A5814CDC2538171100CF4451 /* Timestamp.h */, + A5814CDD2538171100CF4451 /* BlockIoCrypto.h */, + A5814CDE2538171100CF4451 /* SmartCardReader.h */, + A5814CDF2538171100CF4451 /* FirmwareVolumeBlock.h */, + A5814CE02538171100CF4451 /* HttpBootCallback.h */, + A5814CE12538171100CF4451 /* SimpleTextIn.h */, + A5814CE22538171100CF4451 /* MmIoTrapDispatch.h */, + A5814CE32538171100CF4451 /* Hash.h */, + A5814CE42538171100CF4451 /* VlanConfig.h */, + A5814CE52538171100CF4451 /* HiiFont.h */, + A5814CE62538171100CF4451 /* SmmAccess2.h */, + A5814CE72538171100CF4451 /* UserCredential2.h */, + A5814CE82538171100CF4451 /* AcpiTable.h */, + A5814CE92538171100CF4451 /* EdidOverride.h */, + A5814CEA2538171100CF4451 /* I2cEnumerate.h */, + A5814CEB2538171100CF4451 /* BluetoothConfig.h */, + A5814CEC2538171100CF4451 /* BluetoothIo.h */, + A5814CED2538171100CF4451 /* MmStandbyButtonDispatch.h */, + A5814CEE2538171100CF4451 /* Mtftp4.h */, + A5814CEF2538171100CF4451 /* SmmIoTrapDispatch2.h */, + A5814CF02538171100CF4451 /* SpiSmmHc.h */, + A5814CF12538171100CF4451 /* Ebc.h */, + A5814CF22538171100CF4451 /* DebugSupport.h */, + A5814CF32538171100CF4451 /* ComponentName.h */, + A5814CF42538171100CF4451 /* Eap.h */, + A5814CF52538171100CF4451 /* AdapterInformation.h */, + A5814CF62538171100CF4451 /* SmmBase2.h */, + A5814CF72538171100CF4451 /* SmmPciRootBridgeIo.h */, + A5814CF82538171100CF4451 /* HttpUtilities.h */, + A5814CF92538171100CF4451 /* LoadFile2.h */, + ); + path = Protocol; + sourceTree = ""; + }; + A5814CFA2538171100CF4451 /* Pi */ = { + isa = PBXGroup; + children = ( + A5814CFB2538171100CF4451 /* PiFirmwareVolume.h */, + A5814CFC2538171100CF4451 /* PiMmCis.h */, + A5814CFD2538171100CF4451 /* PiDxeCis.h */, + A5814CFE2538171100CF4451 /* PiStatusCode.h */, + A5814CFF2538171100CF4451 /* PiBootMode.h */, + A5814D002538171100CF4451 /* PiHob.h */, + A5814D012538171100CF4451 /* PiPeiCis.h */, + A5814D022538171100CF4451 /* PiSmmCis.h */, + A5814D032538171100CF4451 /* PiDependency.h */, + A5814D042538171100CF4451 /* PiS3BootScript.h */, + A5814D052538171100CF4451 /* PiMultiPhase.h */, + A5814D062538171100CF4451 /* PiFirmwareFile.h */, + A5814D072538171100CF4451 /* PiI2c.h */, + ); + path = Pi; + sourceTree = ""; + }; + A5814D092538171100CF4451 /* Register */ = { + isa = PBXGroup; + children = ( + A5814D0A2538171100CF4451 /* Intel */, + A5814D2A2538171100CF4451 /* Amd */, + ); + path = Register; + sourceTree = ""; + }; + A5814D0A2538171100CF4451 /* Intel */ = { + isa = PBXGroup; + children = ( + A5814D0B2538171100CF4451 /* Microcode.h */, + A5814D0C2538171100CF4451 /* SmramSaveStateMap.h */, + A5814D0D2538171100CF4451 /* Msr */, + A5814D232538171100CF4451 /* Cpuid.h */, + A5814D242538171100CF4451 /* StmStatusCode.h */, + A5814D252538171100CF4451 /* StmResourceDescriptor.h */, + A5814D262538171100CF4451 /* LocalApic.h */, + A5814D272538171100CF4451 /* StmApi.h */, + A5814D282538171100CF4451 /* ArchitecturalMsr.h */, + A5814D292538171100CF4451 /* Msr.h */, + ); + path = Intel; + sourceTree = ""; + }; + A5814D0D2538171100CF4451 /* Msr */ = { + isa = PBXGroup; + children = ( + A5814D0E2538171100CF4451 /* Pentium4Msr.h */, + A5814D0F2538171100CF4451 /* GoldmontPlusMsr.h */, + A5814D102538171100CF4451 /* IvyBridgeMsr.h */, + A5814D112538171100CF4451 /* BroadwellMsr.h */, + A5814D122538171100CF4451 /* HaswellEMsr.h */, + A5814D132538171100CF4451 /* XeonE7Msr.h */, + A5814D142538171100CF4451 /* Core2Msr.h */, + A5814D152538171100CF4451 /* NehalemMsr.h */, + A5814D162538171100CF4451 /* SandyBridgeMsr.h */, + A5814D172538171100CF4451 /* P6Msr.h */, + A5814D182538171100CF4451 /* PentiumMsr.h */, + A5814D192538171100CF4451 /* SilvermontMsr.h */, + A5814D1A2538171100CF4451 /* Xeon5600Msr.h */, + A5814D1B2538171100CF4451 /* SkylakeMsr.h */, + A5814D1C2538171100CF4451 /* CoreMsr.h */, + A5814D1D2538171100CF4451 /* XeonDMsr.h */, + A5814D1E2538171100CF4451 /* XeonPhiMsr.h */, + A5814D1F2538171100CF4451 /* PentiumMMsr.h */, + A5814D202538171100CF4451 /* GoldmontMsr.h */, + A5814D212538171100CF4451 /* HaswellMsr.h */, + A5814D222538171100CF4451 /* AtomMsr.h */, + ); + path = Msr; + sourceTree = ""; + }; + A5814D2A2538171100CF4451 /* Amd */ = { + isa = PBXGroup; + children = ( + A5814D2B2538171100CF4451 /* Cpuid.h */, + A5814D2C2538171100CF4451 /* Fam17Msr.h */, + A5814D2D2538171100CF4451 /* Msr.h */, + ); + path = Amd; + sourceTree = ""; + }; + A5814D2F2538171100CF4451 /* Guid */ = { + isa = PBXGroup; + children = ( + A5814D302538171100CF4451 /* MdePkgTokenSpace.h */, + A5814D312538171100CF4451 /* SmramMemoryReserve.h */, + A5814D322538171100CF4451 /* FileInfo.h */, + A5814D332538171100CF4451 /* SystemResourceTable.h */, + A5814D342538171100CF4451 /* AprioriFileName.h */, + A5814D352538171100CF4451 /* PropertiesTable.h */, + A5814D362538171100CF4451 /* MemoryAllocationHob.h */, + A5814D372538171100CF4451 /* EventGroup.h */, + A5814D382538171100CF4451 /* FirmwareFileSystem3.h */, + A5814D392538171100CF4451 /* Cper.h */, + A5814D3A2538171100CF4451 /* MemoryOverwriteControl.h */, + A5814D3B2538171100CF4451 /* Gpt.h */, + A5814D3C2538171100CF4451 /* MemoryAttributesTable.h */, + A5814D3D2538171100CF4451 /* EventLegacyBios.h */, + A5814D3E2538171100CF4451 /* FmpCapsule.h */, + A5814D3F2538171100CF4451 /* FirmwareContentsSigned.h */, + A5814D402538171100CF4451 /* Acpi.h */, + A5814D412538171100CF4451 /* Apriori.h */, + A5814D422538171100CF4451 /* DxeServices.h */, + A5814D432538171100CF4451 /* Btt.h */, + A5814D442538171100CF4451 /* HobList.h */, + A5814D452538171100CF4451 /* GraphicsInfoHob.h */, + A5814D462538171100CF4451 /* HiiFormMapMethodGuid.h */, + A5814D472538171100CF4451 /* FileSystemVolumeLabelInfo.h */, + A5814D482538171100CF4451 /* FirmwareFileSystem2.h */, + A5814D492538171100CF4451 /* StatusCodeDataTypeId.h */, + A5814D4A2538171100CF4451 /* DebugImageInfoTable.h */, + A5814D4B2538171100CF4451 /* HiiKeyBoardLayout.h */, + A5814D4C2538171100CF4451 /* WinCertificate.h */, + A5814D4D2538171100CF4451 /* SmBios.h */, + A5814D4E2538171100CF4451 /* ImageAuthentication.h */, + A5814D4F2538171100CF4451 /* VectorHandoffTable.h */, + A5814D502538171100CF4451 /* FileSystemInfo.h */, + A5814D512538171100CF4451 /* HardwareErrorVariable.h */, + A5814D522538171100CF4451 /* Mps.h */, + A5814D532538171100CF4451 /* PcAnsi.h */, + A5814D542538171100CF4451 /* GlobalVariable.h */, + A5814D552538171100CF4451 /* HiiPlatformSetupFormset.h */, + A5814D562538171100CF4451 /* CapsuleReport.h */, + ); + path = Guid; + sourceTree = ""; + }; + A5814D572538171100CF4451 /* Ppi */ = { + isa = PBXGroup; + children = ( + A5814D582538171100CF4451 /* PeiCoreFvLocation.h */, + A5814D592538171100CF4451 /* SecHobData.h */, + A5814D5A2538171100CF4451 /* VectorHandoffInfo.h */, + A5814D5B2538171100CF4451 /* ReadOnlyVariable2.h */, + A5814D5C2538171100CF4451 /* ReportStatusCodeHandler.h */, + A5814D5D2538171100CF4451 /* S3Resume2.h */, + A5814D5E2538171100CF4451 /* MmControl.h */, + A5814D5F2538171100CF4451 /* Reset2.h */, + A5814D602538171100CF4451 /* Security2.h */, + A5814D612538171100CF4451 /* MmAccess.h */, + A5814D622538171100CF4451 /* EndOfPeiPhase.h */, + A5814D632538171100CF4451 /* Smbus2.h */, + A5814D642538171100CF4451 /* BootInRecoveryMode.h */, + A5814D652538171100CF4451 /* IsaHc.h */, + A5814D662538171100CF4451 /* DxeIpl.h */, + A5814D672538171100CF4451 /* GuidedSectionExtraction.h */, + A5814D682538171100CF4451 /* MemoryDiscovered.h */, + A5814D692538171100CF4451 /* BlockIo.h */, + A5814D6A2538171100CF4451 /* Pcd.h */, + A5814D6B2538171100CF4451 /* LoadImage.h */, + A5814D6C2538171100CF4451 /* FirmwareVolumeInfo2.h */, + A5814D6D2538171100CF4451 /* PiPcd.h */, + A5814D6E2538171100CF4451 /* Stall.h */, + A5814D6F2538171100CF4451 /* PciCfg2.h */, + A5814D702538171100CF4451 /* Decompress.h */, + A5814D712538171100CF4451 /* PiPcdInfo.h */, + A5814D722538171100CF4451 /* MasterBootMode.h */, + A5814D732538171100CF4451 /* Capsule.h */, + A5814D742538171100CF4451 /* SuperIo.h */, + A5814D752538171100CF4451 /* BlockIo2.h */, + A5814D762538171100CF4451 /* FirmwareVolumeInfo.h */, + A5814D772538171100CF4451 /* I2cMaster.h */, + A5814D782538171100CF4451 /* RecoveryModule.h */, + A5814D792538171100CF4451 /* SecPlatformInformation2.h */, + A5814D7A2538171100CF4451 /* Graphics.h */, + A5814D7B2538171100CF4451 /* MpServices.h */, + A5814D7C2538171100CF4451 /* TemporaryRamSupport.h */, + A5814D7D2538171100CF4451 /* TemporaryRamDone.h */, + A5814D7E2538171100CF4451 /* DeviceRecoveryModule.h */, + A5814D7F2538171100CF4451 /* LoadFile.h */, + A5814D802538171100CF4451 /* PcdInfo.h */, + A5814D812538171100CF4451 /* Reset.h */, + A5814D822538171100CF4451 /* StatusCode.h */, + A5814D832538171100CF4451 /* SecPlatformInformation.h */, + A5814D842538171100CF4451 /* CpuIo.h */, + A5814D852538171100CF4451 /* FirmwareVolume.h */, + ); + path = Ppi; + sourceTree = ""; + }; + A5814D872538171100CF4451 /* Library */ = { + isa = PBXGroup; + children = ( + A5814D882538171100CF4451 /* PeiServicesTablePointerLibIdt */, + A5814D8C2538171100CF4451 /* StandaloneMmServicesTableLib */, + A5814D902538171100CF4451 /* PeiPciLibPciCfg2 */, + A5814D942538171100CF4451 /* PeiSmbusLibSmbus2Ppi */, + A5814D9A2538171100CF4451 /* BaseDebugPrintErrorLevelLib */, + A5814D9E2538171100CF4451 /* BaseCacheMaintenanceLib */, + A5814DA42538171100CF4451 /* DxeIoLibCpuIo2 */, + A5814DAB2538171100CF4451 /* BasePciLibCf8 */, + A5814DAF2538171100CF4451 /* PeiServicesTablePointerLib */, + A5814DB32538171100CF4451 /* BaseDebugLibNull */, + A5814DB72538171100CF4451 /* UefiPciSegmentLibPciRootBridgeIo */, + A5814DBC2538171100CF4451 /* PeiServicesLib */, + A5814DC02538171100CF4451 /* BasePciExpressLib */, + A5814DC42538171100CF4451 /* BaseS3SmbusLib */, + A5814DC82538171100CF4451 /* DxeServicesLib */, + A5814DCF2538171100CF4451 /* SecPeiDxeTimerLibCpu */, + A5814DD32538171100CF4451 /* StandaloneMmDriverEntryPoint */, + A5814DD72538171100CF4451 /* SmmPciLibPciRootBridgeIo */, + A5814DDB2538171100CF4451 /* BaseLib */, + A5814F562538171200CF4451 /* BaseMemoryLibRepStr */, + A5814F812538171200CF4451 /* BaseSynchronizationLib */, + A5814FA72538171200CF4451 /* UefiMemoryLib */, + A5814FBA2538171200CF4451 /* PciSegmentLibSegmentInfo */, + A5814FC32538171200CF4451 /* BaseCpuLib */, + A5814FDC2538171200CF4451 /* PeiExtractGuidedSectionLib */, + A5814FE02538171200CF4451 /* UefiDriverEntryPoint */, + A5814FE42538171200CF4451 /* UefiDebugLibDebugPortProtocol */, + A5814FE92538171200CF4451 /* SmmPciExpressLib */, + A5814FEC2538171200CF4451 /* DxeRuntimePciExpressLib */, + A5814FF02538171200CF4451 /* BaseMemoryLibOptDxe */, + A581502E2538171200CF4451 /* BasePerformanceLibNull */, + A58150322538171200CF4451 /* BasePciSegmentLibPci */, + A58150362538171200CF4451 /* PeiDxePostCodeLibReportStatusCode */, + A581503A2538171200CF4451 /* BasePcdLibNull */, + A581503E2538171200CF4451 /* BaseStackCheckLib */, + A58150432538171200CF4451 /* BaseRngLib */, + A58150472538171200CF4451 /* DxeCoreEntryPoint */, + A581504B2538171200CF4451 /* BasePostCodeLibPort80 */, + A581504F2538171200CF4451 /* PeiCoreEntryPoint */, + A58150532538171200CF4451 /* BasePeCoffLib */, + A581505B2538171200CF4451 /* SmmLibNull */, + A581505F2538171200CF4451 /* BasePciCf8Lib */, + A58150632538171200CF4451 /* MmServicesTableLib */, + A58150672538171200CF4451 /* BaseSafeIntLib */, + A581506D2538171200CF4451 /* SmmServicesTableLib */, + A58150712538171200CF4451 /* DxeExtractGuidedSectionLib */, + A58150752538171200CF4451 /* UefiApplicationEntryPoint */, + A58150792538171200CF4451 /* BaseMemoryLib */, + A581508D2538171200CF4451 /* SmmIoLibSmmCpuIo2 */, + A58150942538171200CF4451 /* DxeSmbusLib */, + A581509A2538171200CF4451 /* BaseSmbusLibNull */, + A581509E2538171200CF4451 /* BaseTimerLibNullTemplate */, + A58150A22538171200CF4451 /* BaseS3IoLib */, + A58150A62538171200CF4451 /* BaseDebugLibSerialPort */, + A58150AA2538171200CF4451 /* BaseMemoryLibSse2 */, + A58150D52538171200CF4451 /* BaseUefiDecompressLib */, + A58150DC2538171200CF4451 /* BaseSerialPortLibNull */, + A58150E02538171200CF4451 /* BaseS3BootScriptLibNull */, + A58150E42538171200CF4451 /* DxePcdLib */, + A58150E82538171200CF4451 /* SmmPeriodicSmiLib */, + A58150EC2538171200CF4451 /* UefiScsiLib */, + A58150F02538171200CF4451 /* PeiResourcePublicationLib */, + A58150F42538171200CF4451 /* DxeHobLib */, + A58150F82538171200CF4451 /* BaseS3PciSegmentLib */, + A58150FC2538171200CF4451 /* BasePciSegmentInfoLibNull */, + A58151002538171200CF4451 /* SmmMemoryAllocationLib */, + A58151042538171200CF4451 /* BaseExtractGuidedSectionLib */, + A58151082538171300CF4451 /* UefiBootServicesTableLib */, + A581510C2538171300CF4451 /* UefiDebugLibStdErr */, + A58151112538171300CF4451 /* PeiMemoryAllocationLib */, + A58151152538171300CF4451 /* UefiDevicePathLib */, + A58151202538171300CF4451 /* PeiHobLib */, + A58151242538171300CF4451 /* PeiMemoryLib */, + A58151372538171300CF4451 /* BaseIoLibIntrinsic */, + A58151522538171300CF4451 /* PeiPciSegmentLibPciCfg2 */, + A58151562538171300CF4451 /* BasePeCoffGetEntryPointLib */, + A581515A2538171300CF4451 /* UefiDevicePathLibDevicePathProtocol */, + A581515E2538171300CF4451 /* SmmIoLib */, + A58151622538171300CF4451 /* DxeCoreHobLib */, + A58151662538171300CF4451 /* UefiRuntimeServicesTableLib */, + A581516A2538171300CF4451 /* PeiPcdLib */, + A581516E2538171300CF4451 /* SmmMemLib */, + A58151722538171300CF4451 /* UefiFileHandleLib */, + A58151762538171300CF4451 /* DxeRuntimeDebugLibSerialPort */, + A581517A2538171300CF4451 /* BaseMemoryLibMmx */, + A58151A52538171300CF4451 /* BaseOrderedCollectionRedBlackTreeLib */, + A58151A92538171300CF4451 /* UefiMemoryAllocationLib */, + A58151AD2538171300CF4451 /* UefiRuntimeLib */, + A58151B12538171300CF4451 /* UefiDebugLibConOut */, + A58151B62538171300CF4451 /* BasePciLibPciExpress */, + A58151BA2538171300CF4451 /* UefiLib */, + A58151C42538171300CF4451 /* DxeHstiLib */, + A58151CA2538171300CF4451 /* BasePostCodeLibDebug */, + A58151CE2538171300CF4451 /* BaseS3StallLib */, + A58151D22538171300CF4451 /* BaseMemoryLibOptPei */, + A58151FD2538171300CF4451 /* UefiPciLibPciRootBridgeIo */, + A58152012538171300CF4451 /* PeimEntryPoint */, + A58152052538171300CF4451 /* SmiHandlerProfileLibNull */, + A58152092538171300CF4451 /* BaseS3PciLib */, + A581520D2538171300CF4451 /* BasePrintLib */, + A58152132538171300CF4451 /* PeiIoLibCpuIo */, + A58152192538171300CF4451 /* BaseReportStatusCodeLibNull */, + A581521D2538171300CF4451 /* DxeServicesTableLib */, + A58152212538171300CF4451 /* BasePeCoffExtraActionLibNull */, + A58152252538171300CF4451 /* UefiUsbLib */, + ); + path = Library; + sourceTree = ""; + }; + A5814D882538171100CF4451 /* PeiServicesTablePointerLibIdt */ = { + isa = PBXGroup; + children = ( + A5814D892538171100CF4451 /* PeiServicesTablePointerLibIdt.uni */, + A5814D8A2538171100CF4451 /* PeiServicesTablePointerLibIdt.inf */, + A5814D8B2538171100CF4451 /* PeiServicesTablePointer.c */, + ); + path = PeiServicesTablePointerLibIdt; + sourceTree = ""; + }; + A5814D8C2538171100CF4451 /* StandaloneMmServicesTableLib */ = { + isa = PBXGroup; + children = ( + A5814D8D2538171100CF4451 /* StandaloneMmServicesTableLib.c */, + A5814D8E2538171100CF4451 /* StandaloneMmServicesTableLib.inf */, + A5814D8F2538171100CF4451 /* StandaloneMmServicesTableLib.uni */, + ); + path = StandaloneMmServicesTableLib; + sourceTree = ""; + }; + A5814D902538171100CF4451 /* PeiPciLibPciCfg2 */ = { + isa = PBXGroup; + children = ( + A5814D912538171100CF4451 /* PeiPciLibPciCfg2.uni */, + A5814D922538171100CF4451 /* PeiPciLibPciCfg2.inf */, + A5814D932538171100CF4451 /* PciLib.c */, + ); + path = PeiPciLibPciCfg2; + sourceTree = ""; + }; + A5814D942538171100CF4451 /* PeiSmbusLibSmbus2Ppi */ = { + isa = PBXGroup; + children = ( + A5814D952538171100CF4451 /* SmbusLib.c */, + A5814D962538171100CF4451 /* InternalSmbusLib.h */, + A5814D972538171100CF4451 /* PeiSmbusLib.c */, + A5814D982538171100CF4451 /* PeiSmbusLibSmbus2Ppi.inf */, + A5814D992538171100CF4451 /* PeiSmbusLibSmbus2Ppi.uni */, + ); + path = PeiSmbusLibSmbus2Ppi; + sourceTree = ""; + }; + A5814D9A2538171100CF4451 /* BaseDebugPrintErrorLevelLib */ = { + isa = PBXGroup; + children = ( + A5814D9B2538171100CF4451 /* BaseDebugPrintErrorLevelLib.c */, + A5814D9C2538171100CF4451 /* BaseDebugPrintErrorLevelLib.inf */, + A5814D9D2538171100CF4451 /* BaseDebugPrintErrorLevelLib.uni */, + ); + path = BaseDebugPrintErrorLevelLib; + sourceTree = ""; + }; + A5814D9E2538171100CF4451 /* BaseCacheMaintenanceLib */ = { + isa = PBXGroup; + children = ( + A5814D9F2538171100CF4451 /* BaseCacheMaintenanceLib.inf */, + A5814DA02538171100CF4451 /* BaseCacheMaintenanceLib.uni */, + A5814DA12538171100CF4451 /* X86Cache.c */, + A5814DA22538171100CF4451 /* ArmCache.c */, + A5814DA32538171100CF4451 /* EbcCache.c */, + ); + path = BaseCacheMaintenanceLib; + sourceTree = ""; + }; + A5814DA42538171100CF4451 /* DxeIoLibCpuIo2 */ = { + isa = PBXGroup; + children = ( + A5814DA52538171100CF4451 /* IoLibMmioBuffer.c */, + A5814DA62538171100CF4451 /* IoLib.c */, + A5814DA72538171100CF4451 /* IoHighLevel.c */, + A5814DA82538171100CF4451 /* DxeIoLibCpuIo2.uni */, + A5814DA92538171100CF4451 /* DxeCpuIo2LibInternal.h */, + A5814DAA2538171100CF4451 /* DxeIoLibCpuIo2.inf */, + ); + path = DxeIoLibCpuIo2; + sourceTree = ""; + }; + A5814DAB2538171100CF4451 /* BasePciLibCf8 */ = { + isa = PBXGroup; + children = ( + A5814DAC2538171100CF4451 /* BasePciLibCf8.inf */, + A5814DAD2538171100CF4451 /* BasePciLibCf8.uni */, + A5814DAE2538171100CF4451 /* PciLib.c */, + ); + path = BasePciLibCf8; + sourceTree = ""; + }; + A5814DAF2538171100CF4451 /* PeiServicesTablePointerLib */ = { + isa = PBXGroup; + children = ( + A5814DB02538171100CF4451 /* PeiServicesTablePointerLib.uni */, + A5814DB12538171100CF4451 /* PeiServicesTablePointerLib.inf */, + A5814DB22538171100CF4451 /* PeiServicesTablePointer.c */, + ); + path = PeiServicesTablePointerLib; + sourceTree = ""; + }; + A5814DB32538171100CF4451 /* BaseDebugLibNull */ = { + isa = PBXGroup; + children = ( + A5814DB42538171100CF4451 /* BaseDebugLibNull.inf */, + A5814DB52538171100CF4451 /* BaseDebugLibNull.uni */, + A5814DB62538171100CF4451 /* DebugLib.c */, + ); + path = BaseDebugLibNull; + sourceTree = ""; + }; + A5814DB72538171100CF4451 /* UefiPciSegmentLibPciRootBridgeIo */ = { + isa = PBXGroup; + children = ( + A5814DB82538171100CF4451 /* PciSegmentLib.h */, + A5814DB92538171100CF4451 /* UefiPciSegmentLibPciRootBridgeIo.inf */, + A5814DBA2538171100CF4451 /* UefiPciSegmentLibPciRootBridgeIo.uni */, + A5814DBB2538171100CF4451 /* PciSegmentLib.c */, + ); + path = UefiPciSegmentLibPciRootBridgeIo; + sourceTree = ""; + }; + A5814DBC2538171100CF4451 /* PeiServicesLib */ = { + isa = PBXGroup; + children = ( + A5814DBD2538171100CF4451 /* PeiServicesLib.inf */, + A5814DBE2538171100CF4451 /* PeiServicesLib.c */, + A5814DBF2538171100CF4451 /* PeiServicesLib.uni */, + ); + path = PeiServicesLib; + sourceTree = ""; + }; + A5814DC02538171100CF4451 /* BasePciExpressLib */ = { + isa = PBXGroup; + children = ( + A5814DC12538171100CF4451 /* BasePciExpressLib.uni */, + A5814DC22538171100CF4451 /* BasePciExpressLib.inf */, + A5814DC32538171100CF4451 /* PciExpressLib.c */, + ); + path = BasePciExpressLib; + sourceTree = ""; + }; + A5814DC42538171100CF4451 /* BaseS3SmbusLib */ = { + isa = PBXGroup; + children = ( + A5814DC52538171100CF4451 /* BaseS3SmbusLib.inf */, + A5814DC62538171100CF4451 /* BaseS3SmbusLib.uni */, + A5814DC72538171100CF4451 /* S3SmbusLib.c */, + ); + path = BaseS3SmbusLib; + sourceTree = ""; + }; + A5814DC82538171100CF4451 /* DxeServicesLib */ = { + isa = PBXGroup; + children = ( + A5814DC92538171100CF4451 /* Allocate.c */, + A5814DCA2538171100CF4451 /* DxeServicesLib.c */, + A5814DCB2538171100CF4451 /* X64 */, + A5814DCD2538171100CF4451 /* DxeServicesLib.uni */, + A5814DCE2538171100CF4451 /* DxeServicesLib.inf */, + ); + path = DxeServicesLib; + sourceTree = ""; + }; + A5814DCB2538171100CF4451 /* X64 */ = { + isa = PBXGroup; + children = ( + A5814DCC2538171100CF4451 /* Allocate.c */, + ); + path = X64; + sourceTree = ""; + }; + A5814DCF2538171100CF4451 /* SecPeiDxeTimerLibCpu */ = { + isa = PBXGroup; + children = ( + A5814DD02538171100CF4451 /* X86TimerLib.c */, + A5814DD12538171100CF4451 /* SecPeiDxeTimerLibCpu.inf */, + A5814DD22538171100CF4451 /* SecPeiDxeTimerLibCpu.uni */, + ); + path = SecPeiDxeTimerLibCpu; + sourceTree = ""; + }; + A5814DD32538171100CF4451 /* StandaloneMmDriverEntryPoint */ = { + isa = PBXGroup; + children = ( + A5814DD42538171100CF4451 /* StandaloneMmDriverEntryPoint.inf */, + A5814DD52538171100CF4451 /* StandaloneMmDriverEntryPoint.uni */, + A5814DD62538171100CF4451 /* StandaloneMmDriverEntryPoint.c */, + ); + path = StandaloneMmDriverEntryPoint; + sourceTree = ""; + }; + A5814DD72538171100CF4451 /* SmmPciLibPciRootBridgeIo */ = { + isa = PBXGroup; + children = ( + A5814DD82538171100CF4451 /* SmmPciLibPciRootBridgeIo.uni */, + A5814DD92538171100CF4451 /* SmmPciLibPciRootBridgeIo.inf */, + A5814DDA2538171100CF4451 /* PciLib.c */, + ); + path = SmmPciLibPciRootBridgeIo; + sourceTree = ""; + }; + A5814DDB2538171100CF4451 /* BaseLib */ = { + isa = PBXGroup; + children = ( + A5814DDC2538171100CF4451 /* SwapBytes32.c */, + A5814DDD2538171100CF4451 /* X86ReadIdtr.c */, + A5814DDE2538171100CF4451 /* Ebc */, + A5814DE32538171100CF4451 /* BaseLibInternals.h */, + A5814DE42538171100CF4451 /* DivS64x64Remainder.c */, + A5814DE52538171100CF4451 /* X86WriteIdtr.c */, + A5814DE62538171100CF4451 /* FilePaths.c */, + A5814DE72538171100CF4451 /* BaseLib.uni */, + A5814DE82538171100CF4451 /* X86FxRestore.c */, + A5814DE92538171100CF4451 /* RRotU64.c */, + A5814DEA2538171100CF4451 /* LongJump.c */, + A5814DEB2538171100CF4451 /* Cpu.c */, + A5814DEC2538171100CF4451 /* BaseLib.inf */, + A5814DED2538171100CF4451 /* GetPowerOfTwo64.c */, + A5814DEE2538171100CF4451 /* X64 */, + A5814E472538171100CF4451 /* X86Msr.c */, + A5814E482538171100CF4451 /* DivU64x64Remainder.c */, + A5814E492538171100CF4451 /* X86Thunk.c */, + A5814E4A2538171100CF4451 /* CpuDeadLoop.c */, + A5814E4B2538171100CF4451 /* LowBitSet64.c */, + A5814E4C2538171100CF4451 /* LRotU64.c */, + A5814E4D2538171100CF4451 /* X86PatchInstruction.c */, + A5814E4E2538171100CF4451 /* X86FxSave.c */, + A5814E4F2538171100CF4451 /* X86GetInterruptState.c */, + A5814E502538171100CF4451 /* CheckSum.c */, + A5814E512538171100CF4451 /* MultU64x32.c */, + A5814E522538171100CF4451 /* String.c */, + A5814E532538171100CF4451 /* X86DisablePaging32.c */, + A5814E542538171100CF4451 /* BitField.c */, + A5814E552538171100CF4451 /* X86EnablePaging64.c */, + A5814E562538171100CF4451 /* HighBitSet64.c */, + A5814E572538171100CF4451 /* LShiftU64.c */, + A5814E582538171100CF4451 /* SafeString.c */, + A5814E592538171100CF4451 /* MultS64x64.c */, + A5814E5A2538171100CF4451 /* Unaligned.c */, + A5814E5B2538171100CF4451 /* Ia32 */, + A5814F172538171200CF4451 /* GetPowerOfTwo32.c */, + A5814F182538171200CF4451 /* Math64.c */, + A5814F192538171200CF4451 /* RRotU32.c */, + A5814F1A2538171200CF4451 /* DivU64x32.c */, + A5814F1B2538171200CF4451 /* DivU64x32Remainder.c */, + A5814F1C2538171200CF4451 /* X86MemoryFence.c */, + A5814F1D2538171200CF4451 /* SwapBytes64.c */, + A5814F1E2538171200CF4451 /* RShiftU64.c */, + A5814F1F2538171200CF4451 /* SwitchStack.c */, + A5814F202538171200CF4451 /* ChkStkGcc.c */, + A5814F212538171200CF4451 /* SetJump.c */, + A5814F222538171200CF4451 /* X86EnablePaging32.c */, + A5814F232538171200CF4451 /* X86WriteGdtr.c */, + A5814F242538171200CF4451 /* SwapBytes16.c */, + A5814F252538171200CF4451 /* HighBitSet32.c */, + A5814F262538171200CF4451 /* X86RdRand.c */, + A5814F272538171200CF4451 /* Arm */, + A5814F3C2538171200CF4451 /* MultU64x64.c */, + A5814F3D2538171200CF4451 /* X86DisablePaging64.c */, + A5814F3E2538171200CF4451 /* X86ReadGdtr.c */, + A5814F3F2538171200CF4451 /* ARShiftU64.c */, + A5814F402538171200CF4451 /* AArch64 */, + A5814F512538171200CF4451 /* LowBitSet32.c */, + A5814F522538171200CF4451 /* LRotU32.c */, + A5814F532538171200CF4451 /* ModU64x32.c */, + A5814F542538171200CF4451 /* LinkedList.c */, + A5814F552538171200CF4451 /* X86SpeculationBarrier.c */, + ); + path = BaseLib; + sourceTree = ""; + }; + A5814DDE2538171100CF4451 /* Ebc */ = { + isa = PBXGroup; + children = ( + A5814DDF2538171100CF4451 /* CpuBreakpoint.c */, + A5814DE02538171100CF4451 /* SwitchStack.c */, + A5814DE12538171100CF4451 /* SetJumpLongJump.c */, + A5814DE22538171100CF4451 /* SpeculationBarrier.c */, + ); + path = Ebc; + sourceTree = ""; + }; + A5814DEE2538171100CF4451 /* X64 */ = { + isa = PBXGroup; + children = ( + A5814DEF2538171100CF4451 /* WriteMm4.nasm */, + A5814DF02538171100CF4451 /* WriteDr6.nasm */, + A5814DF12538171100CF4451 /* Nasm.inc */, + A5814DF22538171100CF4451 /* WriteTr.nasm */, + A5814DF32538171100CF4451 /* WriteCr4.nasm */, + A5814DF42538171100CF4451 /* Mwait.nasm */, + A5814DF52538171100CF4451 /* ReadFs.nasm */, + A5814DF62538171100CF4451 /* ReadDs.nasm */, + A5814DF72538171100CF4451 /* FxRestore.nasm */, + A5814DF82538171100CF4451 /* ReadMm4.nasm */, + A5814DF92538171100CF4451 /* ReadDr6.nasm */, + A5814DFA2538171100CF4451 /* CpuPause.nasm */, + A5814DFB2538171100CF4451 /* ReadCr4.nasm */, + A5814DFC2538171100CF4451 /* WriteLdtr.nasm */, + A5814DFD2538171100CF4451 /* ReadDr7.nasm */, + A5814DFE2538171100CF4451 /* SwitchStack.nasm */, + A5814DFF2538171100CF4451 /* ReadMm5.nasm */, + A5814E002538171100CF4451 /* WriteMsr64.nasm */, + A5814E012538171100CF4451 /* ReadIdtr.nasm */, + A5814E022538171100CF4451 /* WriteDr7.nasm */, + A5814E032538171100CF4451 /* WriteMm5.nasm */, + A5814E042538171100CF4451 /* ReadMm2.nasm */, + A5814E052538171100CF4451 /* ReadDr0.nasm */, + A5814E062538171100CF4451 /* ReadEs.nasm */, + A5814E072538171100CF4451 /* ReadCr2.nasm */, + A5814E082538171100CF4451 /* EnableCache.nasm */, + A5814E092538171100CF4451 /* CpuIdEx.nasm */, + A5814E0A2538171100CF4451 /* SetJump.nasm */, + A5814E0B2538171100CF4451 /* WriteMm2.nasm */, + A5814E0C2538171100CF4451 /* EnableInterrupts.nasm */, + A5814E0D2538171100CF4451 /* RdRand.nasm */, + A5814E0E2538171100CF4451 /* WriteDr0.nasm */, + A5814E0F2538171100CF4451 /* DisableCache.nasm */, + A5814E102538171100CF4451 /* WriteCr2.nasm */, + A5814E112538171100CF4451 /* ReadGs.nasm */, + A5814E122538171100CF4451 /* WriteGdtr.nasm */, + A5814E132538171100CF4451 /* ReadCs.nasm */, + A5814E142538171100CF4451 /* EnableDisableInterrupts.nasm */, + A5814E152538171100CF4451 /* WriteCr3.nasm */, + A5814E162538171100CF4451 /* WriteDr1.nasm */, + A5814E172538171100CF4451 /* ReadMsr64.c */, + A5814E182538171100CF4451 /* WriteMm3.nasm */, + A5814E192538171100CF4451 /* Thunk16.nasm */, + A5814E1A2538171100CF4451 /* ReadCr3.nasm */, + A5814E1B2538171100CF4451 /* ReadDr1.nasm */, + A5814E1C2538171100CF4451 /* ReadMm3.nasm */, + A5814E1D2538171100CF4451 /* ReadCr0.nasm */, + A5814E1E2538171100CF4451 /* DisableInterrupts.nasm */, + A5814E1F2538171100CF4451 /* ReadDr2.nasm */, + A5814E202538171100CF4451 /* Lfence.nasm */, + A5814E212538171100CF4451 /* ReadMm0.nasm */, + A5814E222538171100CF4451 /* DisablePaging64.nasm */, + A5814E232538171100CF4451 /* WriteCr0.nasm */, + A5814E242538171100CF4451 /* WriteDr2.nasm */, + A5814E252538171100CF4451 /* WriteMm0.nasm */, + A5814E262538171100CF4451 /* GccInline.c */, + A5814E272538171100CF4451 /* CpuBreakpoint.c */, + A5814E282538171100CF4451 /* WriteMm1.nasm */, + A5814E292538171100CF4451 /* ReadTr.nasm */, + A5814E2A2538171100CF4451 /* WriteDr3.nasm */, + A5814E2B2538171100CF4451 /* ReadMm1.nasm */, + A5814E2C2538171100CF4451 /* ReadDr3.nasm */, + A5814E2D2538171100CF4451 /* CpuBreakpoint.nasm */, + A5814E2E2538171100CF4451 /* Invd.nasm */, + A5814E2F2538171100CF4451 /* LongJump.nasm */, + A5814E302538171100CF4451 /* ReadGdtr.nasm */, + A5814E312538171100CF4451 /* Wbinvd.nasm */, + A5814E322538171100CF4451 /* ReadEflags.nasm */, + A5814E332538171100CF4451 /* WriteMsr64.c */, + A5814E342538171100CF4451 /* Non-existing.c */, + A5814E352538171100CF4451 /* WriteDr4.nasm */, + A5814E362538171100CF4451 /* FlushCacheLine.nasm */, + A5814E372538171100CF4451 /* WriteMm6.nasm */, + A5814E382538171100CF4451 /* ReadLdtr.nasm */, + A5814E392538171100CF4451 /* WriteIdtr.nasm */, + A5814E3A2538171100CF4451 /* FxSave.nasm */, + A5814E3B2538171100CF4451 /* Monitor.nasm */, + A5814E3C2538171100CF4451 /* ReadDr4.nasm */, + A5814E3D2538171100CF4451 /* ReadMm6.nasm */, + A5814E3E2538171100CF4451 /* ReadMsr64.nasm */, + A5814E3F2538171100CF4451 /* ReadMm7.nasm */, + A5814E402538171100CF4451 /* ReadDr5.nasm */, + A5814E412538171100CF4451 /* ReadSs.nasm */, + A5814E422538171100CF4451 /* WriteMm7.nasm */, + A5814E432538171100CF4451 /* CpuId.nasm */, + A5814E442538171100CF4451 /* WriteDr5.nasm */, + A5814E452538171100CF4451 /* ReadPmc.nasm */, + A5814E462538171100CF4451 /* ReadTsc.nasm */, + ); + path = X64; + sourceTree = ""; + }; + A5814E5B2538171100CF4451 /* Ia32 */ = { + isa = PBXGroup; + children = ( + A5814E5C2538171100CF4451 /* EnablePaging32.c */, + A5814E5D2538171100CF4451 /* WriteMm4.nasm */, + A5814E5E2538171100CF4451 /* WriteDr3.c */, + A5814E5F2538171100CF4451 /* ReadGdtr.c */, + A5814E602538171100CF4451 /* WriteDr6.nasm */, + A5814E612538171100CF4451 /* WriteTr.nasm */, + A5814E622538171100CF4451 /* WriteCr4.nasm */, + A5814E632538171100CF4451 /* ReadDr2.c */, + A5814E642538171100CF4451 /* Mwait.nasm */, + A5814E652538171100CF4451 /* ReadFs.nasm */, + A5814E662538171100CF4451 /* ReadDs.nasm */, + A5814E672538171100CF4451 /* FxRestore.nasm */, + A5814E682538171100CF4451 /* ReadSs.c */, + A5814E692538171100CF4451 /* ReadMm4.nasm */, + A5814E6A2538171100CF4451 /* DivS64x64Remainder.c */, + A5814E6B2538171100CF4451 /* Monitor.c */, + A5814E6C2538171100CF4451 /* ReadDr6.nasm */, + A5814E6D2538171100CF4451 /* WriteGdtr.c */, + A5814E6E2538171100CF4451 /* CpuPause.nasm */, + A5814E6F2538171100CF4451 /* ReadDr6.c */, + A5814E702538171100CF4451 /* ReadPmc.c */, + A5814E712538171100CF4451 /* Wbinvd.c */, + A5814E722538171100CF4451 /* DisablePaging32.c */, + A5814E732538171100CF4451 /* RShiftU64.nasm */, + A5814E742538171100CF4451 /* ReadCr4.nasm */, + A5814E752538171100CF4451 /* Invd.c */, + A5814E762538171100CF4451 /* WriteDr7.c */, + A5814E772538171100CF4451 /* WriteMm7.c */, + A5814E782538171100CF4451 /* RRotU64.c */, + A5814E792538171100CF4451 /* ReadCr2.c */, + A5814E7A2538171100CF4451 /* LShiftU64.nasm */, + A5814E7B2538171100CF4451 /* ReadTr.c */, + A5814E7C2538171100CF4451 /* ReadMm6.c */, + A5814E7D2538171100CF4451 /* WriteLdtr.nasm */, + A5814E7E2538171100CF4451 /* ReadDr7.nasm */, + A5814E7F2538171100CF4451 /* ReadMm5.nasm */, + A5814E802538171100CF4451 /* WriteCr3.c */, + A5814E812538171100CF4451 /* WriteMsr64.nasm */, + A5814E822538171100CF4451 /* CpuPause.c */, + A5814E832538171100CF4451 /* ReadMm2.c */, + A5814E842538171100CF4451 /* ReadIdtr.nasm */, + A5814E852538171100CF4451 /* WriteDr7.nasm */, + A5814E862538171100CF4451 /* CpuIdEx.c */, + A5814E872538171100CF4451 /* WriteMm3.c */, + A5814E882538171100CF4451 /* WriteMm5.nasm */, + A5814E892538171100CF4451 /* ReadDr1.c */, + A5814E8A2538171100CF4451 /* ReadMm2.nasm */, + A5814E8B2538171100CF4451 /* ReadDr0.nasm */, + A5814E8C2538171100CF4451 /* ReadEs.nasm */, + A5814E8D2538171100CF4451 /* ReadEs.c */, + A5814E8E2538171100CF4451 /* FlushCacheLine.c */, + A5814E8F2538171100CF4451 /* ReadCr2.nasm */, + A5814E902538171100CF4451 /* WriteDr0.c */, + A5814E912538171100CF4451 /* DisableInterrupts.c */, + A5814E922538171100CF4451 /* EnableCache.nasm */, + A5814E932538171100CF4451 /* CpuIdEx.nasm */, + A5814E942538171100CF4451 /* SetJump.nasm */, + A5814E952538171100CF4451 /* WriteMm2.nasm */, + A5814E962538171100CF4451 /* EnableInterrupts.nasm */, + A5814E972538171100CF4451 /* RdRand.nasm */, + A5814E982538171100CF4451 /* WriteDr0.nasm */, + A5814E992538171100CF4451 /* DisableCache.nasm */, + A5814E9A2538171100CF4451 /* LRotU64.c */, + A5814E9B2538171100CF4451 /* WriteDr4.c */, + A5814E9C2538171100CF4451 /* WriteCr2.nasm */, + A5814E9D2538171100CF4451 /* ReadGs.nasm */, + A5814E9E2538171100CF4451 /* WriteGdtr.nasm */, + A5814E9F2538171100CF4451 /* ReadDr5.c */, + A5814EA02538171100CF4451 /* EnableCache.c */, + A5814EA12538171100CF4451 /* ReadMm5.c */, + A5814EA22538171100CF4451 /* ReadCs.nasm */, + A5814EA32538171100CF4451 /* EnableInterrupts.c */, + A5814EA42538171100CF4451 /* WriteCr0.c */, + A5814EA52538171100CF4451 /* EnableDisableInterrupts.nasm */, + A5814EA62538171100CF4451 /* MultU64x32.c */, + A5814EA72538171100CF4451 /* WriteCr3.nasm */, + A5814EA82538171100CF4451 /* DivU64x64Remainder.nasm */, + A5814EA92538171100CF4451 /* WriteMm4.c */, + A5814EAA2538171100CF4451 /* WriteDr1.nasm */, + A5814EAB2538171100CF4451 /* WriteLdtr.c */, + A5814EAC2538171100CF4451 /* ReadMsr64.c */, + A5814EAD2538171100CF4451 /* WriteMm3.nasm */, + A5814EAE2538171100CF4451 /* Thunk16.nasm */, + A5814EAF2538171100CF4451 /* ReadCr3.nasm */, + A5814EB02538171100CF4451 /* WriteMm0.c */, + A5814EB12538171100CF4451 /* ReadDs.c */, + A5814EB22538171100CF4451 /* FxSave.c */, + A5814EB32538171100CF4451 /* WriteCr4.c */, + A5814EB42538171100CF4451 /* ReadDr1.nasm */, + A5814EB52538171100CF4451 /* ReadMm1.c */, + A5814EB62538171100CF4451 /* ReadMm3.nasm */, + A5814EB72538171100CF4451 /* ReadLdtr.c */, + A5814EB82538171100CF4451 /* ARShiftU64.nasm */, + A5814EB92538171100CF4451 /* LShiftU64.c */, + A5814EBA2538171100CF4451 /* ReadCr0.nasm */, + A5814EBB2538171100CF4451 /* ReadDr0.c */, + A5814EBC2538171100CF4451 /* DisableInterrupts.nasm */, + A5814EBD2538171100CF4451 /* SwapBytes64.nasm */, + A5814EBE2538171100CF4451 /* ReadCs.c */, + A5814EBF2538171100CF4451 /* ReadDr2.nasm */, + A5814EC02538171100CF4451 /* Lfence.nasm */, + A5814EC12538171100CF4451 /* ReadMm0.nasm */, + A5814EC22538171100CF4451 /* WriteDr1.c */, + A5814EC32538171100CF4451 /* MultU64x64.nasm */, + A5814EC42538171100CF4451 /* WriteDr5.c */, + A5814EC52538171100CF4451 /* LRotU64.nasm */, + A5814EC62538171100CF4451 /* Mwait.c */, + A5814EC72538171100CF4451 /* WriteCr0.nasm */, + A5814EC82538171100CF4451 /* RRotU64.nasm */, + A5814EC92538171100CF4451 /* ReadDr4.c */, + A5814ECA2538171200CF4451 /* ReadGs.c */, + A5814ECB2538171200CF4451 /* WriteDr2.nasm */, + A5814ECC2538171200CF4451 /* WriteMm0.nasm */, + A5814ECD2538171200CF4451 /* GccInline.c */, + A5814ECE2538171200CF4451 /* CpuBreakpoint.c */, + A5814ECF2538171200CF4451 /* WriteMm1.nasm */, + A5814ED02538171200CF4451 /* ReadTr.nasm */, + A5814ED12538171200CF4451 /* InternalSwitchStack.c */, + A5814ED22538171200CF4451 /* DivU64x32.c */, + A5814ED32538171200CF4451 /* ReadMm4.c */, + A5814ED42538171200CF4451 /* DivU64x32Remainder.c */, + A5814ED52538171200CF4451 /* WriteDr3.nasm */, + A5814ED62538171200CF4451 /* ReadFs.c */, + A5814ED72538171200CF4451 /* ReadCr0.c */, + A5814ED82538171200CF4451 /* CpuId.c */, + A5814ED92538171200CF4451 /* MultU64x32.nasm */, + A5814EDA2538171200CF4451 /* WriteMm5.c */, + A5814EDB2538171200CF4451 /* DisablePaging32.nasm */, + A5814EDC2538171200CF4451 /* SwapBytes64.c */, + A5814EDD2538171200CF4451 /* RShiftU64.c */, + A5814EDE2538171200CF4451 /* ReadMm1.nasm */, + A5814EDF2538171200CF4451 /* WriteMm1.c */, + A5814EE02538171200CF4451 /* ReadDr3.nasm */, + A5814EE12538171200CF4451 /* ReadCr4.c */, + A5814EE22538171200CF4451 /* DivU64x32.nasm */, + A5814EE32538171200CF4451 /* CpuBreakpoint.nasm */, + A5814EE42538171200CF4451 /* Invd.nasm */, + A5814EE52538171200CF4451 /* ReadMm0.c */, + A5814EE62538171200CF4451 /* LongJump.nasm */, + A5814EE72538171200CF4451 /* DisableCache.c */, + A5814EE82538171200CF4451 /* ReadGdtr.nasm */, + A5814EE92538171200CF4451 /* Wbinvd.nasm */, + A5814EEA2538171200CF4451 /* ReadEflags.nasm */, + A5814EEB2538171200CF4451 /* FxRestore.c */, + A5814EEC2538171200CF4451 /* WriteMsr64.c */, + A5814EED2538171200CF4451 /* Non-existing.c */, + A5814EEE2538171200CF4451 /* WriteDr2.c */, + A5814EEF2538171200CF4451 /* EnablePaging64.nasm */, + A5814EF02538171200CF4451 /* WriteDr4.nasm */, + A5814EF12538171200CF4451 /* FlushCacheLine.nasm */, + A5814EF22538171200CF4451 /* WriteIdtr.c */, + A5814EF32538171200CF4451 /* ReadDr3.c */, + A5814EF42538171200CF4451 /* WriteMm6.nasm */, + A5814EF52538171200CF4451 /* ReadLdtr.nasm */, + A5814EF62538171200CF4451 /* ReadDr7.c */, + A5814EF72538171200CF4451 /* ReadEflags.c */, + A5814EF82538171200CF4451 /* WriteIdtr.nasm */, + A5814EF92538171200CF4451 /* MultU64x64.c */, + A5814EFA2538171200CF4451 /* DivU64x32Remainder.nasm */, + A5814EFB2538171200CF4451 /* FxSave.nasm */, + A5814EFC2538171200CF4451 /* Monitor.nasm */, + A5814EFD2538171200CF4451 /* WriteDr6.c */, + A5814EFE2538171200CF4451 /* ReadDr4.nasm */, + A5814EFF2538171200CF4451 /* ReadMm6.nasm */, + A5814F002538171200CF4451 /* ReadMsr64.nasm */, + A5814F012538171200CF4451 /* ReadIdtr.c */, + A5814F022538171200CF4451 /* ARShiftU64.c */, + A5814F032538171200CF4451 /* ReadCr3.c */, + A5814F042538171200CF4451 /* ReadMm7.nasm */, + A5814F052538171200CF4451 /* ReadDr5.nasm */, + A5814F062538171200CF4451 /* WriteMm6.c */, + A5814F072538171200CF4451 /* ReadTsc.c */, + A5814F082538171200CF4451 /* WriteCr2.c */, + A5814F092538171200CF4451 /* ModU64x32.c */, + A5814F0A2538171200CF4451 /* ReadSs.nasm */, + A5814F0B2538171200CF4451 /* ReadMm7.c */, + A5814F0C2538171200CF4451 /* EnableDisableInterrupts.c */, + A5814F0D2538171200CF4451 /* WriteMm7.nasm */, + A5814F0E2538171200CF4451 /* ReadMm3.c */, + A5814F0F2538171200CF4451 /* CpuId.nasm */, + A5814F102538171200CF4451 /* InternalSwitchStack.nasm */, + A5814F112538171200CF4451 /* WriteDr5.nasm */, + A5814F122538171200CF4451 /* ReadPmc.nasm */, + A5814F132538171200CF4451 /* WriteMm2.c */, + A5814F142538171200CF4451 /* ModU64x32.nasm */, + A5814F152538171200CF4451 /* ReadTsc.nasm */, + A5814F162538171200CF4451 /* EnablePaging32.nasm */, + ); + path = Ia32; + sourceTree = ""; + }; + A5814F272538171200CF4451 /* Arm */ = { + isa = PBXGroup; + children = ( + A5814F282538171200CF4451 /* Math64.S */, + A5814F292538171200CF4451 /* CpuPause.asm */, + A5814F2A2538171200CF4451 /* EnableInterrupts.asm */, + A5814F2B2538171200CF4451 /* SwitchStack.S */, + A5814F2C2538171200CF4451 /* CpuBreakpoint.S */, + A5814F2D2538171200CF4451 /* SetJumpLongJump.asm */, + A5814F2E2538171200CF4451 /* CpuBreakpoint.asm */, + A5814F2F2538171200CF4451 /* GetInterruptsState.S */, + A5814F302538171200CF4451 /* MemoryFence.asm */, + A5814F312538171200CF4451 /* SpeculationBarrier.S */, + A5814F322538171200CF4451 /* DisableInterrupts.asm */, + A5814F332538171200CF4451 /* SetJumpLongJump.S */, + A5814F342538171200CF4451 /* GetInterruptsState.asm */, + A5814F352538171200CF4451 /* Unaligned.c */, + A5814F362538171200CF4451 /* InternalSwitchStack.c */, + A5814F372538171200CF4451 /* SpeculationBarrier.asm */, + A5814F382538171200CF4451 /* MemoryFence.S */, + A5814F392538171200CF4451 /* DisableInterrupts.S */, + A5814F3A2538171200CF4451 /* SwitchStack.asm */, + A5814F3B2538171200CF4451 /* EnableInterrupts.S */, + ); + path = Arm; + sourceTree = ""; + }; + A5814F402538171200CF4451 /* AArch64 */ = { + isa = PBXGroup; + children = ( + A5814F412538171200CF4451 /* EnableInterrupts.asm */, + A5814F422538171200CF4451 /* SwitchStack.S */, + A5814F432538171200CF4451 /* CpuBreakpoint.S */, + A5814F442538171200CF4451 /* SetJumpLongJump.asm */, + A5814F452538171200CF4451 /* CpuBreakpoint.asm */, + A5814F462538171200CF4451 /* GetInterruptsState.S */, + A5814F472538171200CF4451 /* MemoryFence.asm */, + A5814F482538171200CF4451 /* SpeculationBarrier.S */, + A5814F492538171200CF4451 /* DisableInterrupts.asm */, + A5814F4A2538171200CF4451 /* SetJumpLongJump.S */, + A5814F4B2538171200CF4451 /* GetInterruptsState.asm */, + A5814F4C2538171200CF4451 /* SpeculationBarrier.asm */, + A5814F4D2538171200CF4451 /* MemoryFence.S */, + A5814F4E2538171200CF4451 /* DisableInterrupts.S */, + A5814F4F2538171200CF4451 /* SwitchStack.asm */, + A5814F502538171200CF4451 /* EnableInterrupts.S */, + ); + path = AArch64; + sourceTree = ""; + }; + A5814F562538171200CF4451 /* BaseMemoryLibRepStr */ = { + isa = PBXGroup; + children = ( + A5814F572538171200CF4451 /* SetMem64Wrapper.c */, + A5814F582538171200CF4451 /* ZeroMemWrapper.c */, + A5814F592538171200CF4451 /* CopyMemWrapper.c */, + A5814F5A2538171200CF4451 /* ScanMem64Wrapper.c */, + A5814F5B2538171200CF4451 /* X64 */, + A5814F682538171200CF4451 /* ScanMem8Wrapper.c */, + A5814F692538171200CF4451 /* SetMem32Wrapper.c */, + A5814F6A2538171200CF4451 /* Ia32 */, + A5814F772538171200CF4451 /* ScanMem32Wrapper.c */, + A5814F782538171200CF4451 /* IsZeroBufferWrapper.c */, + A5814F792538171200CF4451 /* SetMemWrapper.c */, + A5814F7A2538171200CF4451 /* CompareMemWrapper.c */, + A5814F7B2538171200CF4451 /* SetMem16Wrapper.c */, + A5814F7C2538171200CF4451 /* BaseMemoryLibRepStr.uni */, + A5814F7D2538171200CF4451 /* MemLibGuid.c */, + A5814F7E2538171200CF4451 /* MemLibInternals.h */, + A5814F7F2538171200CF4451 /* ScanMem16Wrapper.c */, + A5814F802538171200CF4451 /* BaseMemoryLibRepStr.inf */, + ); + path = BaseMemoryLibRepStr; + sourceTree = ""; + }; + A5814F5B2538171200CF4451 /* X64 */ = { + isa = PBXGroup; + children = ( + A5814F5C2538171200CF4451 /* ZeroMem.nasm */, + A5814F5D2538171200CF4451 /* CompareMem.nasm */, + A5814F5E2538171200CF4451 /* SetMem16.nasm */, + A5814F5F2538171200CF4451 /* ScanMem64.nasm */, + A5814F602538171200CF4451 /* ScanMem32.nasm */, + A5814F612538171200CF4451 /* SetMem.nasm */, + A5814F622538171200CF4451 /* IsZeroBuffer.nasm */, + A5814F632538171200CF4451 /* SetMem64.nasm */, + A5814F642538171200CF4451 /* ScanMem8.nasm */, + A5814F652538171200CF4451 /* SetMem32.nasm */, + A5814F662538171200CF4451 /* ScanMem16.nasm */, + A5814F672538171200CF4451 /* CopyMem.nasm */, + ); + path = X64; + sourceTree = ""; + }; + A5814F6A2538171200CF4451 /* Ia32 */ = { + isa = PBXGroup; + children = ( + A5814F6B2538171200CF4451 /* ZeroMem.nasm */, + A5814F6C2538171200CF4451 /* CompareMem.nasm */, + A5814F6D2538171200CF4451 /* SetMem16.nasm */, + A5814F6E2538171200CF4451 /* ScanMem64.nasm */, + A5814F6F2538171200CF4451 /* ScanMem32.nasm */, + A5814F702538171200CF4451 /* SetMem.nasm */, + A5814F712538171200CF4451 /* IsZeroBuffer.nasm */, + A5814F722538171200CF4451 /* SetMem64.nasm */, + A5814F732538171200CF4451 /* ScanMem8.nasm */, + A5814F742538171200CF4451 /* SetMem32.nasm */, + A5814F752538171200CF4451 /* ScanMem16.nasm */, + A5814F762538171200CF4451 /* CopyMem.nasm */, + ); + path = Ia32; + sourceTree = ""; + }; + A5814F812538171200CF4451 /* BaseSynchronizationLib */ = { + isa = PBXGroup; + children = ( + A5814F822538171200CF4451 /* BaseSynchronizationLib.uni */, + A5814F832538171200CF4451 /* Ebc */, + A5814F852538171200CF4451 /* BaseSynchronizationLib.inf */, + A5814F862538171200CF4451 /* X64 */, + A5814F902538171200CF4451 /* InterlockedIncrementMsc.c */, + A5814F912538171200CF4451 /* Ia32 */, + A5814F9C2538171200CF4451 /* BaseSynchronizationLibInternals.h */, + A5814F9D2538171200CF4451 /* SynchronizationMsc.c */, + A5814F9E2538171200CF4451 /* Synchronization.c */, + A5814F9F2538171200CF4451 /* Arm */, + A5814FA22538171200CF4451 /* AArch64 */, + A5814FA52538171200CF4451 /* SynchronizationGcc.c */, + A5814FA62538171200CF4451 /* InterlockedDecrementMsc.c */, + ); + path = BaseSynchronizationLib; + sourceTree = ""; + }; + A5814F832538171200CF4451 /* Ebc */ = { + isa = PBXGroup; + children = ( + A5814F842538171200CF4451 /* Synchronization.c */, + ); + path = Ebc; + sourceTree = ""; + }; + A5814F862538171200CF4451 /* X64 */ = { + isa = PBXGroup; + children = ( + A5814F872538171200CF4451 /* InterlockedCompareExchange64.c */, + A5814F882538171200CF4451 /* InterlockedIncrement.nasm */, + A5814F892538171200CF4451 /* InterlockedCompareExchange16.nasm */, + A5814F8A2538171200CF4451 /* InterlockedCompareExchange16.c */, + A5814F8B2538171200CF4451 /* GccInline.c */, + A5814F8C2538171200CF4451 /* InterlockedCompareExchange32.c */, + A5814F8D2538171200CF4451 /* InterlockedCompareExchange64.nasm */, + A5814F8E2538171200CF4451 /* InterlockedCompareExchange32.nasm */, + A5814F8F2538171200CF4451 /* InterlockedDecrement.nasm */, + ); + path = X64; + sourceTree = ""; + }; + A5814F912538171200CF4451 /* Ia32 */ = { + isa = PBXGroup; + children = ( + A5814F922538171200CF4451 /* InterlockedCompareExchange64.c */, + A5814F932538171200CF4451 /* InternalGetSpinLockProperties.c */, + A5814F942538171200CF4451 /* InterlockedIncrement.nasm */, + A5814F952538171200CF4451 /* InterlockedCompareExchange16.nasm */, + A5814F962538171200CF4451 /* InterlockedCompareExchange16.c */, + A5814F972538171200CF4451 /* GccInline.c */, + A5814F982538171200CF4451 /* InterlockedCompareExchange32.c */, + A5814F992538171200CF4451 /* InterlockedCompareExchange64.nasm */, + A5814F9A2538171200CF4451 /* InterlockedCompareExchange32.nasm */, + A5814F9B2538171200CF4451 /* InterlockedDecrement.nasm */, + ); + path = Ia32; + sourceTree = ""; + }; + A5814F9F2538171200CF4451 /* Arm */ = { + isa = PBXGroup; + children = ( + A5814FA02538171200CF4451 /* Synchronization.S */, + A5814FA12538171200CF4451 /* Synchronization.asm */, + ); + path = Arm; + sourceTree = ""; + }; + A5814FA22538171200CF4451 /* AArch64 */ = { + isa = PBXGroup; + children = ( + A5814FA32538171200CF4451 /* Synchronization.S */, + A5814FA42538171200CF4451 /* Synchronization.asm */, + ); + path = AArch64; + sourceTree = ""; + }; + A5814FA72538171200CF4451 /* UefiMemoryLib */ = { + isa = PBXGroup; + children = ( + A5814FA82538171200CF4451 /* SetMem64Wrapper.c */, + A5814FA92538171200CF4451 /* ZeroMemWrapper.c */, + A5814FAA2538171200CF4451 /* CopyMemWrapper.c */, + A5814FAB2538171200CF4451 /* ScanMem64Wrapper.c */, + A5814FAC2538171200CF4451 /* MemLibGeneric.c */, + A5814FAD2538171200CF4451 /* ScanMem8Wrapper.c */, + A5814FAE2538171200CF4451 /* SetMem32Wrapper.c */, + A5814FAF2538171200CF4451 /* ScanMem32Wrapper.c */, + A5814FB02538171200CF4451 /* IsZeroBufferWrapper.c */, + A5814FB12538171200CF4451 /* SetMemWrapper.c */, + A5814FB22538171200CF4451 /* MemLib.c */, + A5814FB32538171200CF4451 /* CompareMemWrapper.c */, + A5814FB42538171200CF4451 /* UefiMemoryLib.inf */, + A5814FB52538171200CF4451 /* SetMem16Wrapper.c */, + A5814FB62538171200CF4451 /* MemLibGuid.c */, + A5814FB72538171200CF4451 /* UefiMemoryLib.uni */, + A5814FB82538171200CF4451 /* MemLibInternals.h */, + A5814FB92538171200CF4451 /* ScanMem16Wrapper.c */, + ); + path = UefiMemoryLib; + sourceTree = ""; + }; + A5814FBA2538171200CF4451 /* PciSegmentLibSegmentInfo */ = { + isa = PBXGroup; + children = ( + A5814FBB2538171200CF4451 /* PciSegmentLibCommon.h */, + A5814FBC2538171200CF4451 /* DxeRuntimePciSegmentLibSegmentInfo.inf */, + A5814FBD2538171200CF4451 /* BasePciSegmentLibSegmentInfo.inf */, + A5814FBE2538171200CF4451 /* DxeRuntimePciSegmentLibSegmentInfo.uni */, + A5814FBF2538171200CF4451 /* BasePciSegmentLibSegmentInfo.uni */, + A5814FC02538171200CF4451 /* BasePciSegmentLib.c */, + A5814FC12538171200CF4451 /* PciSegmentLibCommon.c */, + A5814FC22538171200CF4451 /* DxeRuntimePciSegmentLib.c */, + ); + path = PciSegmentLibSegmentInfo; + sourceTree = ""; + }; + A5814FC32538171200CF4451 /* BaseCpuLib */ = { + isa = PBXGroup; + children = ( + A5814FC42538171200CF4451 /* Ebc */, + A5814FC62538171200CF4451 /* X64 */, + A5814FC92538171200CF4451 /* BaseCpuLib.uni */, + A5814FCA2538171200CF4451 /* BaseCpuLib.inf */, + A5814FCB2538171200CF4451 /* Ia32 */, + A5814FD22538171200CF4451 /* Arm */, + A5814FD72538171200CF4451 /* AArch64 */, + ); + path = BaseCpuLib; + sourceTree = ""; + }; + A5814FC42538171200CF4451 /* Ebc */ = { + isa = PBXGroup; + children = ( + A5814FC52538171200CF4451 /* CpuSleepFlushTlb.c */, + ); + path = Ebc; + sourceTree = ""; + }; + A5814FC62538171200CF4451 /* X64 */ = { + isa = PBXGroup; + children = ( + A5814FC72538171200CF4451 /* CpuSleep.nasm */, + A5814FC82538171200CF4451 /* CpuFlushTlb.nasm */, + ); + path = X64; + sourceTree = ""; + }; + A5814FCB2538171200CF4451 /* Ia32 */ = { + isa = PBXGroup; + children = ( + A5814FCC2538171200CF4451 /* CpuSleep.c */, + A5814FCD2538171200CF4451 /* CpuFlushTlbGcc.c */, + A5814FCE2538171200CF4451 /* CpuFlushTlb.c */, + A5814FCF2538171200CF4451 /* CpuSleep.nasm */, + A5814FD02538171200CF4451 /* CpuFlushTlb.nasm */, + A5814FD12538171200CF4451 /* CpuSleepGcc.c */, + ); + path = Ia32; + sourceTree = ""; + }; + A5814FD22538171200CF4451 /* Arm */ = { + isa = PBXGroup; + children = ( + A5814FD32538171200CF4451 /* CpuFlushTlb.S */, + A5814FD42538171200CF4451 /* CpuFlushTlb.asm */, + A5814FD52538171200CF4451 /* CpuSleep.asm */, + A5814FD62538171200CF4451 /* CpuSleep.S */, + ); + path = Arm; + sourceTree = ""; + }; + A5814FD72538171200CF4451 /* AArch64 */ = { + isa = PBXGroup; + children = ( + A5814FD82538171200CF4451 /* CpuFlushTlb.S */, + A5814FD92538171200CF4451 /* CpuFlushTlb.asm */, + A5814FDA2538171200CF4451 /* CpuSleep.asm */, + A5814FDB2538171200CF4451 /* CpuSleep.S */, + ); + path = AArch64; + sourceTree = ""; + }; + A5814FDC2538171200CF4451 /* PeiExtractGuidedSectionLib */ = { + isa = PBXGroup; + children = ( + A5814FDD2538171200CF4451 /* PeiExtractGuidedSectionLib.c */, + A5814FDE2538171200CF4451 /* PeiExtractGuidedSectionLib.uni */, + A5814FDF2538171200CF4451 /* PeiExtractGuidedSectionLib.inf */, + ); + path = PeiExtractGuidedSectionLib; + sourceTree = ""; + }; + A5814FE02538171200CF4451 /* UefiDriverEntryPoint */ = { + isa = PBXGroup; + children = ( + A5814FE12538171200CF4451 /* DriverEntryPoint.c */, + A5814FE22538171200CF4451 /* UefiDriverEntryPoint.inf */, + A5814FE32538171200CF4451 /* UefiDriverEntryPoint.uni */, + ); + path = UefiDriverEntryPoint; + sourceTree = ""; + }; + A5814FE42538171200CF4451 /* UefiDebugLibDebugPortProtocol */ = { + isa = PBXGroup; + children = ( + A5814FE52538171200CF4451 /* DebugLibConstructor.c */, + A5814FE62538171200CF4451 /* DebugLib.c */, + A5814FE72538171200CF4451 /* UefiDebugLibDebugPortProtocol.uni */, + A5814FE82538171200CF4451 /* UefiDebugLibDebugPortProtocol.inf */, + ); + path = UefiDebugLibDebugPortProtocol; + sourceTree = ""; + }; + A5814FE92538171200CF4451 /* SmmPciExpressLib */ = { + isa = PBXGroup; + children = ( + A5814FEA2538171200CF4451 /* SmmPciExpressLib.inf */, + A5814FEB2538171200CF4451 /* PciExpressLib.c */, + ); + path = SmmPciExpressLib; + sourceTree = ""; + }; + A5814FEC2538171200CF4451 /* DxeRuntimePciExpressLib */ = { + isa = PBXGroup; + children = ( + A5814FED2538171200CF4451 /* DxeRuntimePciExpressLib.uni */, + A5814FEE2538171200CF4451 /* DxeRuntimePciExpressLib.inf */, + A5814FEF2538171200CF4451 /* PciExpressLib.c */, + ); + path = DxeRuntimePciExpressLib; + sourceTree = ""; + }; + A5814FF02538171200CF4451 /* BaseMemoryLibOptDxe */ = { + isa = PBXGroup; + children = ( + A5814FF12538171200CF4451 /* SetMem64Wrapper.c */, + A5814FF22538171200CF4451 /* ZeroMemWrapper.c */, + A5814FF32538171200CF4451 /* CopyMemWrapper.c */, + A5814FF42538171200CF4451 /* ScanMem64Wrapper.c */, + A5814FF52538171200CF4451 /* X64 */, + A58150022538171200CF4451 /* ScanMem8Wrapper.c */, + A58150032538171200CF4451 /* SetMem32Wrapper.c */, + A58150042538171200CF4451 /* Ia32 */, + A58150112538171200CF4451 /* ScanMem32Wrapper.c */, + A58150122538171200CF4451 /* IsZeroBufferWrapper.c */, + A58150132538171200CF4451 /* SetMemWrapper.c */, + A58150142538171200CF4451 /* CompareMemWrapper.c */, + A58150152538171200CF4451 /* Arm */, + A58150222538171200CF4451 /* BaseMemoryLibOptDxe.uni */, + A58150232538171200CF4451 /* SetMem16Wrapper.c */, + A58150242538171200CF4451 /* MemLibGuid.c */, + A58150252538171200CF4451 /* AArch64 */, + A581502B2538171200CF4451 /* MemLibInternals.h */, + A581502C2538171200CF4451 /* BaseMemoryLibOptDxe.inf */, + A581502D2538171200CF4451 /* ScanMem16Wrapper.c */, + ); + path = BaseMemoryLibOptDxe; + sourceTree = ""; + }; + A5814FF52538171200CF4451 /* X64 */ = { + isa = PBXGroup; + children = ( + A5814FF62538171200CF4451 /* ZeroMem.nasm */, + A5814FF72538171200CF4451 /* CompareMem.nasm */, + A5814FF82538171200CF4451 /* SetMem16.nasm */, + A5814FF92538171200CF4451 /* ScanMem64.nasm */, + A5814FFA2538171200CF4451 /* ScanMem32.nasm */, + A5814FFB2538171200CF4451 /* SetMem.nasm */, + A5814FFC2538171200CF4451 /* IsZeroBuffer.nasm */, + A5814FFD2538171200CF4451 /* SetMem64.nasm */, + A5814FFE2538171200CF4451 /* ScanMem8.nasm */, + A5814FFF2538171200CF4451 /* SetMem32.nasm */, + A58150002538171200CF4451 /* ScanMem16.nasm */, + A58150012538171200CF4451 /* CopyMem.nasm */, + ); + path = X64; + sourceTree = ""; + }; + A58150042538171200CF4451 /* Ia32 */ = { + isa = PBXGroup; + children = ( + A58150052538171200CF4451 /* ZeroMem.nasm */, + A58150062538171200CF4451 /* CompareMem.nasm */, + A58150072538171200CF4451 /* SetMem16.nasm */, + A58150082538171200CF4451 /* ScanMem64.nasm */, + A58150092538171200CF4451 /* ScanMem32.nasm */, + A581500A2538171200CF4451 /* SetMem.nasm */, + A581500B2538171200CF4451 /* IsZeroBuffer.nasm */, + A581500C2538171200CF4451 /* SetMem64.nasm */, + A581500D2538171200CF4451 /* ScanMem8.nasm */, + A581500E2538171200CF4451 /* SetMem32.nasm */, + A581500F2538171200CF4451 /* ScanMem16.nasm */, + A58150102538171200CF4451 /* CopyMem.nasm */, + ); + path = Ia32; + sourceTree = ""; + }; + A58150152538171200CF4451 /* Arm */ = { + isa = PBXGroup; + children = ( + A58150162538171200CF4451 /* ScanMemGeneric.c */, + A58150172538171200CF4451 /* CompareMem.asm */, + A58150182538171200CF4451 /* CopyMem.S */, + A58150192538171200CF4451 /* SetMem.S */, + A581501A2538171200CF4451 /* ScanMem.asm */, + A581501B2538171200CF4451 /* CopyMem.asm */, + A581501C2538171200CF4451 /* CompareMem.S */, + A581501D2538171200CF4451 /* MemLibGuid.c */, + A581501E2538171200CF4451 /* SetMem.asm */, + A581501F2538171200CF4451 /* CompareGuid.asm */, + A58150202538171200CF4451 /* CompareGuid.S */, + A58150212538171200CF4451 /* ScanMem.S */, + ); + path = Arm; + sourceTree = ""; + }; + A58150252538171200CF4451 /* AArch64 */ = { + isa = PBXGroup; + children = ( + A58150262538171200CF4451 /* CopyMem.S */, + A58150272538171200CF4451 /* SetMem.S */, + A58150282538171200CF4451 /* CompareMem.S */, + A58150292538171200CF4451 /* CompareGuid.S */, + A581502A2538171200CF4451 /* ScanMem.S */, + ); + path = AArch64; + sourceTree = ""; + }; + A581502E2538171200CF4451 /* BasePerformanceLibNull */ = { + isa = PBXGroup; + children = ( + A581502F2538171200CF4451 /* PerformanceLib.c */, + A58150302538171200CF4451 /* BasePerformanceLibNull.inf */, + A58150312538171200CF4451 /* BasePerformanceLibNull.uni */, + ); + path = BasePerformanceLibNull; + sourceTree = ""; + }; + A58150322538171200CF4451 /* BasePciSegmentLibPci */ = { + isa = PBXGroup; + children = ( + A58150332538171200CF4451 /* BasePciSegmentLibPci.inf */, + A58150342538171200CF4451 /* BasePciSegmentLibPci.uni */, + A58150352538171200CF4451 /* PciSegmentLib.c */, + ); + path = BasePciSegmentLibPci; + sourceTree = ""; + }; + A58150362538171200CF4451 /* PeiDxePostCodeLibReportStatusCode */ = { + isa = PBXGroup; + children = ( + A58150372538171200CF4451 /* PostCode.c */, + A58150382538171200CF4451 /* PeiDxePostCodeLibReportStatusCode.inf */, + A58150392538171200CF4451 /* PeiDxePostCodeLibReportStatusCode.uni */, + ); + path = PeiDxePostCodeLibReportStatusCode; + sourceTree = ""; + }; + A581503A2538171200CF4451 /* BasePcdLibNull */ = { + isa = PBXGroup; + children = ( + A581503B2538171200CF4451 /* BasePcdLibNull.uni */, + A581503C2538171200CF4451 /* BasePcdLibNull.inf */, + A581503D2538171200CF4451 /* PcdLib.c */, + ); + path = BasePcdLibNull; + sourceTree = ""; + }; + A581503E2538171200CF4451 /* BaseStackCheckLib */ = { + isa = PBXGroup; + children = ( + A581503F2538171200CF4451 /* BaseStackCheckGcc.c */, + A58150402538171200CF4451 /* BaseStackCheckLib.uni */, + A58150412538171200CF4451 /* BaseStackCheckNull.c */, + A58150422538171200CF4451 /* BaseStackCheckLib.inf */, + ); + path = BaseStackCheckLib; + sourceTree = ""; + }; + A58150432538171200CF4451 /* BaseRngLib */ = { + isa = PBXGroup; + children = ( + A58150442538171200CF4451 /* BaseRngLib.uni */, + A58150452538171200CF4451 /* BaseRngLib.inf */, + A58150462538171200CF4451 /* BaseRng.c */, + ); + path = BaseRngLib; + sourceTree = ""; + }; + A58150472538171200CF4451 /* DxeCoreEntryPoint */ = { + isa = PBXGroup; + children = ( + A58150482538171200CF4451 /* DxeCoreEntryPoint.c */, + A58150492538171200CF4451 /* DxeCoreEntryPoint.uni */, + A581504A2538171200CF4451 /* DxeCoreEntryPoint.inf */, + ); + path = DxeCoreEntryPoint; + sourceTree = ""; + }; + A581504B2538171200CF4451 /* BasePostCodeLibPort80 */ = { + isa = PBXGroup; + children = ( + A581504C2538171200CF4451 /* PostCode.c */, + A581504D2538171200CF4451 /* BasePostCodeLibPort80.inf */, + A581504E2538171200CF4451 /* BasePostCodeLibPort80.uni */, + ); + path = BasePostCodeLibPort80; + sourceTree = ""; + }; + A581504F2538171200CF4451 /* PeiCoreEntryPoint */ = { + isa = PBXGroup; + children = ( + A58150502538171200CF4451 /* PeiCoreEntryPoint.uni */, + A58150512538171200CF4451 /* PeiCoreEntryPoint.inf */, + A58150522538171200CF4451 /* PeiCoreEntryPoint.c */, + ); + path = PeiCoreEntryPoint; + sourceTree = ""; + }; + A58150532538171200CF4451 /* BasePeCoffLib */ = { + isa = PBXGroup; + children = ( + A58150542538171200CF4451 /* BasePeCoffLibInternals.h */, + A58150552538171200CF4451 /* BasePeCoff.c */, + A58150562538171200CF4451 /* PeCoffLoaderEx.c */, + A58150572538171200CF4451 /* Arm */, + A58150592538171200CF4451 /* BasePeCoffLib.uni */, + A581505A2538171200CF4451 /* BasePeCoffLib.inf */, + ); + path = BasePeCoffLib; + sourceTree = ""; + }; + A58150572538171200CF4451 /* Arm */ = { + isa = PBXGroup; + children = ( + A58150582538171200CF4451 /* PeCoffLoaderEx.c */, + ); + path = Arm; + sourceTree = ""; + }; + A581505B2538171200CF4451 /* SmmLibNull */ = { + isa = PBXGroup; + children = ( + A581505C2538171200CF4451 /* SmmLibNull.uni */, + A581505D2538171200CF4451 /* SmmLibNull.inf */, + A581505E2538171200CF4451 /* SmmLibNull.c */, + ); + path = SmmLibNull; + sourceTree = ""; + }; + A581505F2538171200CF4451 /* BasePciCf8Lib */ = { + isa = PBXGroup; + children = ( + A58150602538171200CF4451 /* BasePciCf8Lib.uni */, + A58150612538171200CF4451 /* BasePciCf8Lib.inf */, + A58150622538171200CF4451 /* PciCf8Lib.c */, + ); + path = BasePciCf8Lib; + sourceTree = ""; + }; + A58150632538171200CF4451 /* MmServicesTableLib */ = { + isa = PBXGroup; + children = ( + A58150642538171200CF4451 /* MmServicesTableLib.uni */, + A58150652538171200CF4451 /* MmServicesTableLib.inf */, + A58150662538171200CF4451 /* MmServicesTableLib.c */, + ); + path = MmServicesTableLib; + sourceTree = ""; + }; + A58150672538171200CF4451 /* BaseSafeIntLib */ = { + isa = PBXGroup; + children = ( + A58150682538171200CF4451 /* SafeIntLib64.c */, + A58150692538171200CF4451 /* SafeIntLibEbc.c */, + A581506A2538171200CF4451 /* BaseSafeIntLib.inf */, + A581506B2538171200CF4451 /* SafeIntLib32.c */, + A581506C2538171200CF4451 /* SafeIntLib.c */, + ); + path = BaseSafeIntLib; + sourceTree = ""; + }; + A581506D2538171200CF4451 /* SmmServicesTableLib */ = { + isa = PBXGroup; + children = ( + A581506E2538171200CF4451 /* SmmServicesTableLib.c */, + A581506F2538171200CF4451 /* SmmServicesTableLib.inf */, + A58150702538171200CF4451 /* SmmServicesTableLib.uni */, + ); + path = SmmServicesTableLib; + sourceTree = ""; + }; + A58150712538171200CF4451 /* DxeExtractGuidedSectionLib */ = { + isa = PBXGroup; + children = ( + A58150722538171200CF4451 /* DxeExtractGuidedSectionLib.uni */, + A58150732538171200CF4451 /* DxeExtractGuidedSectionLib.inf */, + A58150742538171200CF4451 /* DxeExtractGuidedSectionLib.c */, + ); + path = DxeExtractGuidedSectionLib; + sourceTree = ""; + }; + A58150752538171200CF4451 /* UefiApplicationEntryPoint */ = { + isa = PBXGroup; + children = ( + A58150762538171200CF4451 /* UefiApplicationEntryPoint.uni */, + A58150772538171200CF4451 /* UefiApplicationEntryPoint.inf */, + A58150782538171200CF4451 /* ApplicationEntryPoint.c */, + ); + path = UefiApplicationEntryPoint; + sourceTree = ""; + }; + A58150792538171200CF4451 /* BaseMemoryLib */ = { + isa = PBXGroup; + children = ( + A581507A2538171200CF4451 /* SetMem64Wrapper.c */, + A581507B2538171200CF4451 /* ZeroMemWrapper.c */, + A581507C2538171200CF4451 /* BaseMemoryLib.inf */, + A581507D2538171200CF4451 /* CopyMemWrapper.c */, + A581507E2538171200CF4451 /* ScanMem64Wrapper.c */, + A581507F2538171200CF4451 /* BaseMemoryLib.uni */, + A58150802538171200CF4451 /* MemLibGeneric.c */, + A58150812538171200CF4451 /* ScanMem8Wrapper.c */, + A58150822538171200CF4451 /* SetMem32Wrapper.c */, + A58150832538171200CF4451 /* CopyMem.c */, + A58150842538171200CF4451 /* SetMem.c */, + A58150852538171200CF4451 /* ScanMem32Wrapper.c */, + A58150862538171200CF4451 /* IsZeroBufferWrapper.c */, + A58150872538171200CF4451 /* SetMemWrapper.c */, + A58150882538171200CF4451 /* CompareMemWrapper.c */, + A58150892538171200CF4451 /* SetMem16Wrapper.c */, + A581508A2538171200CF4451 /* MemLibGuid.c */, + A581508B2538171200CF4451 /* MemLibInternals.h */, + A581508C2538171200CF4451 /* ScanMem16Wrapper.c */, + ); + path = BaseMemoryLib; + sourceTree = ""; + }; + A581508D2538171200CF4451 /* SmmIoLibSmmCpuIo2 */ = { + isa = PBXGroup; + children = ( + A581508E2538171200CF4451 /* IoLibMmioBuffer.c */, + A581508F2538171200CF4451 /* IoLib.c */, + A58150902538171200CF4451 /* IoHighLevel.c */, + A58150912538171200CF4451 /* SmmCpuIoLibInternal.h */, + A58150922538171200CF4451 /* SmmIoLibSmmCpuIo2.uni */, + A58150932538171200CF4451 /* SmmIoLibSmmCpuIo2.inf */, + ); + path = SmmIoLibSmmCpuIo2; + sourceTree = ""; + }; + A58150942538171200CF4451 /* DxeSmbusLib */ = { + isa = PBXGroup; + children = ( + A58150952538171200CF4451 /* DxeSmbusLib.c */, + A58150962538171200CF4451 /* SmbusLib.c */, + A58150972538171200CF4451 /* InternalSmbusLib.h */, + A58150982538171200CF4451 /* DxeSmbusLib.inf */, + A58150992538171200CF4451 /* DxeSmbusLib.uni */, + ); + path = DxeSmbusLib; + sourceTree = ""; + }; + A581509A2538171200CF4451 /* BaseSmbusLibNull */ = { + isa = PBXGroup; + children = ( + A581509B2538171200CF4451 /* BaseSmbusLibNull.c */, + A581509C2538171200CF4451 /* BaseSmbusLibNull.uni */, + A581509D2538171200CF4451 /* BaseSmbusLibNull.inf */, + ); + path = BaseSmbusLibNull; + sourceTree = ""; + }; + A581509E2538171200CF4451 /* BaseTimerLibNullTemplate */ = { + isa = PBXGroup; + children = ( + A581509F2538171200CF4451 /* BaseTimerLibNullTemplate.uni */, + A58150A02538171200CF4451 /* BaseTimerLibNullTemplate.inf */, + A58150A12538171200CF4451 /* TimerLibNull.c */, + ); + path = BaseTimerLibNullTemplate; + sourceTree = ""; + }; + A58150A22538171200CF4451 /* BaseS3IoLib */ = { + isa = PBXGroup; + children = ( + A58150A32538171200CF4451 /* BaseS3IoLib.inf */, + A58150A42538171200CF4451 /* BaseS3IoLib.uni */, + A58150A52538171200CF4451 /* S3IoLib.c */, + ); + path = BaseS3IoLib; + sourceTree = ""; + }; + A58150A62538171200CF4451 /* BaseDebugLibSerialPort */ = { + isa = PBXGroup; + children = ( + A58150A72538171200CF4451 /* BaseDebugLibSerialPort.uni */, + A58150A82538171200CF4451 /* BaseDebugLibSerialPort.inf */, + A58150A92538171200CF4451 /* DebugLib.c */, + ); + path = BaseDebugLibSerialPort; + sourceTree = ""; + }; + A58150AA2538171200CF4451 /* BaseMemoryLibSse2 */ = { + isa = PBXGroup; + children = ( + A58150AB2538171200CF4451 /* SetMem64Wrapper.c */, + A58150AC2538171200CF4451 /* ZeroMemWrapper.c */, + A58150AD2538171200CF4451 /* CopyMemWrapper.c */, + A58150AE2538171200CF4451 /* ScanMem64Wrapper.c */, + A58150AF2538171200CF4451 /* X64 */, + A58150BC2538171200CF4451 /* BaseMemoryLibSse2.uni */, + A58150BD2538171200CF4451 /* ScanMem8Wrapper.c */, + A58150BE2538171200CF4451 /* BaseMemoryLibSse2.inf */, + A58150BF2538171200CF4451 /* SetMem32Wrapper.c */, + A58150C02538171200CF4451 /* Ia32 */, + A58150CD2538171200CF4451 /* ScanMem32Wrapper.c */, + A58150CE2538171200CF4451 /* IsZeroBufferWrapper.c */, + A58150CF2538171200CF4451 /* SetMemWrapper.c */, + A58150D02538171200CF4451 /* CompareMemWrapper.c */, + A58150D12538171200CF4451 /* SetMem16Wrapper.c */, + A58150D22538171200CF4451 /* MemLibGuid.c */, + A58150D32538171200CF4451 /* MemLibInternals.h */, + A58150D42538171200CF4451 /* ScanMem16Wrapper.c */, + ); + path = BaseMemoryLibSse2; + sourceTree = ""; + }; + A58150AF2538171200CF4451 /* X64 */ = { + isa = PBXGroup; + children = ( + A58150B02538171200CF4451 /* ZeroMem.nasm */, + A58150B12538171200CF4451 /* CompareMem.nasm */, + A58150B22538171200CF4451 /* SetMem16.nasm */, + A58150B32538171200CF4451 /* ScanMem64.nasm */, + A58150B42538171200CF4451 /* ScanMem32.nasm */, + A58150B52538171200CF4451 /* SetMem.nasm */, + A58150B62538171200CF4451 /* IsZeroBuffer.nasm */, + A58150B72538171200CF4451 /* SetMem64.nasm */, + A58150B82538171200CF4451 /* ScanMem8.nasm */, + A58150B92538171200CF4451 /* SetMem32.nasm */, + A58150BA2538171200CF4451 /* ScanMem16.nasm */, + A58150BB2538171200CF4451 /* CopyMem.nasm */, + ); + path = X64; + sourceTree = ""; + }; + A58150C02538171200CF4451 /* Ia32 */ = { + isa = PBXGroup; + children = ( + A58150C12538171200CF4451 /* ZeroMem.nasm */, + A58150C22538171200CF4451 /* CompareMem.nasm */, + A58150C32538171200CF4451 /* SetMem16.nasm */, + A58150C42538171200CF4451 /* ScanMem64.nasm */, + A58150C52538171200CF4451 /* ScanMem32.nasm */, + A58150C62538171200CF4451 /* SetMem.nasm */, + A58150C72538171200CF4451 /* IsZeroBuffer.nasm */, + A58150C82538171200CF4451 /* SetMem64.nasm */, + A58150C92538171200CF4451 /* ScanMem8.nasm */, + A58150CA2538171200CF4451 /* SetMem32.nasm */, + A58150CB2538171200CF4451 /* ScanMem16.nasm */, + A58150CC2538171200CF4451 /* CopyMem.nasm */, + ); + path = Ia32; + sourceTree = ""; + }; + A58150D52538171200CF4451 /* BaseUefiDecompressLib */ = { + isa = PBXGroup; + children = ( + A58150D62538171200CF4451 /* BaseUefiDecompressLib.uni */, + A58150D72538171200CF4451 /* BaseUefiDecompressLib.inf */, + A58150D82538171200CF4451 /* BaseUefiDecompressLibInternals.h */, + A58150D92538171200CF4451 /* BaseUefiTianoCustomDecompressLib.inf */, + A58150DA2538171200CF4451 /* BaseUefiDecompressLib.c */, + A58150DB2538171200CF4451 /* BaseUefiTianoCustomDecompressLib.c */, + ); + path = BaseUefiDecompressLib; + sourceTree = ""; + }; + A58150DC2538171200CF4451 /* BaseSerialPortLibNull */ = { + isa = PBXGroup; + children = ( + A58150DD2538171200CF4451 /* BaseSerialPortLibNull.uni */, + A58150DE2538171200CF4451 /* BaseSerialPortLibNull.inf */, + A58150DF2538171200CF4451 /* BaseSerialPortLibNull.c */, + ); + path = BaseSerialPortLibNull; + sourceTree = ""; + }; + A58150E02538171200CF4451 /* BaseS3BootScriptLibNull */ = { + isa = PBXGroup; + children = ( + A58150E12538171200CF4451 /* BaseS3BootScriptLibNull.inf */, + A58150E22538171200CF4451 /* BootScriptLib.c */, + A58150E32538171200CF4451 /* BaseS3BootScriptLibNull.uni */, + ); + path = BaseS3BootScriptLibNull; + sourceTree = ""; + }; + A58150E42538171200CF4451 /* DxePcdLib */ = { + isa = PBXGroup; + children = ( + A58150E52538171200CF4451 /* DxePcdLib.c */, + A58150E62538171200CF4451 /* DxePcdLib.uni */, + A58150E72538171200CF4451 /* DxePcdLib.inf */, + ); + path = DxePcdLib; + sourceTree = ""; + }; + A58150E82538171200CF4451 /* SmmPeriodicSmiLib */ = { + isa = PBXGroup; + children = ( + A58150E92538171200CF4451 /* SmmPeriodicSmiLib.inf */, + A58150EA2538171200CF4451 /* SmmPeriodicSmiLib.uni */, + A58150EB2538171200CF4451 /* SmmPeriodicSmiLib.c */, + ); + path = SmmPeriodicSmiLib; + sourceTree = ""; + }; + A58150EC2538171200CF4451 /* UefiScsiLib */ = { + isa = PBXGroup; + children = ( + A58150ED2538171200CF4451 /* UefiScsiLib.c */, + A58150EE2538171200CF4451 /* UefiScsiLib.uni */, + A58150EF2538171200CF4451 /* UefiScsiLib.inf */, + ); + path = UefiScsiLib; + sourceTree = ""; + }; + A58150F02538171200CF4451 /* PeiResourcePublicationLib */ = { + isa = PBXGroup; + children = ( + A58150F12538171200CF4451 /* PeiResourcePublicationLib.c */, + A58150F22538171200CF4451 /* PeiResourcePublicationLib.inf */, + A58150F32538171200CF4451 /* PeiResourcePublicationLib.uni */, + ); + path = PeiResourcePublicationLib; + sourceTree = ""; + }; + A58150F42538171200CF4451 /* DxeHobLib */ = { + isa = PBXGroup; + children = ( + A58150F52538171200CF4451 /* DxeHobLib.inf */, + A58150F62538171200CF4451 /* DxeHobLib.uni */, + A58150F72538171200CF4451 /* HobLib.c */, + ); + path = DxeHobLib; + sourceTree = ""; + }; + A58150F82538171200CF4451 /* BaseS3PciSegmentLib */ = { + isa = PBXGroup; + children = ( + A58150F92538171200CF4451 /* S3PciSegmentLib.c */, + A58150FA2538171200CF4451 /* BaseS3PciSegmentLib.uni */, + A58150FB2538171200CF4451 /* BaseS3PciSegmentLib.inf */, + ); + path = BaseS3PciSegmentLib; + sourceTree = ""; + }; + A58150FC2538171200CF4451 /* BasePciSegmentInfoLibNull */ = { + isa = PBXGroup; + children = ( + A58150FD2538171200CF4451 /* BasePciSegmentInfoLibNull.inf */, + A58150FE2538171200CF4451 /* BasePciSegmentInfoLibNull.uni */, + A58150FF2538171200CF4451 /* PciSegmentInfoLib.c */, + ); + path = BasePciSegmentInfoLibNull; + sourceTree = ""; + }; + A58151002538171200CF4451 /* SmmMemoryAllocationLib */ = { + isa = PBXGroup; + children = ( + A58151012538171200CF4451 /* MemoryAllocationLib.c */, + A58151022538171200CF4451 /* SmmMemoryAllocationLib.uni */, + A58151032538171200CF4451 /* SmmMemoryAllocationLib.inf */, + ); + path = SmmMemoryAllocationLib; + sourceTree = ""; + }; + A58151042538171200CF4451 /* BaseExtractGuidedSectionLib */ = { + isa = PBXGroup; + children = ( + A58151052538171200CF4451 /* BaseExtractGuidedSectionLib.uni */, + A58151062538171300CF4451 /* BaseExtractGuidedSectionLib.inf */, + A58151072538171300CF4451 /* BaseExtractGuidedSectionLib.c */, + ); + path = BaseExtractGuidedSectionLib; + sourceTree = ""; + }; + A58151082538171300CF4451 /* UefiBootServicesTableLib */ = { + isa = PBXGroup; + children = ( + A58151092538171300CF4451 /* UefiBootServicesTableLib.uni */, + A581510A2538171300CF4451 /* UefiBootServicesTableLib.inf */, + A581510B2538171300CF4451 /* UefiBootServicesTableLib.c */, + ); + path = UefiBootServicesTableLib; + sourceTree = ""; + }; + A581510C2538171300CF4451 /* UefiDebugLibStdErr */ = { + isa = PBXGroup; + children = ( + A581510D2538171300CF4451 /* DebugLibConstructor.c */, + A581510E2538171300CF4451 /* UefiDebugLibStdErr.uni */, + A581510F2538171300CF4451 /* UefiDebugLibStdErr.inf */, + A58151102538171300CF4451 /* DebugLib.c */, + ); + path = UefiDebugLibStdErr; + sourceTree = ""; + }; + A58151112538171300CF4451 /* PeiMemoryAllocationLib */ = { + isa = PBXGroup; + children = ( + A58151122538171300CF4451 /* MemoryAllocationLib.c */, + A58151132538171300CF4451 /* PeiMemoryAllocationLib.uni */, + A58151142538171300CF4451 /* PeiMemoryAllocationLib.inf */, + ); + path = PeiMemoryAllocationLib; + sourceTree = ""; + }; + A58151152538171300CF4451 /* UefiDevicePathLib */ = { + isa = PBXGroup; + children = ( + A58151162538171300CF4451 /* DevicePathUtilities.c */, + A58151172538171300CF4451 /* UefiDevicePathLib.c */, + A58151182538171300CF4451 /* DevicePathFromText.c */, + A58151192538171300CF4451 /* UefiDevicePathLibOptionalDevicePathProtocol.uni */, + A581511A2538171300CF4451 /* DevicePathToText.c */, + A581511B2538171300CF4451 /* UefiDevicePathLibOptionalDevicePathProtocol.c */, + A581511C2538171300CF4451 /* UefiDevicePathLibOptionalDevicePathProtocol.inf */, + A581511D2538171300CF4451 /* UefiDevicePathLib.uni */, + A581511E2538171300CF4451 /* UefiDevicePathLib.inf */, + A581511F2538171300CF4451 /* UefiDevicePathLib.h */, + ); + path = UefiDevicePathLib; + sourceTree = ""; + }; + A58151202538171300CF4451 /* PeiHobLib */ = { + isa = PBXGroup; + children = ( + A58151212538171300CF4451 /* PeiHobLib.uni */, + A58151222538171300CF4451 /* PeiHobLib.inf */, + A58151232538171300CF4451 /* HobLib.c */, + ); + path = PeiHobLib; + sourceTree = ""; + }; + A58151242538171300CF4451 /* PeiMemoryLib */ = { + isa = PBXGroup; + children = ( + A58151252538171300CF4451 /* SetMem64Wrapper.c */, + A58151262538171300CF4451 /* ZeroMemWrapper.c */, + A58151272538171300CF4451 /* CopyMemWrapper.c */, + A58151282538171300CF4451 /* ScanMem64Wrapper.c */, + A58151292538171300CF4451 /* MemLibGeneric.c */, + A581512A2538171300CF4451 /* PeiMemoryLib.inf */, + A581512B2538171300CF4451 /* ScanMem8Wrapper.c */, + A581512C2538171300CF4451 /* PeiMemoryLib.uni */, + A581512D2538171300CF4451 /* SetMem32Wrapper.c */, + A581512E2538171300CF4451 /* ScanMem32Wrapper.c */, + A581512F2538171300CF4451 /* IsZeroBufferWrapper.c */, + A58151302538171300CF4451 /* SetMemWrapper.c */, + A58151312538171300CF4451 /* MemLib.c */, + A58151322538171300CF4451 /* CompareMemWrapper.c */, + A58151332538171300CF4451 /* SetMem16Wrapper.c */, + A58151342538171300CF4451 /* MemLibGuid.c */, + A58151352538171300CF4451 /* MemLibInternals.h */, + A58151362538171300CF4451 /* ScanMem16Wrapper.c */, + ); + path = PeiMemoryLib; + sourceTree = ""; + }; + A58151372538171300CF4451 /* BaseIoLibIntrinsic */ = { + isa = PBXGroup; + children = ( + A58151382538171300CF4451 /* BaseIoLibIntrinsic.inf */, + A58151392538171300CF4451 /* IoLibEbc.c */, + A581513A2538171300CF4451 /* BaseIoLibIntrinsic.uni */, + A581513B2538171300CF4451 /* IoLibGcc.c */, + A581513C2538171300CF4451 /* BaseIoLibIntrinsicSev.inf */, + A581513D2538171300CF4451 /* BaseIoLibIntrinsicInternal.h */, + A581513E2538171300CF4451 /* IoLibMmioBuffer.c */, + A581513F2538171300CF4451 /* X64 */, + A58151422538171300CF4451 /* IoLib.c */, + A58151432538171300CF4451 /* IoHighLevel.c */, + A58151442538171300CF4451 /* IoLibMsc.c */, + A58151452538171300CF4451 /* Ia32 */, + A58151482538171300CF4451 /* IoLibArm.c */, + A58151492538171300CF4451 /* Arm */, + A581514C2538171300CF4451 /* BaseIoLibIntrinsicArmVirt.inf */, + A581514D2538171300CF4451 /* AArch64 */, + A58151502538171300CF4451 /* IoLibArmVirt.c */, + A58151512538171300CF4451 /* BaseIoLibIntrinsicArmVirt.uni */, + ); + path = BaseIoLibIntrinsic; + sourceTree = ""; + }; + A581513F2538171300CF4451 /* X64 */ = { + isa = PBXGroup; + children = ( + A58151402538171300CF4451 /* IoFifo.nasm */, + A58151412538171300CF4451 /* IoFifoSev.nasm */, + ); + path = X64; + sourceTree = ""; + }; + A58151452538171300CF4451 /* Ia32 */ = { + isa = PBXGroup; + children = ( + A58151462538171300CF4451 /* IoFifo.nasm */, + A58151472538171300CF4451 /* IoFifoSev.nasm */, + ); + path = Ia32; + sourceTree = ""; + }; + A58151492538171300CF4451 /* Arm */ = { + isa = PBXGroup; + children = ( + A581514A2538171300CF4451 /* ArmVirtMmio.S */, + A581514B2538171300CF4451 /* ArmVirtMmio.asm */, + ); + path = Arm; + sourceTree = ""; + }; + A581514D2538171300CF4451 /* AArch64 */ = { + isa = PBXGroup; + children = ( + A581514E2538171300CF4451 /* ArmVirtMmio.S */, + A581514F2538171300CF4451 /* ArmVirtMmio.asm */, + ); + path = AArch64; + sourceTree = ""; + }; + A58151522538171300CF4451 /* PeiPciSegmentLibPciCfg2 */ = { + isa = PBXGroup; + children = ( + A58151532538171300CF4451 /* PeiPciSegmentLibPciCfg2.inf */, + A58151542538171300CF4451 /* PeiPciSegmentLibPciCfg2.uni */, + A58151552538171300CF4451 /* PciSegmentLib.c */, + ); + path = PeiPciSegmentLibPciCfg2; + sourceTree = ""; + }; + A58151562538171300CF4451 /* BasePeCoffGetEntryPointLib */ = { + isa = PBXGroup; + children = ( + A58151572538171300CF4451 /* BasePeCoffGetEntryPointLib.uni */, + A58151582538171300CF4451 /* BasePeCoffGetEntryPointLib.inf */, + A58151592538171300CF4451 /* PeCoffGetEntryPoint.c */, + ); + path = BasePeCoffGetEntryPointLib; + sourceTree = ""; + }; + A581515A2538171300CF4451 /* UefiDevicePathLibDevicePathProtocol */ = { + isa = PBXGroup; + children = ( + A581515B2538171300CF4451 /* UefiDevicePathLibDevicePathProtocol.inf */, + A581515C2538171300CF4451 /* UefiDevicePathLibDevicePathProtocol.uni */, + A581515D2538171300CF4451 /* UefiDevicePathLib.c */, + ); + path = UefiDevicePathLibDevicePathProtocol; + sourceTree = ""; + }; + A581515E2538171300CF4451 /* SmmIoLib */ = { + isa = PBXGroup; + children = ( + A581515F2538171300CF4451 /* SmmIoLib.c */, + A58151602538171300CF4451 /* SmmIoLib.uni */, + A58151612538171300CF4451 /* SmmIoLib.inf */, + ); + path = SmmIoLib; + sourceTree = ""; + }; + A58151622538171300CF4451 /* DxeCoreHobLib */ = { + isa = PBXGroup; + children = ( + A58151632538171300CF4451 /* HobLib.c */, + A58151642538171300CF4451 /* DxeCoreHobLib.inf */, + A58151652538171300CF4451 /* DxeCoreHobLib.uni */, + ); + path = DxeCoreHobLib; + sourceTree = ""; + }; + A58151662538171300CF4451 /* UefiRuntimeServicesTableLib */ = { + isa = PBXGroup; + children = ( + A58151672538171300CF4451 /* UefiRuntimeServicesTableLib.uni */, + A58151682538171300CF4451 /* UefiRuntimeServicesTableLib.inf */, + A58151692538171300CF4451 /* UefiRuntimeServicesTableLib.c */, + ); + path = UefiRuntimeServicesTableLib; + sourceTree = ""; + }; + A581516A2538171300CF4451 /* PeiPcdLib */ = { + isa = PBXGroup; + children = ( + A581516B2538171300CF4451 /* PeiPcdLib.c */, + A581516C2538171300CF4451 /* PeiPcdLib.inf */, + A581516D2538171300CF4451 /* PeiPcdLib.uni */, + ); + path = PeiPcdLib; + sourceTree = ""; + }; + A581516E2538171300CF4451 /* SmmMemLib */ = { + isa = PBXGroup; + children = ( + A581516F2538171300CF4451 /* SmmMemLib.uni */, + A58151702538171300CF4451 /* SmmMemLib.c */, + A58151712538171300CF4451 /* SmmMemLib.inf */, + ); + path = SmmMemLib; + sourceTree = ""; + }; + A58151722538171300CF4451 /* UefiFileHandleLib */ = { + isa = PBXGroup; + children = ( + A58151732538171300CF4451 /* UefiFileHandleLib.inf */, + A58151742538171300CF4451 /* UefiFileHandleLib.uni */, + A58151752538171300CF4451 /* UefiFileHandleLib.c */, + ); + path = UefiFileHandleLib; + sourceTree = ""; + }; + A58151762538171300CF4451 /* DxeRuntimeDebugLibSerialPort */ = { + isa = PBXGroup; + children = ( + A58151772538171300CF4451 /* DebugLib.c */, + A58151782538171300CF4451 /* DxeRuntimeDebugLibSerialPort.inf */, + A58151792538171300CF4451 /* DxeRuntimeDebugLibSerialPort.uni */, + ); + path = DxeRuntimeDebugLibSerialPort; + sourceTree = ""; + }; + A581517A2538171300CF4451 /* BaseMemoryLibMmx */ = { + isa = PBXGroup; + children = ( + A581517B2538171300CF4451 /* SetMem64Wrapper.c */, + A581517C2538171300CF4451 /* ZeroMemWrapper.c */, + A581517D2538171300CF4451 /* CopyMemWrapper.c */, + A581517E2538171300CF4451 /* ScanMem64Wrapper.c */, + A581517F2538171300CF4451 /* X64 */, + A581518C2538171300CF4451 /* ScanMem8Wrapper.c */, + A581518D2538171300CF4451 /* SetMem32Wrapper.c */, + A581518E2538171300CF4451 /* Ia32 */, + A581519B2538171300CF4451 /* ScanMem32Wrapper.c */, + A581519C2538171300CF4451 /* IsZeroBufferWrapper.c */, + A581519D2538171300CF4451 /* SetMemWrapper.c */, + A581519E2538171300CF4451 /* CompareMemWrapper.c */, + A581519F2538171300CF4451 /* SetMem16Wrapper.c */, + A58151A02538171300CF4451 /* MemLibGuid.c */, + A58151A12538171300CF4451 /* BaseMemoryLibMmx.inf */, + A58151A22538171300CF4451 /* MemLibInternals.h */, + A58151A32538171300CF4451 /* ScanMem16Wrapper.c */, + A58151A42538171300CF4451 /* BaseMemoryLibMmx.uni */, + ); + path = BaseMemoryLibMmx; + sourceTree = ""; + }; + A581517F2538171300CF4451 /* X64 */ = { + isa = PBXGroup; + children = ( + A58151802538171300CF4451 /* ZeroMem.nasm */, + A58151812538171300CF4451 /* CompareMem.nasm */, + A58151822538171300CF4451 /* SetMem16.nasm */, + A58151832538171300CF4451 /* ScanMem64.nasm */, + A58151842538171300CF4451 /* ScanMem32.nasm */, + A58151852538171300CF4451 /* SetMem.nasm */, + A58151862538171300CF4451 /* IsZeroBuffer.nasm */, + A58151872538171300CF4451 /* SetMem64.nasm */, + A58151882538171300CF4451 /* ScanMem8.nasm */, + A58151892538171300CF4451 /* SetMem32.nasm */, + A581518A2538171300CF4451 /* ScanMem16.nasm */, + A581518B2538171300CF4451 /* CopyMem.nasm */, + ); + path = X64; + sourceTree = ""; + }; + A581518E2538171300CF4451 /* Ia32 */ = { + isa = PBXGroup; + children = ( + A581518F2538171300CF4451 /* ZeroMem.nasm */, + A58151902538171300CF4451 /* CompareMem.nasm */, + A58151912538171300CF4451 /* SetMem16.nasm */, + A58151922538171300CF4451 /* ScanMem64.nasm */, + A58151932538171300CF4451 /* ScanMem32.nasm */, + A58151942538171300CF4451 /* SetMem.nasm */, + A58151952538171300CF4451 /* IsZeroBuffer.nasm */, + A58151962538171300CF4451 /* SetMem64.nasm */, + A58151972538171300CF4451 /* ScanMem8.nasm */, + A58151982538171300CF4451 /* SetMem32.nasm */, + A58151992538171300CF4451 /* ScanMem16.nasm */, + A581519A2538171300CF4451 /* CopyMem.nasm */, + ); + path = Ia32; + sourceTree = ""; + }; + A58151A52538171300CF4451 /* BaseOrderedCollectionRedBlackTreeLib */ = { + isa = PBXGroup; + children = ( + A58151A62538171300CF4451 /* BaseOrderedCollectionRedBlackTreeLib.inf */, + A58151A72538171300CF4451 /* BaseOrderedCollectionRedBlackTreeLib.uni */, + A58151A82538171300CF4451 /* BaseOrderedCollectionRedBlackTreeLib.c */, + ); + path = BaseOrderedCollectionRedBlackTreeLib; + sourceTree = ""; + }; + A58151A92538171300CF4451 /* UefiMemoryAllocationLib */ = { + isa = PBXGroup; + children = ( + A58151AA2538171300CF4451 /* UefiMemoryAllocationLib.inf */, + A58151AB2538171300CF4451 /* MemoryAllocationLib.c */, + A58151AC2538171300CF4451 /* UefiMemoryAllocationLib.uni */, + ); + path = UefiMemoryAllocationLib; + sourceTree = ""; + }; + A58151AD2538171300CF4451 /* UefiRuntimeLib */ = { + isa = PBXGroup; + children = ( + A58151AE2538171300CF4451 /* UefiRuntimeLib.uni */, + A58151AF2538171300CF4451 /* UefiRuntimeLib.inf */, + A58151B02538171300CF4451 /* RuntimeLib.c */, + ); + path = UefiRuntimeLib; + sourceTree = ""; + }; + A58151B12538171300CF4451 /* UefiDebugLibConOut */ = { + isa = PBXGroup; + children = ( + A58151B22538171300CF4451 /* UefiDebugLibConOut.inf */, + A58151B32538171300CF4451 /* UefiDebugLibConOut.uni */, + A58151B42538171300CF4451 /* DebugLibConstructor.c */, + A58151B52538171300CF4451 /* DebugLib.c */, + ); + path = UefiDebugLibConOut; + sourceTree = ""; + }; + A58151B62538171300CF4451 /* BasePciLibPciExpress */ = { + isa = PBXGroup; + children = ( + A58151B72538171300CF4451 /* BasePciLibPciExpress.uni */, + A58151B82538171300CF4451 /* BasePciLibPciExpress.inf */, + A58151B92538171300CF4451 /* PciLib.c */, + ); + path = BasePciLibPciExpress; + sourceTree = ""; + }; + A58151BA2538171300CF4451 /* UefiLib */ = { + isa = PBXGroup; + children = ( + A58151BB2538171300CF4451 /* UefiLibPrint.c */, + A58151BC2538171300CF4451 /* UefiLib.uni */, + A58151BD2538171300CF4451 /* UefiLib.inf */, + A58151BE2538171300CF4451 /* UefiDriverModel.c */, + A58151BF2538171300CF4451 /* UefiNotTiano.c */, + A58151C02538171300CF4451 /* Console.c */, + A58151C12538171300CF4451 /* UefiLib.c */, + A58151C22538171300CF4451 /* UefiLibInternal.h */, + A58151C32538171300CF4451 /* Acpi.c */, + ); + path = UefiLib; + sourceTree = ""; + }; + A58151C42538171300CF4451 /* DxeHstiLib */ = { + isa = PBXGroup; + children = ( + A58151C52538171300CF4451 /* DxeHstiLib.uni */, + A58151C62538171300CF4451 /* HstiDxe.c */, + A58151C72538171300CF4451 /* DxeHstiLib.inf */, + A58151C82538171300CF4451 /* HstiAip.c */, + A58151C92538171300CF4451 /* HstiDxe.h */, + ); + path = DxeHstiLib; + sourceTree = ""; + }; + A58151CA2538171300CF4451 /* BasePostCodeLibDebug */ = { + isa = PBXGroup; + children = ( + A58151CB2538171300CF4451 /* PostCode.c */, + A58151CC2538171300CF4451 /* BasePostCodeLibDebug.uni */, + A58151CD2538171300CF4451 /* BasePostCodeLibDebug.inf */, + ); + path = BasePostCodeLibDebug; + sourceTree = ""; + }; + A58151CE2538171300CF4451 /* BaseS3StallLib */ = { + isa = PBXGroup; + children = ( + A58151CF2538171300CF4451 /* BaseS3StallLib.inf */, + A58151D02538171300CF4451 /* BaseS3StallLib.uni */, + A58151D12538171300CF4451 /* S3StallLib.c */, + ); + path = BaseS3StallLib; + sourceTree = ""; + }; + A58151D22538171300CF4451 /* BaseMemoryLibOptPei */ = { + isa = PBXGroup; + children = ( + A58151D32538171300CF4451 /* SetMem64Wrapper.c */, + A58151D42538171300CF4451 /* ZeroMemWrapper.c */, + A58151D52538171300CF4451 /* BaseMemoryLibOptPei.uni */, + A58151D62538171300CF4451 /* CopyMemWrapper.c */, + A58151D72538171300CF4451 /* ScanMem64Wrapper.c */, + A58151D82538171300CF4451 /* BaseMemoryLibOptPei.inf */, + A58151D92538171300CF4451 /* X64 */, + A58151E62538171300CF4451 /* ScanMem8Wrapper.c */, + A58151E72538171300CF4451 /* SetMem32Wrapper.c */, + A58151E82538171300CF4451 /* Ia32 */, + A58151F52538171300CF4451 /* ScanMem32Wrapper.c */, + A58151F62538171300CF4451 /* IsZeroBufferWrapper.c */, + A58151F72538171300CF4451 /* SetMemWrapper.c */, + A58151F82538171300CF4451 /* CompareMemWrapper.c */, + A58151F92538171300CF4451 /* SetMem16Wrapper.c */, + A58151FA2538171300CF4451 /* MemLibGuid.c */, + A58151FB2538171300CF4451 /* MemLibInternals.h */, + A58151FC2538171300CF4451 /* ScanMem16Wrapper.c */, + ); + path = BaseMemoryLibOptPei; + sourceTree = ""; + }; + A58151D92538171300CF4451 /* X64 */ = { + isa = PBXGroup; + children = ( + A58151DA2538171300CF4451 /* ZeroMem.nasm */, + A58151DB2538171300CF4451 /* CompareMem.nasm */, + A58151DC2538171300CF4451 /* SetMem16.nasm */, + A58151DD2538171300CF4451 /* ScanMem64.nasm */, + A58151DE2538171300CF4451 /* ScanMem32.nasm */, + A58151DF2538171300CF4451 /* SetMem.nasm */, + A58151E02538171300CF4451 /* IsZeroBuffer.nasm */, + A58151E12538171300CF4451 /* SetMem64.nasm */, + A58151E22538171300CF4451 /* ScanMem8.nasm */, + A58151E32538171300CF4451 /* SetMem32.nasm */, + A58151E42538171300CF4451 /* ScanMem16.nasm */, + A58151E52538171300CF4451 /* CopyMem.nasm */, + ); + path = X64; + sourceTree = ""; + }; + A58151E82538171300CF4451 /* Ia32 */ = { + isa = PBXGroup; + children = ( + A58151E92538171300CF4451 /* ZeroMem.nasm */, + A58151EA2538171300CF4451 /* CompareMem.nasm */, + A58151EB2538171300CF4451 /* SetMem16.nasm */, + A58151EC2538171300CF4451 /* ScanMem64.nasm */, + A58151ED2538171300CF4451 /* ScanMem32.nasm */, + A58151EE2538171300CF4451 /* SetMem.nasm */, + A58151EF2538171300CF4451 /* IsZeroBuffer.nasm */, + A58151F02538171300CF4451 /* SetMem64.nasm */, + A58151F12538171300CF4451 /* ScanMem8.nasm */, + A58151F22538171300CF4451 /* SetMem32.nasm */, + A58151F32538171300CF4451 /* ScanMem16.nasm */, + A58151F42538171300CF4451 /* CopyMem.nasm */, + ); + path = Ia32; + sourceTree = ""; + }; + A58151FD2538171300CF4451 /* UefiPciLibPciRootBridgeIo */ = { + isa = PBXGroup; + children = ( + A58151FE2538171300CF4451 /* UefiPciLibPciRootBridgeIo.uni */, + A58151FF2538171300CF4451 /* UefiPciLibPciRootBridgeIo.inf */, + A58152002538171300CF4451 /* PciLib.c */, + ); + path = UefiPciLibPciRootBridgeIo; + sourceTree = ""; + }; + A58152012538171300CF4451 /* PeimEntryPoint */ = { + isa = PBXGroup; + children = ( + A58152022538171300CF4451 /* PeimEntryPoint.c */, + A58152032538171300CF4451 /* PeimEntryPoint.uni */, + A58152042538171300CF4451 /* PeimEntryPoint.inf */, + ); + path = PeimEntryPoint; + sourceTree = ""; + }; + A58152052538171300CF4451 /* SmiHandlerProfileLibNull */ = { + isa = PBXGroup; + children = ( + A58152062538171300CF4451 /* SmiHandlerProfileLibNull.c */, + A58152072538171300CF4451 /* SmiHandlerProfileLibNull.inf */, + A58152082538171300CF4451 /* SmiHandlerProfileLibNull.uni */, + ); + path = SmiHandlerProfileLibNull; + sourceTree = ""; + }; + A58152092538171300CF4451 /* BaseS3PciLib */ = { + isa = PBXGroup; + children = ( + A581520A2538171300CF4451 /* S3PciLib.c */, + A581520B2538171300CF4451 /* BaseS3PciLib.uni */, + A581520C2538171300CF4451 /* BaseS3PciLib.inf */, + ); + path = BaseS3PciLib; + sourceTree = ""; + }; + A581520D2538171300CF4451 /* BasePrintLib */ = { + isa = PBXGroup; + children = ( + A581520E2538171300CF4451 /* PrintLibInternal.h */, + A581520F2538171300CF4451 /* PrintLib.c */, + A58152102538171300CF4451 /* BasePrintLib.inf */, + A58152112538171300CF4451 /* BasePrintLib.uni */, + A58152122538171300CF4451 /* PrintLibInternal.c */, + ); + path = BasePrintLib; + sourceTree = ""; + }; + A58152132538171300CF4451 /* PeiIoLibCpuIo */ = { + isa = PBXGroup; + children = ( + A58152142538171300CF4451 /* IoLibMmioBuffer.c */, + A58152152538171300CF4451 /* IoLib.c */, + A58152162538171300CF4451 /* IoHighLevel.c */, + A58152172538171300CF4451 /* PeiIoLibCpuIo.uni */, + A58152182538171300CF4451 /* PeiIoLibCpuIo.inf */, + ); + path = PeiIoLibCpuIo; + sourceTree = ""; + }; + A58152192538171300CF4451 /* BaseReportStatusCodeLibNull */ = { + isa = PBXGroup; + children = ( + A581521A2538171300CF4451 /* BaseReportStatusCodeLib.c */, + A581521B2538171300CF4451 /* BaseReportStatusCodeLibNull.uni */, + A581521C2538171300CF4451 /* BaseReportStatusCodeLibNull.inf */, + ); + path = BaseReportStatusCodeLibNull; + sourceTree = ""; + }; + A581521D2538171300CF4451 /* DxeServicesTableLib */ = { + isa = PBXGroup; + children = ( + A581521E2538171300CF4451 /* DxeServicesTableLib.c */, + A581521F2538171300CF4451 /* DxeServicesTableLib.inf */, + A58152202538171300CF4451 /* DxeServicesTableLib.uni */, + ); + path = DxeServicesTableLib; + sourceTree = ""; + }; + A58152212538171300CF4451 /* BasePeCoffExtraActionLibNull */ = { + isa = PBXGroup; + children = ( + A58152222538171300CF4451 /* BasePeCoffExtraActionLibNull.inf */, + A58152232538171300CF4451 /* PeCoffExtraActionLibNull.uni */, + A58152242538171300CF4451 /* PeCoffExtraActionLib.c */, + ); + path = BasePeCoffExtraActionLibNull; + sourceTree = ""; + }; + A58152252538171300CF4451 /* UefiUsbLib */ = { + isa = PBXGroup; + children = ( + A58152262538171300CF4451 /* UsbDxeLib.c */, + A58152272538171300CF4451 /* UefiUsbLib.inf */, + A58152282538171300CF4451 /* UefiUsbLib.uni */, + A58152292538171300CF4451 /* Hid.c */, + A581522A2538171300CF4451 /* UefiUsbLibInternal.h */, + ); + path = UefiUsbLib; + sourceTree = ""; + }; + A581522F2538172600CF4451 /* NetworkPkg */ = { + isa = PBXGroup; + children = ( + A58152302538172600CF4451 /* HttpBootDxe */, + A58152472538172600CF4451 /* NetworkPkg.dsc */, + A58152482538172600CF4451 /* WifiConnectionManagerDxe */, + A581525D2538172600CF4451 /* Udp4Dxe */, + A58152672538172600CF4451 /* DpcDxe */, + A581526D2538172600CF4451 /* MnpDxe */, + A581527B2538172600CF4451 /* Network.dsc.inc */, + A581527C2538172600CF4451 /* Mtftp4Dxe */, + A581528B2538172600CF4451 /* NetworkDefines.dsc.inc */, + A581528C2538172600CF4451 /* Ip4Dxe */, + A58152AC2538172600CF4451 /* NetworkPcds.dsc.inc */, + A58152AD2538172600CF4451 /* NetworkPkg.dec */, + A58152AE2538172600CF4451 /* DnsDxe */, + A58152BA2538172600CF4451 /* NetworkPkgExtra.uni */, + A58152BB2538172600CF4451 /* Include */, + A58152CD2538172600CF4451 /* NetworkPkg.uni */, + A58152CE2538172600CF4451 /* Dhcp4Dxe */, + A58152DB2538172600CF4451 /* NetworkLibs.dsc.inc */, + A58152DC2538172600CF4451 /* SnpDxe */, + A58152F22538172600CF4451 /* Library */, + A581530D2538172600CF4451 /* VlanConfigDxe */, + A58153182538172600CF4451 /* NetworkComponents.dsc.inc */, + A58153192538172600CF4451 /* IScsiDxe */, + A58153372538172600CF4451 /* Dhcp6Dxe */, + A58153442538172600CF4451 /* HttpUtilitiesDxe */, + A581534B2538172600CF4451 /* Udp6Dxe */, + A58153552538172600CF4451 /* Network.fdf.inc */, + A58153562538172600CF4451 /* Application */, + A581535D2538172600CF4451 /* ArpDxe */, + A58153672538172600CF4451 /* HttpDxe */, + A58153772538172600CF4451 /* TlsAuthConfigDxe */, + A58153812538172600CF4451 /* Ip6Dxe */, + A58153A32538172600CF4451 /* UefiPxeBcDxe */, + A58153B62538172600CF4451 /* TlsDxe */, + A58153C02538172600CF4451 /* TcpDxe */, + A58153D72538172600CF4451 /* Mtftp6Dxe */, + ); + name = NetworkPkg; + path = ../../../NetworkPkg; + sourceTree = ""; + }; + A58152302538172600CF4451 /* HttpBootDxe */ = { + isa = PBXGroup; + children = ( + A58152312538172600CF4451 /* HttpBootClient.h */, + A58152322538172600CF4451 /* HttpBootDhcp6.h */, + A58152332538172600CF4451 /* HttpBootDhcp4.c */, + A58152342538172600CF4451 /* HttpBootSupport.h */, + A58152352538172600CF4451 /* HttpBootImpl.c */, + A58152362538172600CF4451 /* HttpBootDxe.h */, + A58152372538172600CF4451 /* HttpBootConfig.h */, + A58152382538172600CF4451 /* HttpBootComponentName.c */, + A58152392538172600CF4451 /* HttpBootConfigVfr.vfr */, + A581523A2538172600CF4451 /* HttpBootConfigNVDataStruc.h */, + A581523B2538172600CF4451 /* HttpBootDhcp4.h */, + A581523C2538172600CF4451 /* HttpBootSupport.c */, + A581523D2538172600CF4451 /* HttpBootDhcp6.c */, + A581523E2538172600CF4451 /* HttpBootClient.c */, + A581523F2538172600CF4451 /* HttpBootDxeExtra.uni */, + A58152402538172600CF4451 /* HttpBootComponentName.h */, + A58152412538172600CF4451 /* HttpBootConfigStrings.uni */, + A58152422538172600CF4451 /* HttpBootConfig.c */, + A58152432538172600CF4451 /* HttpBootDxe.c */, + A58152442538172600CF4451 /* HttpBootImpl.h */, + A58152452538172600CF4451 /* HttpBootDxe.inf */, + A58152462538172600CF4451 /* HttpBootDxe.uni */, + ); + path = HttpBootDxe; + sourceTree = ""; + }; + A58152482538172600CF4451 /* WifiConnectionManagerDxe */ = { + isa = PBXGroup; + children = ( + A58152492538172600CF4451 /* WifiConnectionMgrImpl.h */, + A581524A2538172600CF4451 /* WifiConnectionMgrComponentName.c */, + A581524B2538172600CF4451 /* WifiConnectionMgrMisc.c */, + A581524C2538172600CF4451 /* WifiConnectionMgrDriverBinding.h */, + A581524D2538172600CF4451 /* WifiConnectionMgrConfigNVDataStruct.h */, + A581524E2538172600CF4451 /* WifiConnectionMgrHiiConfigAccess.h */, + A581524F2538172600CF4451 /* WifiConnectionManagerDxe.vfr */, + A58152502538172600CF4451 /* EapContext.h */, + A58152512538172600CF4451 /* WifiConnectionMgrFileUtil.h */, + A58152522538172600CF4451 /* WifiConnectionMgrConfig.h */, + A58152532538172600CF4451 /* WifiConnectionMgrDxe.h */, + A58152542538172600CF4451 /* WifiConnectionMgrConfigHii.h */, + A58152552538172600CF4451 /* WifiConnectionMgrDriver.c */, + A58152562538172600CF4451 /* WifiConnectionMgrComponentName.h */, + A58152572538172600CF4451 /* WifiConnectionMgrImpl.c */, + A58152582538172600CF4451 /* WifiConnectionMgrMisc.h */, + A58152592538172600CF4451 /* WifiConnectionManagerDxeStrings.uni */, + A581525A2538172600CF4451 /* WifiConnectionManagerDxe.inf */, + A581525B2538172600CF4451 /* WifiConnectionMgrHiiConfigAccess.c */, + A581525C2538172600CF4451 /* WifiConnectionMgrFileUtil.c */, + ); + path = WifiConnectionManagerDxe; + sourceTree = ""; + }; + A581525D2538172600CF4451 /* Udp4Dxe */ = { + isa = PBXGroup; + children = ( + A581525E2538172600CF4451 /* Udp4Driver.h */, + A581525F2538172600CF4451 /* Udp4Impl.h */, + A58152602538172600CF4451 /* ComponentName.c */, + A58152612538172600CF4451 /* Udp4Main.c */, + A58152622538172600CF4451 /* Udp4Driver.c */, + A58152632538172600CF4451 /* Udp4Impl.c */, + A58152642538172600CF4451 /* Udp4DxeExtra.uni */, + A58152652538172600CF4451 /* Udp4Dxe.uni */, + A58152662538172600CF4451 /* Udp4Dxe.inf */, + ); + path = Udp4Dxe; + sourceTree = ""; + }; + A58152672538172600CF4451 /* DpcDxe */ = { + isa = PBXGroup; + children = ( + A58152682538172600CF4451 /* Dpc.c */, + A58152692538172600CF4451 /* DpcDxeExtra.uni */, + A581526A2538172600CF4451 /* DpcDxe.uni */, + A581526B2538172600CF4451 /* DpcDxe.inf */, + A581526C2538172600CF4451 /* Dpc.h */, + ); + path = DpcDxe; + sourceTree = ""; + }; + A581526D2538172600CF4451 /* MnpDxe */ = { + isa = PBXGroup; + children = ( + A581526E2538172600CF4451 /* MnpDxeExtra.uni */, + A581526F2538172600CF4451 /* MnpVlan.c */, + A58152702538172600CF4451 /* MnpDriver.c */, + A58152712538172600CF4451 /* MnpConfig.c */, + A58152722538172600CF4451 /* ComponentName.c */, + A58152732538172600CF4451 /* MnpDxe.uni */, + A58152742538172600CF4451 /* MnpMain.c */, + A58152752538172600CF4451 /* MnpDriver.h */, + A58152762538172600CF4451 /* MnpVlan.h */, + A58152772538172600CF4451 /* MnpDxe.inf */, + A58152782538172600CF4451 /* MnpIo.c */, + A58152792538172600CF4451 /* MnpImpl.h */, + A581527A2538172600CF4451 /* ComponentName.h */, + ); + path = MnpDxe; + sourceTree = ""; + }; + A581527C2538172600CF4451 /* Mtftp4Dxe */ = { + isa = PBXGroup; + children = ( + A581527D2538172600CF4451 /* Mtftp4Option.c */, + A581527E2538172600CF4451 /* Mtftp4Impl.c */, + A581527F2538172600CF4451 /* Mtftp4Driver.h */, + A58152802538172600CF4451 /* Mtftp4Support.h */, + A58152812538172600CF4451 /* ComponentName.c */, + A58152822538172600CF4451 /* Mtftp4Option.h */, + A58152832538172600CF4451 /* Mtftp4Wrq.c */, + A58152842538172600CF4451 /* Mtftp4Impl.h */, + A58152852538172600CF4451 /* Mtftp4Rrq.c */, + A58152862538172600CF4451 /* Mtftp4Dxe.uni */, + A58152872538172600CF4451 /* Mtftp4Dxe.inf */, + A58152882538172600CF4451 /* Mtftp4Support.c */, + A58152892538172600CF4451 /* Mtftp4DxeExtra.uni */, + A581528A2538172600CF4451 /* Mtftp4Driver.c */, + ); + path = Mtftp4Dxe; + sourceTree = ""; + }; + A581528C2538172600CF4451 /* Ip4Dxe */ = { + isa = PBXGroup; + children = ( + A581528D2538172600CF4451 /* Ip4Driver.h */, + A581528E2538172600CF4451 /* Ip4Input.h */, + A581528F2538172600CF4451 /* Ip4NvData.h */, + A58152902538172600CF4451 /* Ip4Dxe.uni */, + A58152912538172600CF4451 /* Ip4Igmp.c */, + A58152922538172600CF4451 /* Ip4Output.h */, + A58152932538172600CF4451 /* Ip4Icmp.c */, + A58152942538172600CF4451 /* Ip4Config2Impl.h */, + A58152952538172600CF4451 /* Ip4Dxe.inf */, + A58152962538172600CF4451 /* Ip4DxeStrings.uni */, + A58152972538172600CF4451 /* Ip4Config2.vfr */, + A58152982538172600CF4451 /* Ip4Impl.h */, + A58152992538172600CF4451 /* Ip4Config2Nv.c */, + A581529A2538172600CF4451 /* Ip4Route.h */, + A581529B2538172600CF4451 /* Ip4If.h */, + A581529C2538172600CF4451 /* Ip4Common.c */, + A581529D2538172600CF4451 /* Ip4DxeExtra.uni */, + A581529E2538172600CF4451 /* ComponentName.c */, + A581529F2538172600CF4451 /* Ip4Option.c */, + A58152A02538172600CF4451 /* Ip4Igmp.h */, + A58152A12538172600CF4451 /* Ip4Output.c */, + A58152A22538172600CF4451 /* Ip4Driver.c */, + A58152A32538172600CF4451 /* Ip4Input.c */, + A58152A42538172600CF4451 /* Ip4Config2Impl.c */, + A58152A52538172600CF4451 /* Ip4Icmp.h */, + A58152A62538172600CF4451 /* Ip4Route.c */, + A58152A72538172600CF4451 /* Ip4Config2Nv.h */, + A58152A82538172600CF4451 /* Ip4Impl.c */, + A58152A92538172600CF4451 /* Ip4Option.h */, + A58152AA2538172600CF4451 /* Ip4If.c */, + A58152AB2538172600CF4451 /* Ip4Common.h */, + ); + path = Ip4Dxe; + sourceTree = ""; + }; + A58152AE2538172600CF4451 /* DnsDxe */ = { + isa = PBXGroup; + children = ( + A58152AF2538172600CF4451 /* DnsImpl.c */, + A58152B02538172600CF4451 /* DnsDxeExtra.uni */, + A58152B12538172600CF4451 /* DnsProtocol.c */, + A58152B22538172600CF4451 /* DnsDriver.h */, + A58152B32538172600CF4451 /* DnsDhcp.c */, + A58152B42538172600CF4451 /* ComponentName.c */, + A58152B52538172600CF4451 /* DnsImpl.h */, + A58152B62538172600CF4451 /* DnsDxe.uni */, + A58152B72538172600CF4451 /* DnsDxe.inf */, + A58152B82538172600CF4451 /* DnsDhcp.h */, + A58152B92538172600CF4451 /* DnsDriver.c */, + ); + path = DnsDxe; + sourceTree = ""; + }; + A58152BB2538172600CF4451 /* Include */ = { + isa = PBXGroup; + children = ( + A58152BC2538172600CF4451 /* Library */, + A58152C32538172600CF4451 /* Protocol */, + A58152C52538172600CF4451 /* Guid */, + ); + path = Include; + sourceTree = ""; + }; + A58152BC2538172600CF4451 /* Library */ = { + isa = PBXGroup; + children = ( + A58152BD2538172600CF4451 /* HttpLib.h */, + A58152BE2538172600CF4451 /* IpIoLib.h */, + A58152BF2538172600CF4451 /* UdpIoLib.h */, + A58152C02538172600CF4451 /* NetLib.h */, + A58152C12538172600CF4451 /* TcpIoLib.h */, + A58152C22538172600CF4451 /* DpcLib.h */, + ); + path = Library; + sourceTree = ""; + }; + A58152C32538172600CF4451 /* Protocol */ = { + isa = PBXGroup; + children = ( + A58152C42538172600CF4451 /* Dpc.h */, + ); + path = Protocol; + sourceTree = ""; + }; + A58152C52538172600CF4451 /* Guid */ = { + isa = PBXGroup; + children = ( + A58152C62538172600CF4451 /* WifiConnectionManagerConfigHii.h */, + A58152C72538172600CF4451 /* TlsAuthConfigHii.h */, + A58152C82538172600CF4451 /* IScsiConfigHii.h */, + A58152C92538172600CF4451 /* HttpBootConfigHii.h */, + A58152CA2538172600CF4451 /* HttpTlsCipherList.h */, + A58152CB2538172600CF4451 /* Ip6ConfigHii.h */, + A58152CC2538172600CF4451 /* TlsAuthentication.h */, + ); + path = Guid; + sourceTree = ""; + }; + A58152CE2538172600CF4451 /* Dhcp4Dxe */ = { + isa = PBXGroup; + children = ( + A58152CF2538172600CF4451 /* Dhcp4Option.h */, + A58152D02538172600CF4451 /* Dhcp4Dxe.uni */, + A58152D12538172600CF4451 /* Dhcp4Dxe.inf */, + A58152D22538172600CF4451 /* Dhcp4Impl.h */, + A58152D32538172600CF4451 /* Dhcp4Io.c */, + A58152D42538172600CF4451 /* ComponentName.c */, + A58152D52538172600CF4451 /* Dhcp4Driver.c */, + A58152D62538172600CF4451 /* Dhcp4Option.c */, + A58152D72538172600CF4451 /* Dhcp4Impl.c */, + A58152D82538172600CF4451 /* Dhcp4DxeExtra.uni */, + A58152D92538172600CF4451 /* Dhcp4Io.h */, + A58152DA2538172600CF4451 /* Dhcp4Driver.h */, + ); + path = Dhcp4Dxe; + sourceTree = ""; + }; + A58152DC2538172600CF4451 /* SnpDxe */ = { + isa = PBXGroup; + children = ( + A58152DD2538172600CF4451 /* Snp.c */, + A58152DE2538172600CF4451 /* Receive_filters.c */, + A58152DF2538172600CF4451 /* Initialize.c */, + A58152E02538172600CF4451 /* Statistics.c */, + A58152E12538172600CF4451 /* Station_address.c */, + A58152E22538172600CF4451 /* WaitForPacket.c */, + A58152E32538172600CF4451 /* ComponentName.c */, + A58152E42538172600CF4451 /* Mcast_ip_to_mac.c */, + A58152E52538172600CF4451 /* Reset.c */, + A58152E62538172600CF4451 /* Callback.c */, + A58152E72538172600CF4451 /* Stop.c */, + A58152E82538172600CF4451 /* SnpDxe.inf */, + A58152E92538172600CF4451 /* Snp.h */, + A58152EA2538172600CF4451 /* Transmit.c */, + A58152EB2538172600CF4451 /* Get_status.c */, + A58152EC2538172600CF4451 /* Shutdown.c */, + A58152ED2538172600CF4451 /* SnpDxe.uni */, + A58152EE2538172600CF4451 /* Receive.c */, + A58152EF2538172600CF4451 /* SnpDxeExtra.uni */, + A58152F02538172600CF4451 /* Start.c */, + A58152F12538172600CF4451 /* Nvdata.c */, + ); + path = SnpDxe; + sourceTree = ""; + }; + A58152F22538172600CF4451 /* Library */ = { + isa = PBXGroup; + children = ( + A58152F32538172600CF4451 /* DxeUdpIoLib */, + A58152F72538172600CF4451 /* DxeNetLib */, + A58152FC2538172600CF4451 /* DxeIpIoLib */, + A58153002538172600CF4451 /* DxeDpcLib */, + A58153042538172600CF4451 /* DxeHttpLib */, + A58153092538172600CF4451 /* DxeTcpIoLib */, + ); + path = Library; + sourceTree = ""; + }; + A58152F32538172600CF4451 /* DxeUdpIoLib */ = { + isa = PBXGroup; + children = ( + A58152F42538172600CF4451 /* DxeUdpIoLib.inf */, + A58152F52538172600CF4451 /* DxeUpdIoLib.uni */, + A58152F62538172600CF4451 /* DxeUdpIoLib.c */, + ); + path = DxeUdpIoLib; + sourceTree = ""; + }; + A58152F72538172600CF4451 /* DxeNetLib */ = { + isa = PBXGroup; + children = ( + A58152F82538172600CF4451 /* DxeNetLib.inf */, + A58152F92538172600CF4451 /* DxeNetLib.uni */, + A58152FA2538172600CF4451 /* NetBuffer.c */, + A58152FB2538172600CF4451 /* DxeNetLib.c */, + ); + path = DxeNetLib; + sourceTree = ""; + }; + A58152FC2538172600CF4451 /* DxeIpIoLib */ = { + isa = PBXGroup; + children = ( + A58152FD2538172600CF4451 /* DxeIpIoLib.c */, + A58152FE2538172600CF4451 /* DxeIpIoLib.uni */, + A58152FF2538172600CF4451 /* DxeIpIoLib.inf */, + ); + path = DxeIpIoLib; + sourceTree = ""; + }; + A58153002538172600CF4451 /* DxeDpcLib */ = { + isa = PBXGroup; + children = ( + A58153012538172600CF4451 /* DpcLib.c */, + A58153022538172600CF4451 /* DxeDpcLib.uni */, + A58153032538172600CF4451 /* DxeDpcLib.inf */, + ); + path = DxeDpcLib; + sourceTree = ""; + }; + A58153042538172600CF4451 /* DxeHttpLib */ = { + isa = PBXGroup; + children = ( + A58153052538172600CF4451 /* DxeHttpLib.c */, + A58153062538172600CF4451 /* DxeHttpLib.inf */, + A58153072538172600CF4451 /* DxeHttpLib.uni */, + A58153082538172600CF4451 /* DxeHttpLib.h */, + ); + path = DxeHttpLib; + sourceTree = ""; + }; + A58153092538172600CF4451 /* DxeTcpIoLib */ = { + isa = PBXGroup; + children = ( + A581530A2538172600CF4451 /* DxeTcpIoLib.inf */, + A581530B2538172600CF4451 /* DxeTcpIoLib.uni */, + A581530C2538172600CF4451 /* DxeTcpIoLib.c */, + ); + path = DxeTcpIoLib; + sourceTree = ""; + }; + A581530D2538172600CF4451 /* VlanConfigDxe */ = { + isa = PBXGroup; + children = ( + A581530E2538172600CF4451 /* VlanConfigDxe.uni */, + A581530F2538172600CF4451 /* VlanConfigNvData.h */, + A58153102538172600CF4451 /* VlanConfigDxe.inf */, + A58153112538172600CF4451 /* VlanConfigDxeExtra.uni */, + A58153122538172600CF4451 /* VlanConfigImpl.c */, + A58153132538172600CF4451 /* VlanConfigStrings.uni */, + A58153142538172600CF4451 /* ComponentName.c */, + A58153152538172600CF4451 /* VlanConfig.vfr */, + A58153162538172600CF4451 /* VlanConfigDriver.c */, + A58153172538172600CF4451 /* VlanConfigImpl.h */, + ); + path = VlanConfigDxe; + sourceTree = ""; + }; + A58153192538172600CF4451 /* IScsiDxe */ = { + isa = PBXGroup; + children = ( + A581531A2538172600CF4451 /* IScsiCHAP.c */, + A581531B2538172600CF4451 /* IScsiDxe.inf */, + A581531C2538172600CF4451 /* IScsiProto.h */, + A581531D2538172600CF4451 /* IScsiDriver.h */, + A581531E2538172600CF4451 /* IScsiDhcp.h */, + A581531F2538172600CF4451 /* IScsiDns.h */, + A58153202538172600CF4451 /* IScsiConfigStrings.uni */, + A58153212538172600CF4451 /* IScsiDxe.uni */, + A58153222538172600CF4451 /* IScsiDhcp6.c */, + A58153232538172600CF4451 /* ComponentName.c */, + A58153242538172600CF4451 /* IScsiImpl.h */, + A58153252538172600CF4451 /* IScsiMisc.c */, + A58153262538172600CF4451 /* IScsiConfig.h */, + A58153272538172600CF4451 /* IScsiDxeExtra.uni */, + A58153282538172600CF4451 /* IScsiIbft.c */, + A58153292538172600CF4451 /* IScsiExtScsiPassThru.c */, + A581532A2538172600CF4451 /* IScsiProto.c */, + A581532B2538172600CF4451 /* IScsiCHAP.h */, + A581532C2538172600CF4451 /* IScsiConfigNVDataStruc.h */, + A581532D2538172600CF4451 /* IScsiAuthenticationInfo.c */, + A581532E2538172600CF4451 /* IScsiDns.c */, + A581532F2538172600CF4451 /* IScsiDhcp.c */, + A58153302538172600CF4451 /* IScsiDriver.c */, + A58153312538172600CF4451 /* IScsiDhcp6.h */, + A58153322538172600CF4451 /* IScsiConfigVfr.vfr */, + A58153332538172600CF4451 /* IScsiConfig.c */, + A58153342538172600CF4451 /* IScsiIbft.h */, + A58153352538172600CF4451 /* IScsiMisc.h */, + A58153362538172600CF4451 /* IScsiInitiatorName.c */, + ); + path = IScsiDxe; + sourceTree = ""; + }; + A58153372538172600CF4451 /* Dhcp6Dxe */ = { + isa = PBXGroup; + children = ( + A58153382538172600CF4451 /* Dhcp6Dxe.inf */, + A58153392538172600CF4451 /* Dhcp6Driver.c */, + A581533A2538172600CF4451 /* Dhcp6Dxe.uni */, + A581533B2538172600CF4451 /* Dhcp6Impl.h */, + A581533C2538172600CF4451 /* Dhcp6Utility.c */, + A581533D2538172600CF4451 /* Dhcp6Io.c */, + A581533E2538172600CF4451 /* ComponentName.c */, + A581533F2538172600CF4451 /* Dhcp6DxeExtra.uni */, + A58153402538172600CF4451 /* Dhcp6Driver.h */, + A58153412538172600CF4451 /* Dhcp6Impl.c */, + A58153422538172600CF4451 /* Dhcp6Io.h */, + A58153432538172600CF4451 /* Dhcp6Utility.h */, + ); + path = Dhcp6Dxe; + sourceTree = ""; + }; + A58153442538172600CF4451 /* HttpUtilitiesDxe */ = { + isa = PBXGroup; + children = ( + A58153452538172600CF4451 /* HttpUtilitiesDxe.h */, + A58153462538172600CF4451 /* HttpUtilitiesProtocol.c */, + A58153472538172600CF4451 /* HttpUtilitiesDxe.c */, + A58153482538172600CF4451 /* HttpUtilitiesDxe.uni */, + A58153492538172600CF4451 /* HttpUtilitiesDxe.inf */, + A581534A2538172600CF4451 /* HttpUtilitiesDxeExtra.uni */, + ); + path = HttpUtilitiesDxe; + sourceTree = ""; + }; + A581534B2538172600CF4451 /* Udp6Dxe */ = { + isa = PBXGroup; + children = ( + A581534C2538172600CF4451 /* Udp6Impl.h */, + A581534D2538172600CF4451 /* Udp6Main.c */, + A581534E2538172600CF4451 /* ComponentName.c */, + A581534F2538172600CF4451 /* Udp6DxeExtra.uni */, + A58153502538172600CF4451 /* Udp6Driver.h */, + A58153512538172600CF4451 /* Udp6Impl.c */, + A58153522538172600CF4451 /* Udp6Dxe.inf */, + A58153532538172600CF4451 /* Udp6Driver.c */, + A58153542538172600CF4451 /* Udp6Dxe.uni */, + ); + path = Udp6Dxe; + sourceTree = ""; + }; + A58153562538172600CF4451 /* Application */ = { + isa = PBXGroup; + children = ( + A58153572538172600CF4451 /* VConfig */, + ); + path = Application; + sourceTree = ""; + }; + A58153572538172600CF4451 /* VConfig */ = { + isa = PBXGroup; + children = ( + A58153582538172600CF4451 /* VConfig.c */, + A58153592538172600CF4451 /* VConfigExtra.uni */, + A581535A2538172600CF4451 /* VConfig.uni */, + A581535B2538172600CF4451 /* VConfigStrings.uni */, + A581535C2538172600CF4451 /* VConfig.inf */, + ); + path = VConfig; + sourceTree = ""; + }; + A581535D2538172600CF4451 /* ArpDxe */ = { + isa = PBXGroup; + children = ( + A581535E2538172600CF4451 /* ArpMain.c */, + A581535F2538172600CF4451 /* ArpDxeExtra.uni */, + A58153602538172600CF4451 /* ArpImpl.h */, + A58153612538172600CF4451 /* ComponentName.c */, + A58153622538172600CF4451 /* ArpDriver.h */, + A58153632538172600CF4451 /* ArpImpl.c */, + A58153642538172600CF4451 /* ArpDxe.inf */, + A58153652538172600CF4451 /* ArpDriver.c */, + A58153662538172600CF4451 /* ArpDxe.uni */, + ); + path = ArpDxe; + sourceTree = ""; + }; + A58153672538172600CF4451 /* HttpDxe */ = { + isa = PBXGroup; + children = ( + A58153682538172600CF4451 /* HttpProto.h */, + A58153692538172600CF4451 /* HttpDxe.inf */, + A581536A2538172600CF4451 /* HttpImpl.h */, + A581536B2538172600CF4451 /* HttpDxeExtra.uni */, + A581536C2538172600CF4451 /* HttpsSupport.c */, + A581536D2538172600CF4451 /* HttpDxe.uni */, + A581536E2538172600CF4451 /* HttpDns.h */, + A581536F2538172600CF4451 /* HttpDriver.c */, + A58153702538172600CF4451 /* ComponentName.c */, + A58153712538172600CF4451 /* HttpProto.c */, + A58153722538172600CF4451 /* HttpsSupport.h */, + A58153732538172600CF4451 /* HttpImpl.c */, + A58153742538172600CF4451 /* HttpDns.c */, + A58153752538172600CF4451 /* ComponentName.h */, + A58153762538172600CF4451 /* HttpDriver.h */, + ); + path = HttpDxe; + sourceTree = ""; + }; + A58153772538172600CF4451 /* TlsAuthConfigDxe */ = { + isa = PBXGroup; + children = ( + A58153782538172600CF4451 /* TlsAuthConfigDxe.c */, + A58153792538172600CF4451 /* TlsAuthConfigImpl.c */, + A581537A2538172600CF4451 /* TlsAuthConfigDxeStrings.uni */, + A581537B2538172600CF4451 /* TlsAuthConfigImpl.h */, + A581537C2538172600CF4451 /* TlsAuthConfigVfr.vfr */, + A581537D2538172600CF4451 /* TlsAuthConfigDxeExtra.uni */, + A581537E2538172600CF4451 /* TlsAuthConfigDxe.inf */, + A581537F2538172600CF4451 /* TlsAuthConfigNvData.h */, + A58153802538172600CF4451 /* TlsAuthConfigDxe.uni */, + ); + path = TlsAuthConfigDxe; + sourceTree = ""; + }; + A58153812538172600CF4451 /* Ip6Dxe */ = { + isa = PBXGroup; + children = ( + A58153822538172600CF4451 /* Ip6Nd.h */, + A58153832538172600CF4451 /* Ip6Common.c */, + A58153842538172600CF4451 /* Ip6Dxe.inf */, + A58153852538172600CF4451 /* Ip6Config.vfr */, + A58153862538172600CF4451 /* Ip6Mld.h */, + A58153872538172600CF4451 /* Ip6ConfigNv.c */, + A58153882538172600CF4451 /* Ip6Option.c */, + A58153892538172600CF4451 /* Ip6Dxe.uni */, + A581538A2538172600CF4451 /* Ip6Input.h */, + A581538B2538172600CF4451 /* Ip6Icmp.c */, + A581538C2538172600CF4451 /* Ip6Impl.h */, + A581538D2538172600CF4451 /* Ip6ConfigImpl.h */, + A581538E2538172600CF4451 /* Ip6Driver.h */, + A581538F2538172600CF4451 /* Ip6NvData.h */, + A58153902538172600CF4451 /* ComponentName.c */, + A58153912538172600CF4451 /* Ip6Route.h */, + A58153922538172600CF4451 /* Ip6Output.h */, + A58153932538172600CF4451 /* Ip6If.h */, + A58153942538172600CF4451 /* Ip6ConfigNv.h */, + A58153952538172600CF4451 /* Ip6Option.h */, + A58153962538172600CF4451 /* Ip6Mld.c */, + A58153972538172600CF4451 /* Ip6Common.h */, + A58153982538172600CF4451 /* Ip6Nd.c */, + A58153992538172600CF4451 /* Ip6DxeStrings.uni */, + A581539A2538172600CF4451 /* Ip6Icmp.h */, + A581539B2538172600CF4451 /* Ip6Input.c */, + A581539C2538172600CF4451 /* Ip6DxeExtra.uni */, + A581539D2538172600CF4451 /* Ip6ConfigImpl.c */, + A581539E2538172600CF4451 /* Ip6Impl.c */, + A581539F2538172600CF4451 /* Ip6Output.c */, + A58153A02538172600CF4451 /* Ip6If.c */, + A58153A12538172600CF4451 /* Ip6Route.c */, + A58153A22538172600CF4451 /* Ip6Driver.c */, + ); + path = Ip6Dxe; + sourceTree = ""; + }; + A58153A32538172600CF4451 /* UefiPxeBcDxe */ = { + isa = PBXGroup; + children = ( + A58153A42538172600CF4451 /* PxeBcBoot.h */, + A58153A52538172600CF4451 /* PxeBcImpl.c */, + A58153A62538172600CF4451 /* PxeBcDriver.h */, + A58153A72538172600CF4451 /* UefiPxeBcDxe.inf */, + A58153A82538172600CF4451 /* PxeBcSupport.h */, + A58153A92538172600CF4451 /* UefiPxeBcDxeExtra.uni */, + A58153AA2538172600CF4451 /* UefiPxeBcDxe.uni */, + A58153AB2538172600CF4451 /* PxeBcMtftp.h */, + A58153AC2538172600CF4451 /* PxeBcDhcp6.h */, + A58153AD2538172600CF4451 /* ComponentName.c */, + A58153AE2538172600CF4451 /* PxeBcDhcp4.c */, + A58153AF2538172600CF4451 /* PxeBcBoot.c */, + A58153B02538172600CF4451 /* PxeBcDriver.c */, + A58153B12538172600CF4451 /* PxeBcImpl.h */, + A58153B22538172600CF4451 /* PxeBcSupport.c */, + A58153B32538172600CF4451 /* PxeBcDhcp4.h */, + A58153B42538172600CF4451 /* PxeBcDhcp6.c */, + A58153B52538172600CF4451 /* PxeBcMtftp.c */, + ); + path = UefiPxeBcDxe; + sourceTree = ""; + }; + A58153B62538172600CF4451 /* TlsDxe */ = { + isa = PBXGroup; + children = ( + A58153B72538172600CF4451 /* TlsDxe.uni */, + A58153B82538172600CF4451 /* TlsDxeExtra.uni */, + A58153B92538172600CF4451 /* TlsDriver.h */, + A58153BA2538172600CF4451 /* TlsDxe.inf */, + A58153BB2538172600CF4451 /* TlsImpl.h */, + A58153BC2538172600CF4451 /* TlsProtocol.c */, + A58153BD2538172600CF4451 /* TlsDriver.c */, + A58153BE2538172600CF4451 /* TlsConfigProtocol.c */, + A58153BF2538172600CF4451 /* TlsImpl.c */, + ); + path = TlsDxe; + sourceTree = ""; + }; + A58153C02538172600CF4451 /* TcpDxe */ = { + isa = PBXGroup; + children = ( + A58153C12538172600CF4451 /* TcpTimer.c */, + A58153C22538172600CF4451 /* TcpOutput.c */, + A58153C32538172600CF4451 /* TcpDriver.c */, + A58153C42538172600CF4451 /* TcpDxe.uni */, + A58153C52538172600CF4451 /* TcpDxe.inf */, + A58153C62538172600CF4451 /* TcpProto.h */, + A58153C72538172600CF4451 /* TcpOption.h */, + A58153C82538172600CF4451 /* ComponentName.c */, + A58153C92538172600CF4451 /* SockImpl.c */, + A58153CA2538172600CF4451 /* TcpMain.h */, + A58153CB2538172600CF4451 /* TcpDriver.h */, + A58153CC2538172600CF4451 /* SockInterface.c */, + A58153CD2538172600CF4451 /* TcpInput.c */, + A58153CE2538172600CF4451 /* TcpMisc.c */, + A58153CF2538172600CF4451 /* TcpFunc.h */, + A58153D02538172600CF4451 /* TcpDispatcher.c */, + A58153D12538172600CF4451 /* TcpMain.c */, + A58153D22538172600CF4451 /* SockImpl.h */, + A58153D32538172600CF4451 /* Socket.h */, + A58153D42538172600CF4451 /* TcpDxeExtra.uni */, + A58153D52538172600CF4451 /* TcpOption.c */, + A58153D62538172600CF4451 /* TcpIo.c */, + ); + path = TcpDxe; + sourceTree = ""; + }; + A58153D72538172600CF4451 /* Mtftp6Dxe */ = { + isa = PBXGroup; + children = ( + A58153D82538172600CF4451 /* Mtftp6Driver.h */, + A58153D92538172600CF4451 /* Mtftp6Impl.c */, + A58153DA2538172600CF4451 /* Mtftp6DxeExtra.uni */, + A58153DB2538172600CF4451 /* Mtftp6Support.c */, + A58153DC2538172600CF4451 /* Mtftp6Wrq.c */, + A58153DD2538172600CF4451 /* ComponentName.c */, + A58153DE2538172600CF4451 /* Mtftp6Rrq.c */, + A58153DF2538172600CF4451 /* Mtftp6Option.c */, + A58153E02538172600CF4451 /* Mtftp6Driver.c */, + A58153E12538172600CF4451 /* Mtftp6Impl.h */, + A58153E22538172600CF4451 /* Mtftp6Dxe.inf */, + A58153E32538172600CF4451 /* Mtftp6Support.h */, + A58153E42538172600CF4451 /* Mtftp6Option.h */, + A58153E52538172600CF4451 /* Mtftp6Dxe.uni */, + ); + path = Mtftp6Dxe; + sourceTree = ""; + }; + A58153E62538173200CF4451 /* PcAtChipsetPkg */ = { + isa = PBXGroup; + children = ( + A58153E72538173200CF4451 /* PcAtChipsetPkg.dec */, + A58153E82538173200CF4451 /* PcAtChipsetPkg.uni */, + A58153E92538173200CF4451 /* IsaAcpiDxe */, + A58153F22538173200CF4451 /* HpetTimerDxe */, + A58153F72538173200CF4451 /* PcAtChipsetPkg.dsc */, + A58153F82538173200CF4451 /* Include */, + A58154002538173200CF4451 /* Bus */, + A58154092538173200CF4451 /* Library */, + A58154212538173200CF4451 /* 8259InterruptControllerDxe */, + A58154272538173200CF4451 /* PcAtChipsetPkgExtra.uni */, + A58154282538173200CF4451 /* 8254TimerDxe */, + A581542E2538173200CF4451 /* PcatRealTimeClockRuntimeDxe */, + ); + name = PcAtChipsetPkg; + path = ../../../PcAtChipsetPkg; + sourceTree = ""; + }; + A58153E92538173200CF4451 /* IsaAcpiDxe */ = { + isa = PBXGroup; + children = ( + A58153EA2538173200CF4451 /* IsaAcpi.c */, + A58153EB2538173200CF4451 /* IsaAcpiExtra.uni */, + A58153EC2538173200CF4451 /* PcatIsaAcpi.h */, + A58153ED2538173200CF4451 /* ComponentName.c */, + A58153EE2538173200CF4451 /* IsaAcpi.c.bak */, + A58153EF2538173200CF4451 /* PcatIsaAcpi.c */, + A58153F02538173200CF4451 /* IsaAcpi.inf */, + A58153F12538173200CF4451 /* IsaAcpi.uni */, + ); + path = IsaAcpiDxe; + sourceTree = ""; + }; + A58153F22538173200CF4451 /* HpetTimerDxe */ = { + isa = PBXGroup; + children = ( + A58153F32538173200CF4451 /* HpetTimerDxe.uni */, + A58153F42538173200CF4451 /* HpetTimer.c */, + A58153F52538173200CF4451 /* HpetTimerDxeExtra.uni */, + A58153F62538173200CF4451 /* HpetTimerDxe.inf */, + ); + path = HpetTimerDxe; + sourceTree = ""; + }; + A58153F82538173200CF4451 /* Include */ = { + isa = PBXGroup; + children = ( + A58153F92538173200CF4451 /* Library */, + A58153FB2538173200CF4451 /* Register */, + A58153FE2538173200CF4451 /* Guid */, + ); + path = Include; + sourceTree = ""; + }; + A58153F92538173200CF4451 /* Library */ = { + isa = PBXGroup; + children = ( + A58153FA2538173200CF4451 /* IoApicLib.h */, + ); + path = Library; + sourceTree = ""; + }; + A58153FB2538173200CF4451 /* Register */ = { + isa = PBXGroup; + children = ( + A58153FC2538173200CF4451 /* IoApic.h */, + A58153FD2538173200CF4451 /* Hpet.h */, + ); + path = Register; + sourceTree = ""; + }; + A58153FE2538173200CF4451 /* Guid */ = { + isa = PBXGroup; + children = ( + A58153FF2538173200CF4451 /* PcAtChipsetTokenSpace.h */, + ); + path = Guid; + sourceTree = ""; + }; + A58154002538173200CF4451 /* Bus */ = { + isa = PBXGroup; + children = ( + A58154012538173200CF4451 /* Pci */, + ); + path = Bus; + sourceTree = ""; + }; + A58154012538173200CF4451 /* Pci */ = { + isa = PBXGroup; + children = ( + A58154022538173200CF4451 /* IdeControllerDxe */, + ); + path = Pci; + sourceTree = ""; + }; + A58154022538173200CF4451 /* IdeControllerDxe */ = { + isa = PBXGroup; + children = ( + A58154032538173200CF4451 /* IdeController.c */, + A58154042538173200CF4451 /* IdeControllerExtra.uni */, + A58154052538173200CF4451 /* IdeControllerDxe.inf */, + A58154062538173200CF4451 /* ComponentName.c */, + A58154072538173200CF4451 /* IdeController.uni */, + A58154082538173200CF4451 /* IdeController.h */, + ); + path = IdeControllerDxe; + sourceTree = ""; + }; + A58154092538173200CF4451 /* Library */ = { + isa = PBXGroup; + children = ( + A581540A2538173200CF4451 /* AcpiTimerLib */, + A58154152538173200CF4451 /* BaseIoApicLib */, + A58154192538173200CF4451 /* ResetSystemLib */, + A581541D2538173200CF4451 /* SerialIoLib */, + ); + path = Library; + sourceTree = ""; + }; + A581540A2538173200CF4451 /* AcpiTimerLib */ = { + isa = PBXGroup; + children = ( + A581540B2538173200CF4451 /* DxeAcpiTimerLib.uni */, + A581540C2538173200CF4451 /* DxeAcpiTimerLib.inf */, + A581540D2538173200CF4451 /* BaseAcpiTimerLib.uni */, + A581540E2538173200CF4451 /* BaseAcpiTimerLib.inf */, + A581540F2538173200CF4451 /* BaseAcpiTimerLib.c */, + A58154102538173200CF4451 /* PeiAcpiTimerLib.inf */, + A58154112538173200CF4451 /* PeiAcpiTimerLib.uni */, + A58154122538173200CF4451 /* DxeAcpiTimerLib.c */, + A58154132538173200CF4451 /* PeiAcpiTimerLib.c */, + A58154142538173200CF4451 /* AcpiTimerLib.c */, + ); + path = AcpiTimerLib; + sourceTree = ""; + }; + A58154152538173200CF4451 /* BaseIoApicLib */ = { + isa = PBXGroup; + children = ( + A58154162538173200CF4451 /* BaseIoApicLib.uni */, + A58154172538173200CF4451 /* BaseIoApicLib.inf */, + A58154182538173200CF4451 /* IoApicLib.c */, + ); + path = BaseIoApicLib; + sourceTree = ""; + }; + A58154192538173200CF4451 /* ResetSystemLib */ = { + isa = PBXGroup; + children = ( + A581541A2538173200CF4451 /* ResetSystemLib.c */, + A581541B2538173200CF4451 /* ResetSystemLib.uni */, + A581541C2538173200CF4451 /* ResetSystemLib.inf */, + ); + path = ResetSystemLib; + sourceTree = ""; + }; + A581541D2538173200CF4451 /* SerialIoLib */ = { + isa = PBXGroup; + children = ( + A581541E2538173200CF4451 /* SerialPortLib.c */, + A581541F2538173200CF4451 /* SerialIoLib.inf */, + A58154202538173200CF4451 /* PcAtSerialPortLib.uni */, + ); + path = SerialIoLib; + sourceTree = ""; + }; + A58154212538173200CF4451 /* 8259InterruptControllerDxe */ = { + isa = PBXGroup; + children = ( + A58154222538173200CF4451 /* Legacy8259Extra.uni */, + A58154232538173200CF4451 /* 8259.c */, + A58154242538173200CF4451 /* 8259.inf */, + A58154252538173200CF4451 /* Legacy8259.uni */, + A58154262538173200CF4451 /* 8259.h */, + ); + path = 8259InterruptControllerDxe; + sourceTree = ""; + }; + A58154282538173200CF4451 /* 8254TimerDxe */ = { + isa = PBXGroup; + children = ( + A58154292538173200CF4451 /* Timer.c */, + A581542A2538173200CF4451 /* Timer.uni */, + A581542B2538173200CF4451 /* 8254Timer.inf */, + A581542C2538173200CF4451 /* Timer.h */, + A581542D2538173200CF4451 /* TimerExtra.uni */, + ); + path = 8254TimerDxe; + sourceTree = ""; + }; + A581542E2538173200CF4451 /* PcatRealTimeClockRuntimeDxe */ = { + isa = PBXGroup; + children = ( + A581542F2538173200CF4451 /* PcatRealTimeClockRuntimeDxe.inf */, + A58154302538173200CF4451 /* PcRtc.uni */, + A58154312538173200CF4451 /* PcRtc.c */, + A58154322538173200CF4451 /* PcRtcEntry.c */, + A58154332538173200CF4451 /* PcRtcExtra.uni */, + A58154342538173200CF4451 /* PcRtc.h */, + ); + path = PcatRealTimeClockRuntimeDxe; + sourceTree = ""; + }; + A58154352538173A00CF4451 /* UefiCpuPkg */ = { + isa = PBXGroup; + children = ( + A58154362538173A00CF4451 /* UefiCpuPkgExtra.uni */, + A58154372538173A00CF4451 /* UefiCpuPkg.dsc */, + A58154382538173A00CF4451 /* CpuMpPei */, + A58154412538173A00CF4451 /* CpuDxe */, + A58154532538173A00CF4451 /* PiSmmCpuDxeSmm */, + A581547B2538173B00CF4451 /* Universal */, + A58154862538173B00CF4451 /* CpuIo2Smm */, + A581548C2538173B00CF4451 /* UefiCpuPkg.uni */, + A581548D2538173B00CF4451 /* Include */, + A58154AD2538173B00CF4451 /* UefiCpuPkg.dec */, + A58154AE2538173B00CF4451 /* Library */, + A58155342538173B00CF4451 /* CpuIo2Dxe */, + A581553A2538173B00CF4451 /* CpuFeatures */, + A58155432538173B00CF4451 /* UefiCpuPkg.ci.yaml */, + A58155442538173B00CF4451 /* Application */, + A581554A2538173B00CF4451 /* PiSmmCommunication */, + A58155542538173B00CF4451 /* ResetVector */, + A581557E2538173B00CF4451 /* CpuIoPei */, + A58155842538173B00CF4451 /* SecCore */, + A581558E2538173B00CF4451 /* CpuS3DataDxe */, + ); + name = UefiCpuPkg; + path = ../../../UefiCpuPkg; + sourceTree = ""; + }; + A58154382538173A00CF4451 /* CpuMpPei */ = { + isa = PBXGroup; + children = ( + A58154392538173A00CF4451 /* CpuMpPei.inf */, + A581543A2538173A00CF4451 /* CpuMpPei.uni */, + A581543B2538173A00CF4451 /* CpuMpPeiExtra.uni */, + A581543C2538173A00CF4451 /* CpuBist.c */, + A581543D2538173A00CF4451 /* CpuMpPei.c */, + A581543E2538173A00CF4451 /* CpuMp2Pei.c */, + A581543F2538173A00CF4451 /* CpuMpPei.h */, + A58154402538173A00CF4451 /* CpuPaging.c */, + ); + path = CpuMpPei; + sourceTree = ""; + }; + A58154412538173A00CF4451 /* CpuDxe */ = { + isa = PBXGroup; + children = ( + A58154422538173A00CF4451 /* CpuMp.c */, + A58154432538173A00CF4451 /* CpuGdt.c */, + A58154442538173A00CF4451 /* CpuPageTable.h */, + A58154452538173A00CF4451 /* X64 */, + A58154482538173A00CF4451 /* CpuDxeExtra.uni */, + A58154492538173A00CF4451 /* CpuDxe.c */, + A581544A2538173A00CF4451 /* CpuGdt.h */, + A581544B2538173A00CF4451 /* Ia32 */, + A581544E2538173A00CF4451 /* CpuMp.h */, + A581544F2538173A00CF4451 /* CpuPageTable.c */, + A58154502538173A00CF4451 /* CpuDxe.uni */, + A58154512538173A00CF4451 /* CpuDxe.h */, + A58154522538173A00CF4451 /* CpuDxe.inf */, + ); + path = CpuDxe; + sourceTree = ""; + }; + A58154452538173A00CF4451 /* X64 */ = { + isa = PBXGroup; + children = ( + A58154462538173A00CF4451 /* PagingAttribute.c */, + A58154472538173A00CF4451 /* CpuAsm.nasm */, + ); + path = X64; + sourceTree = ""; + }; + A581544B2538173A00CF4451 /* Ia32 */ = { + isa = PBXGroup; + children = ( + A581544C2538173A00CF4451 /* PagingAttribute.c */, + A581544D2538173A00CF4451 /* CpuAsm.nasm */, + ); + path = Ia32; + sourceTree = ""; + }; + A58154532538173A00CF4451 /* PiSmmCpuDxeSmm */ = { + isa = PBXGroup; + children = ( + A58154542538173A00CF4451 /* CpuS3.c */, + A58154552538173A00CF4451 /* SmramSaveState.c */, + A58154562538173A00CF4451 /* PiSmmCpuDxeSmm.c */, + A58154572538173A00CF4451 /* SmmProfile.c */, + A58154582538173A00CF4451 /* X64 */, + A58154632538173A00CF4451 /* SmmProfileInternal.h */, + A58154642538173A00CF4451 /* SmmCpuMemoryManagement.c */, + A58154652538173A00CF4451 /* SmmMp.h */, + A58154662538173A00CF4451 /* CpuService.c */, + A58154672538173A00CF4451 /* MpService.c */, + A58154682538173A00CF4451 /* Ia32 */, + A58154732538173B00CF4451 /* PiSmmCpuDxeSmmExtra.uni */, + A58154742538173B00CF4451 /* SmmProfile.h */, + A58154752538173B00CF4451 /* PiSmmCpuDxeSmm.h */, + A58154762538173B00CF4451 /* PiSmmCpuDxeSmm.inf */, + A58154772538173B00CF4451 /* PiSmmCpuDxeSmm.uni */, + A58154782538173B00CF4451 /* SmmMp.c */, + A58154792538173B00CF4451 /* CpuService.h */, + A581547A2538173B00CF4451 /* SyncTimer.c */, + ); + path = PiSmmCpuDxeSmm; + sourceTree = ""; + }; + A58154582538173A00CF4451 /* X64 */ = { + isa = PBXGroup; + children = ( + A58154592538173A00CF4451 /* SmmProfileArch.h */, + A581545A2538173A00CF4451 /* PageTbl.c */, + A581545B2538173A00CF4451 /* Cet.nasm */, + A581545C2538173A00CF4451 /* Semaphore.c */, + A581545D2538173A00CF4451 /* SmmInit.nasm */, + A581545E2538173A00CF4451 /* SmmProfileArch.c */, + A581545F2538173A00CF4451 /* MpFuncs.nasm */, + A58154602538173A00CF4451 /* SmmFuncsArch.c */, + A58154612538173A00CF4451 /* SmiEntry.nasm */, + A58154622538173A00CF4451 /* SmiException.nasm */, + ); + path = X64; + sourceTree = ""; + }; + A58154682538173A00CF4451 /* Ia32 */ = { + isa = PBXGroup; + children = ( + A58154692538173A00CF4451 /* SmmProfileArch.h */, + A581546A2538173A00CF4451 /* PageTbl.c */, + A581546B2538173A00CF4451 /* Cet.nasm */, + A581546C2538173A00CF4451 /* Semaphore.c */, + A581546D2538173A00CF4451 /* SmmInit.nasm */, + A581546E2538173A00CF4451 /* SmmProfileArch.c */, + A581546F2538173A00CF4451 /* MpFuncs.nasm */, + A58154702538173A00CF4451 /* SmmFuncsArch.c */, + A58154712538173A00CF4451 /* SmiEntry.nasm */, + A58154722538173A00CF4451 /* SmiException.nasm */, + ); + path = Ia32; + sourceTree = ""; + }; + A581547B2538173B00CF4451 /* Universal */ = { + isa = PBXGroup; + children = ( + A581547C2538173B00CF4451 /* Acpi */, + ); + path = Universal; + sourceTree = ""; + }; + A581547C2538173B00CF4451 /* Acpi */ = { + isa = PBXGroup; + children = ( + A581547D2538173B00CF4451 /* S3Resume2Pei */, + ); + path = Acpi; + sourceTree = ""; + }; + A581547D2538173B00CF4451 /* S3Resume2Pei */ = { + isa = PBXGroup; + children = ( + A581547E2538173B00CF4451 /* X64 */, + A58154802538173B00CF4451 /* S3Resume2PeiExtra.uni */, + A58154812538173B00CF4451 /* Ia32 */, + A58154832538173B00CF4451 /* S3Resume2Pei.inf */, + A58154842538173B00CF4451 /* S3Resume.c */, + A58154852538173B00CF4451 /* S3Resume2Pei.uni */, + ); + path = S3Resume2Pei; + sourceTree = ""; + }; + A581547E2538173B00CF4451 /* X64 */ = { + isa = PBXGroup; + children = ( + A581547F2538173B00CF4451 /* AsmFuncs.nasm */, + ); + path = X64; + sourceTree = ""; + }; + A58154812538173B00CF4451 /* Ia32 */ = { + isa = PBXGroup; + children = ( + A58154822538173B00CF4451 /* AsmFuncs.nasm */, + ); + path = Ia32; + sourceTree = ""; + }; + A58154862538173B00CF4451 /* CpuIo2Smm */ = { + isa = PBXGroup; + children = ( + A58154872538173B00CF4451 /* CpuIo2Smm.inf */, + A58154882538173B00CF4451 /* CpuIo2SmmExtra.uni */, + A58154892538173B00CF4451 /* CpuIo2Smm.uni */, + A581548A2538173B00CF4451 /* CpuIo2Smm.c */, + A581548B2538173B00CF4451 /* CpuIo2Smm.h */, + ); + path = CpuIo2Smm; + sourceTree = ""; + }; + A581548D2538173B00CF4451 /* Include */ = { + isa = PBXGroup; + children = ( + A581548E2538173B00CF4451 /* Library */, + A58154972538173B00CF4451 /* Protocol */, + A581549A2538173B00CF4451 /* StuffRsbNasm.inc */, + A581549B2538173B00CF4451 /* Register */, + A58154A32538173B00CF4451 /* Guid */, + A58154A82538173B00CF4451 /* CpuHotPlugData.h */, + A58154A92538173B00CF4451 /* Ppi */, + A58154AC2538173B00CF4451 /* AcpiCpuData.h */, + ); + path = Include; + sourceTree = ""; + }; + A581548E2538173B00CF4451 /* Library */ = { + isa = PBXGroup; + children = ( + A581548F2538173B00CF4451 /* MtrrLib.h */, + A58154902538173B00CF4451 /* LocalApicLib.h */, + A58154912538173B00CF4451 /* SmmCpuPlatformHookLib.h */, + A58154922538173B00CF4451 /* PlatformSecLib.h */, + A58154932538173B00CF4451 /* SmmCpuFeaturesLib.h */, + A58154942538173B00CF4451 /* MpInitLib.h */, + A58154952538173B00CF4451 /* RegisterCpuFeaturesLib.h */, + A58154962538173B00CF4451 /* UefiCpuLib.h */, + ); + path = Library; + sourceTree = ""; + }; + A58154972538173B00CF4451 /* Protocol */ = { + isa = PBXGroup; + children = ( + A58154982538173B00CF4451 /* SmmCpuService.h */, + A58154992538173B00CF4451 /* SmMonitorInit.h */, + ); + path = Protocol; + sourceTree = ""; + }; + A581549B2538173B00CF4451 /* Register */ = { + isa = PBXGroup; + children = ( + A581549C2538173B00CF4451 /* Microcode.h */, + A581549D2538173B00CF4451 /* SmramSaveStateMap.h */, + A581549E2538173B00CF4451 /* Cpuid.h */, + A581549F2538173B00CF4451 /* LocalApic.h */, + A58154A02538173B00CF4451 /* StmApi.h */, + A58154A12538173B00CF4451 /* ArchitecturalMsr.h */, + A58154A22538173B00CF4451 /* Msr.h */, + ); + path = Register; + sourceTree = ""; + }; + A58154A32538173B00CF4451 /* Guid */ = { + isa = PBXGroup; + children = ( + A58154A42538173B00CF4451 /* CpuFeaturesSetDone.h */, + A58154A52538173B00CF4451 /* CpuFeaturesInitDone.h */, + A58154A62538173B00CF4451 /* MsegSmram.h */, + A58154A72538173B00CF4451 /* MicrocodePatchHob.h */, + ); + path = Guid; + sourceTree = ""; + }; + A58154A92538173B00CF4451 /* Ppi */ = { + isa = PBXGroup; + children = ( + A58154AA2538173B00CF4451 /* MpServices2.h */, + A58154AB2538173B00CF4451 /* ShadowMicrocode.h */, + ); + path = Ppi; + sourceTree = ""; + }; + A58154AE2538173B00CF4451 /* Library */ = { + isa = PBXGroup; + children = ( + A58154AF2538173B00CF4451 /* CpuExceptionHandlerLib */, + A58154CB2538173B00CF4451 /* BaseXApicLib */, + A58154CF2538173B00CF4451 /* SecPeiDxeTimerLibUefiCpu */, + A58154D32538173B00CF4451 /* MpInitLib */, + A58154E32538173B00CF4451 /* CpuTimerLib */, + A58154EE2538173B00CF4451 /* BaseUefiCpuLib */, + A58154F52538173B00CF4451 /* CpuCommonFeaturesLib */, + A58155072538173B00CF4451 /* BaseXApicX2ApicLib */, + A581550B2538173B00CF4451 /* SmmCpuFeaturesLib */, + A581551B2538173B00CF4451 /* RegisterCpuFeaturesLib */, + A58155242538173B00CF4451 /* MpInitLibUp */, + A58155282538173B00CF4451 /* SmmCpuPlatformHookLibNull */, + A581552C2538173B00CF4451 /* PlatformSecLibNull */, + A58155302538173B00CF4451 /* MtrrLib */, + ); + path = Library; + sourceTree = ""; + }; + A58154AF2538173B00CF4451 /* CpuExceptionHandlerLib */ = { + isa = PBXGroup; + children = ( + A58154B02538173B00CF4451 /* SmmCpuExceptionHandlerLib.inf */, + A58154B12538173B00CF4451 /* CpuExceptionCommon.h */, + A58154B22538173B00CF4451 /* SmmCpuExceptionHandlerLib.uni */, + A58154B32538173B00CF4451 /* PeiDxeSmmCpuException.c */, + A58154B42538173B00CF4451 /* X64 */, + A58154B92538173B00CF4451 /* SecPeiCpuExceptionHandlerLib.inf */, + A58154BA2538173B00CF4451 /* SecPeiCpuException.c */, + A58154BB2538173B00CF4451 /* SmmException.c */, + A58154BC2538173B00CF4451 /* SecPeiCpuExceptionHandlerLib.uni */, + A58154BD2538173B00CF4451 /* CpuExceptionCommon.c */, + A58154BE2538173B00CF4451 /* Ia32 */, + A58154C32538173B00CF4451 /* PeiCpuException.c */, + A58154C42538173B00CF4451 /* DxeException.c */, + A58154C52538173B00CF4451 /* Xcode5SecPeiCpuExceptionHandlerLib.uni */, + A58154C62538173B00CF4451 /* DxeCpuExceptionHandlerLib.inf */, + A58154C72538173B00CF4451 /* PeiCpuExceptionHandlerLib.uni */, + A58154C82538173B00CF4451 /* Xcode5SecPeiCpuExceptionHandlerLib.inf */, + A58154C92538173B00CF4451 /* DxeCpuExceptionHandlerLib.uni */, + A58154CA2538173B00CF4451 /* PeiCpuExceptionHandlerLib.inf */, + ); + path = CpuExceptionHandlerLib; + sourceTree = ""; + }; + A58154B42538173B00CF4451 /* X64 */ = { + isa = PBXGroup; + children = ( + A58154B52538173B00CF4451 /* ExceptionHandlerAsm.nasm */, + A58154B62538173B00CF4451 /* ArchExceptionHandler.c */, + A58154B72538173B00CF4451 /* Xcode5ExceptionHandlerAsm.nasm */, + A58154B82538173B00CF4451 /* ArchInterruptDefs.h */, + ); + path = X64; + sourceTree = ""; + }; + A58154BE2538173B00CF4451 /* Ia32 */ = { + isa = PBXGroup; + children = ( + A58154BF2538173B00CF4451 /* ExceptionHandlerAsm.nasm */, + A58154C02538173B00CF4451 /* ArchExceptionHandler.c */, + A58154C12538173B00CF4451 /* ExceptionTssEntryAsm.nasm */, + A58154C22538173B00CF4451 /* ArchInterruptDefs.h */, + ); + path = Ia32; + sourceTree = ""; + }; + A58154CB2538173B00CF4451 /* BaseXApicLib */ = { + isa = PBXGroup; + children = ( + A58154CC2538173B00CF4451 /* BaseXApicLib.c */, + A58154CD2538173B00CF4451 /* BaseXApicLib.uni */, + A58154CE2538173B00CF4451 /* BaseXApicLib.inf */, + ); + path = BaseXApicLib; + sourceTree = ""; + }; + A58154CF2538173B00CF4451 /* SecPeiDxeTimerLibUefiCpu */ = { + isa = PBXGroup; + children = ( + A58154D02538173B00CF4451 /* X86TimerLib.c */, + A58154D12538173B00CF4451 /* SecPeiDxeTimerLibUefiCpu.inf */, + A58154D22538173B00CF4451 /* SecPeiDxeTimerLibUefiCpu.uni */, + ); + path = SecPeiDxeTimerLibUefiCpu; + sourceTree = ""; + }; + A58154D32538173B00CF4451 /* MpInitLib */ = { + isa = PBXGroup; + children = ( + A58154D42538173B00CF4451 /* PeiMpInitLib.uni */, + A58154D52538173B00CF4451 /* DxeMpInitLib.uni */, + A58154D62538173B00CF4451 /* PeiMpInitLib.inf */, + A58154D72538173B00CF4451 /* MpLib.c */, + A58154D82538173B00CF4451 /* DxeMpInitLib.inf */, + A58154D92538173B00CF4451 /* X64 */, + A58154DC2538173B00CF4451 /* Microcode.c */, + A58154DD2538173B00CF4451 /* Ia32 */, + A58154E02538173B00CF4451 /* MpLib.h */, + A58154E12538173B00CF4451 /* DxeMpLib.c */, + A58154E22538173B00CF4451 /* PeiMpLib.c */, + ); + path = MpInitLib; + sourceTree = ""; + }; + A58154D92538173B00CF4451 /* X64 */ = { + isa = PBXGroup; + children = ( + A58154DA2538173B00CF4451 /* MpEqu.inc */, + A58154DB2538173B00CF4451 /* MpFuncs.nasm */, + ); + path = X64; + sourceTree = ""; + }; + A58154DD2538173B00CF4451 /* Ia32 */ = { + isa = PBXGroup; + children = ( + A58154DE2538173B00CF4451 /* MpEqu.inc */, + A58154DF2538173B00CF4451 /* MpFuncs.nasm */, + ); + path = Ia32; + sourceTree = ""; + }; + A58154E32538173B00CF4451 /* CpuTimerLib */ = { + isa = PBXGroup; + children = ( + A58154E42538173B00CF4451 /* DxeCpuTimerLib.inf */, + A58154E52538173B00CF4451 /* BaseCpuTimerLib.c */, + A58154E62538173B00CF4451 /* DxeCpuTimerLib.uni */, + A58154E72538173B00CF4451 /* BaseCpuTimerLib.uni */, + A58154E82538173B00CF4451 /* PeiCpuTimerLib.uni */, + A58154E92538173B00CF4451 /* PeiCpuTimerLib.c */, + A58154EA2538173B00CF4451 /* BaseCpuTimerLib.inf */, + A58154EB2538173B00CF4451 /* PeiCpuTimerLib.inf */, + A58154EC2538173B00CF4451 /* DxeCpuTimerLib.c */, + A58154ED2538173B00CF4451 /* CpuTimerLib.c */, + ); + path = CpuTimerLib; + sourceTree = ""; + }; + A58154EE2538173B00CF4451 /* BaseUefiCpuLib */ = { + isa = PBXGroup; + children = ( + A58154EF2538173B00CF4451 /* X64 */, + A58154F12538173B00CF4451 /* BaseUefiCpuLib.inf */, + A58154F22538173B00CF4451 /* BaseUefiCpuLib.uni */, + A58154F32538173B00CF4451 /* Ia32 */, + ); + path = BaseUefiCpuLib; + sourceTree = ""; + }; + A58154EF2538173B00CF4451 /* X64 */ = { + isa = PBXGroup; + children = ( + A58154F02538173B00CF4451 /* InitializeFpu.nasm */, + ); + path = X64; + sourceTree = ""; + }; + A58154F32538173B00CF4451 /* Ia32 */ = { + isa = PBXGroup; + children = ( + A58154F42538173B00CF4451 /* InitializeFpu.nasm */, + ); + path = Ia32; + sourceTree = ""; + }; + A58154F52538173B00CF4451 /* CpuCommonFeaturesLib */ = { + isa = PBXGroup; + children = ( + A58154F62538173B00CF4451 /* PendingBreak.c */, + A58154F72538173B00CF4451 /* ProcTrace.c */, + A58154F82538173B00CF4451 /* CpuCommonFeatures.h */, + A58154F92538173B00CF4451 /* Ppin.c */, + A58154FA2538173B00CF4451 /* Aesni.c */, + A58154FB2538173B00CF4451 /* CpuCommonFeaturesLib.c */, + A58154FC2538173B00CF4451 /* MachineCheck.c */, + A58154FD2538173B00CF4451 /* MonitorMwait.c */, + A58154FE2538173B00CF4451 /* CpuCommonFeaturesLib.inf */, + A58154FF2538173B00CF4451 /* LimitCpuIdMaxval.c */, + A58155002538173B00CF4451 /* Eist.c */, + A58155012538173B00CF4451 /* CpuCommonFeaturesLib.uni */, + A58155022538173B00CF4451 /* C1e.c */, + A58155032538173B00CF4451 /* FeatureControl.c */, + A58155042538173B00CF4451 /* X2Apic.c */, + A58155052538173B00CF4451 /* ClockModulation.c */, + A58155062538173B00CF4451 /* FastStrings.c */, + ); + path = CpuCommonFeaturesLib; + sourceTree = ""; + }; + A58155072538173B00CF4451 /* BaseXApicX2ApicLib */ = { + isa = PBXGroup; + children = ( + A58155082538173B00CF4451 /* BaseXApicX2ApicLib.uni */, + A58155092538173B00CF4451 /* BaseXApicX2ApicLib.inf */, + A581550A2538173B00CF4451 /* BaseXApicX2ApicLib.c */, + ); + path = BaseXApicX2ApicLib; + sourceTree = ""; + }; + A581550B2538173B00CF4451 /* SmmCpuFeaturesLib */ = { + isa = PBXGroup; + children = ( + A581550C2538173B00CF4451 /* SmmStm.c */, + A581550D2538173B00CF4451 /* X64 */, + A58155112538173B00CF4451 /* SmmCpuFeaturesLib.inf */, + A58155122538173B00CF4451 /* SmmCpuFeaturesLib.uni */, + A58155132538173B00CF4451 /* SmmStm.h */, + A58155142538173B00CF4451 /* Ia32 */, + A58155182538173B00CF4451 /* SmmCpuFeaturesLibNoStm.c */, + A58155192538173B00CF4451 /* SmmCpuFeaturesLibStm.inf */, + A581551A2538173B00CF4451 /* SmmCpuFeaturesLib.c */, + ); + path = SmmCpuFeaturesLib; + sourceTree = ""; + }; + A581550D2538173B00CF4451 /* X64 */ = { + isa = PBXGroup; + children = ( + A581550E2538173B00CF4451 /* SmmStmSupport.c */, + A581550F2538173B00CF4451 /* SmiEntry.nasm */, + A58155102538173B00CF4451 /* SmiException.nasm */, + ); + path = X64; + sourceTree = ""; + }; + A58155142538173B00CF4451 /* Ia32 */ = { + isa = PBXGroup; + children = ( + A58155152538173B00CF4451 /* SmmStmSupport.c */, + A58155162538173B00CF4451 /* SmiEntry.nasm */, + A58155172538173B00CF4451 /* SmiException.nasm */, + ); + path = Ia32; + sourceTree = ""; + }; + A581551B2538173B00CF4451 /* RegisterCpuFeaturesLib */ = { + isa = PBXGroup; + children = ( + A581551C2538173B00CF4451 /* RegisterCpuFeaturesLib.c */, + A581551D2538173B00CF4451 /* CpuFeaturesInitialize.c */, + A581551E2538173B00CF4451 /* RegisterCpuFeatures.h */, + A581551F2538173B00CF4451 /* RegisterCpuFeaturesLib.uni */, + A58155202538173B00CF4451 /* PeiRegisterCpuFeaturesLib.c */, + A58155212538173B00CF4451 /* PeiRegisterCpuFeaturesLib.inf */, + A58155222538173B00CF4451 /* DxeRegisterCpuFeaturesLib.c */, + A58155232538173B00CF4451 /* DxeRegisterCpuFeaturesLib.inf */, + ); + path = RegisterCpuFeaturesLib; + sourceTree = ""; + }; + A58155242538173B00CF4451 /* MpInitLibUp */ = { + isa = PBXGroup; + children = ( + A58155252538173B00CF4451 /* MpInitLibUp.c */, + A58155262538173B00CF4451 /* MpInitLibUp.inf */, + A58155272538173B00CF4451 /* MpInitLibUp.uni */, + ); + path = MpInitLibUp; + sourceTree = ""; + }; + A58155282538173B00CF4451 /* SmmCpuPlatformHookLibNull */ = { + isa = PBXGroup; + children = ( + A58155292538173B00CF4451 /* SmmCpuPlatformHookLibNull.c */, + A581552A2538173B00CF4451 /* SmmCpuPlatformHookLibNull.uni */, + A581552B2538173B00CF4451 /* SmmCpuPlatformHookLibNull.inf */, + ); + path = SmmCpuPlatformHookLibNull; + sourceTree = ""; + }; + A581552C2538173B00CF4451 /* PlatformSecLibNull */ = { + isa = PBXGroup; + children = ( + A581552D2538173B00CF4451 /* PlatformSecLibNull.c */, + A581552E2538173B00CF4451 /* PlatformSecLibNull.uni */, + A581552F2538173B00CF4451 /* PlatformSecLibNull.inf */, + ); + path = PlatformSecLibNull; + sourceTree = ""; + }; + A58155302538173B00CF4451 /* MtrrLib */ = { + isa = PBXGroup; + children = ( + A58155312538173B00CF4451 /* MtrrLib.inf */, + A58155322538173B00CF4451 /* MtrrLib.uni */, + A58155332538173B00CF4451 /* MtrrLib.c */, + ); + path = MtrrLib; + sourceTree = ""; + }; + A58155342538173B00CF4451 /* CpuIo2Dxe */ = { + isa = PBXGroup; + children = ( + A58155352538173B00CF4451 /* CpuIo2Dxe.uni */, + A58155362538173B00CF4451 /* CpuIo2DxeExtra.uni */, + A58155372538173B00CF4451 /* CpuIo2Dxe.inf */, + A58155382538173B00CF4451 /* CpuIo2Dxe.c */, + A58155392538173B00CF4451 /* CpuIo2Dxe.h */, + ); + path = CpuIo2Dxe; + sourceTree = ""; + }; + A581553A2538173B00CF4451 /* CpuFeatures */ = { + isa = PBXGroup; + children = ( + A581553B2538173B00CF4451 /* CpuFeaturesDxe.c */, + A581553C2538173B00CF4451 /* CpuFeaturesDxeExtra.uni */, + A581553D2538173B00CF4451 /* CpuFeaturesDxe.inf */, + A581553E2538173B00CF4451 /* CpuFeaturesDxe.uni */, + A581553F2538173B00CF4451 /* CpuFeaturesPei.c */, + A58155402538173B00CF4451 /* CpuFeaturesPei.inf */, + A58155412538173B00CF4451 /* CpuFeaturesPei.uni */, + A58155422538173B00CF4451 /* CpuFeaturesPeiExtra.uni */, + ); + path = CpuFeatures; + sourceTree = ""; + }; + A58155442538173B00CF4451 /* Application */ = { + isa = PBXGroup; + children = ( + A58155452538173B00CF4451 /* Cpuid */, + ); + path = Application; + sourceTree = ""; + }; + A58155452538173B00CF4451 /* Cpuid */ = { + isa = PBXGroup; + children = ( + A58155462538173B00CF4451 /* CpuidExtra.uni */, + A58155472538173B00CF4451 /* Cpuid.c */, + A58155482538173B00CF4451 /* Cpuid.inf */, + A58155492538173B00CF4451 /* Cpuid.uni */, + ); + path = Cpuid; + sourceTree = ""; + }; + A581554A2538173B00CF4451 /* PiSmmCommunication */ = { + isa = PBXGroup; + children = ( + A581554B2538173B00CF4451 /* PiSmmCommunicationPei.c */, + A581554C2538173B00CF4451 /* PiSmmCommunicationPei.uni */, + A581554D2538173B00CF4451 /* PiSmmCommunicationPei.inf */, + A581554E2538173B00CF4451 /* PiSmmCommunicationSmmExtra.uni */, + A581554F2538173B00CF4451 /* PiSmmCommunicationPeiExtra.uni */, + A58155502538173B00CF4451 /* PiSmmCommunicationSmm.c */, + A58155512538173B00CF4451 /* PiSmmCommunicationPrivate.h */, + A58155522538173B00CF4451 /* PiSmmCommunicationSmm.inf */, + A58155532538173B00CF4451 /* PiSmmCommunicationSmm.uni */, + ); + path = PiSmmCommunication; + sourceTree = ""; + }; + A58155542538173B00CF4451 /* ResetVector */ = { + isa = PBXGroup; + children = ( + A58155552538173B00CF4451 /* FixupVtf */, + A581555A2538173B00CF4451 /* Vtf0 */, + ); + path = ResetVector; + sourceTree = ""; + }; + A58155552538173B00CF4451 /* FixupVtf */ = { + isa = PBXGroup; + children = ( + A58155562538173B00CF4451 /* Vtf.nasmb */, + A58155572538173B00CF4451 /* Vtf.inf */, + A58155582538173B00CF4451 /* ResetVector.uni */, + A58155592538173B00CF4451 /* ResetVectorExtra.uni */, + ); + path = FixupVtf; + sourceTree = ""; + }; + A581555A2538173B00CF4451 /* Vtf0 */ = { + isa = PBXGroup; + children = ( + A581555B2538173B00CF4451 /* CommonMacros.inc */, + A581555C2538173B00CF4451 /* Build.py */, + A581555D2538173B00CF4451 /* Tools */, + A581555F2538173B00CF4451 /* Bin */, + A58155692538173B00CF4451 /* X64 */, + A581556B2538173B00CF4451 /* PostCodes.inc */, + A581556C2538173B00CF4451 /* Main.asm */, + A581556D2538173B00CF4451 /* SerialDebug.asm */, + A581556E2538173B00CF4451 /* Ia32 */, + A58155732538173B00CF4451 /* Port80Debug.asm */, + A58155742538173B00CF4451 /* Vtf0.nasmb */, + A58155752538173B00CF4451 /* Vtf0.inf */, + A58155762538173B00CF4451 /* ReadMe.txt */, + A58155772538173B00CF4451 /* ResetVector.uni */, + A58155782538173B00CF4451 /* Ia16 */, + A581557C2538173B00CF4451 /* DebugDisabled.asm */, + A581557D2538173B00CF4451 /* ResetVectorExtra.uni */, + ); + path = Vtf0; + sourceTree = ""; + }; + A581555D2538173B00CF4451 /* Tools */ = { + isa = PBXGroup; + children = ( + A581555E2538173B00CF4451 /* FixupForRawSection.py */, + ); + path = Tools; + sourceTree = ""; + }; + A581555F2538173B00CF4451 /* Bin */ = { + isa = PBXGroup; + children = ( + A58155602538173B00CF4451 /* ResetVector.x64.port80.raw */, + A58155612538173B00CF4451 /* ResetVector.ia32.port80.raw */, + A58155622538173B00CF4451 /* ResetVector.x64.raw */, + A58155632538173B00CF4451 /* ResetVector.ia32.serial.raw */, + A58155642538173B00CF4451 /* ResetVector.uni */, + A58155652538173B00CF4451 /* ResetVector.x64.serial.raw */, + A58155662538173B00CF4451 /* ResetVector.inf */, + A58155672538173B00CF4451 /* ResetVectorExtra.uni */, + A58155682538173B00CF4451 /* ResetVector.ia32.raw */, + ); + path = Bin; + sourceTree = ""; + }; + A58155692538173B00CF4451 /* X64 */ = { + isa = PBXGroup; + children = ( + A581556A2538173B00CF4451 /* PageTables.asm */, + ); + path = X64; + sourceTree = ""; + }; + A581556E2538173B00CF4451 /* Ia32 */ = { + isa = PBXGroup; + children = ( + A581556F2538173B00CF4451 /* SearchForSecEntry.asm */, + A58155702538173B00CF4451 /* PageTables64.asm */, + A58155712538173B00CF4451 /* SearchForBfvBase.asm */, + A58155722538173B00CF4451 /* Flat32ToFlat64.asm */, + ); + path = Ia32; + sourceTree = ""; + }; + A58155782538173B00CF4451 /* Ia16 */ = { + isa = PBXGroup; + children = ( + A58155792538173B00CF4451 /* Real16ToFlat32.asm */, + A581557A2538173B00CF4451 /* Init16.asm */, + A581557B2538173B00CF4451 /* ResetVectorVtf0.asm */, + ); + path = Ia16; + sourceTree = ""; + }; + A581557E2538173B00CF4451 /* CpuIoPei */ = { + isa = PBXGroup; + children = ( + A581557F2538173B00CF4451 /* CpuIoPei.inf */, + A58155802538173B00CF4451 /* CpuIoPei.c */, + A58155812538173B00CF4451 /* CpuIoPei.uni */, + A58155822538173B00CF4451 /* CpuIoPei.h */, + A58155832538173B00CF4451 /* CpuIoPeiExtra.uni */, + ); + path = CpuIoPei; + sourceTree = ""; + }; + A58155842538173B00CF4451 /* SecCore */ = { + isa = PBXGroup; + children = ( + A58155852538173B00CF4451 /* SecCore.inf */, + A58155862538173B00CF4451 /* SecCore.uni */, + A58155872538173B00CF4451 /* SecMain.h */, + A58155882538173B00CF4451 /* Ia32 */, + A581558A2538173B00CF4451 /* FindPeiCore.c */, + A581558B2538173B00CF4451 /* SecBist.c */, + A581558C2538173B00CF4451 /* SecCoreExtra.uni */, + A581558D2538173B00CF4451 /* SecMain.c */, + ); + path = SecCore; + sourceTree = ""; + }; + A58155882538173B00CF4451 /* Ia32 */ = { + isa = PBXGroup; + children = ( + A58155892538173B00CF4451 /* ResetVec.nasmb */, + ); + path = Ia32; + sourceTree = ""; + }; + A581558E2538173B00CF4451 /* CpuS3DataDxe */ = { + isa = PBXGroup; + children = ( + A581558F2538173B00CF4451 /* CpuS3DataDxeExtra.uni */, + A58155902538173B00CF4451 /* CpuS3DataDxe.inf */, + A58155912538173B00CF4451 /* CpuS3DataDxe.uni */, + A58155922538173B00CF4451 /* CpuS3Data.c */, + ); + path = CpuS3DataDxe; + sourceTree = ""; + }; A588BB7825265F0E0089BA4A /* OpenCorePkg */ = { isa = PBXGroup; children = ( @@ -13556,7143 +20984,6 @@ path = ApfsDriverLoader; sourceTree = ""; }; - A5AA000B237F13BE009CD413 /* X64 */ = { - isa = PBXGroup; - children = ( - A5AA000C237F13BE009CD413 /* WriteMm4.nasm */, - A5AA000D237F13BE009CD413 /* WriteDr6.nasm */, - A5AA000E237F13BE009CD413 /* Nasm.inc */, - A5AA000F237F13BE009CD413 /* WriteTr.nasm */, - A5AA0010237F13BE009CD413 /* WriteCr4.nasm */, - A5AA0011237F13BE009CD413 /* Mwait.nasm */, - A5AA0012237F13BE009CD413 /* ReadFs.nasm */, - A5AA0013237F13BE009CD413 /* ReadDs.nasm */, - A5AA0014237F13BE009CD413 /* FxRestore.nasm */, - A5AA0015237F13BE009CD413 /* ReadMm4.nasm */, - A5AA0016237F13BE009CD413 /* ReadDr6.nasm */, - A5AA0017237F13BE009CD413 /* CpuPause.nasm */, - A5AA0018237F13BE009CD413 /* ReadCr4.nasm */, - A5AA0019237F13BE009CD413 /* WriteLdtr.nasm */, - A5AA001A237F13BE009CD413 /* ReadDr7.nasm */, - A5AA001B237F13BE009CD413 /* SwitchStack.nasm */, - A5AA001C237F13BE009CD413 /* ReadMm5.nasm */, - A5AA001D237F13BE009CD413 /* WriteMsr64.nasm */, - A5AA001E237F13BE009CD413 /* ReadIdtr.nasm */, - A5AA001F237F13BE009CD413 /* WriteDr7.nasm */, - A5AA0020237F13BE009CD413 /* WriteMm5.nasm */, - A5AA0021237F13BE009CD413 /* ReadMm2.nasm */, - A5AA0022237F13BE009CD413 /* ReadDr0.nasm */, - A5AA0023237F13BE009CD413 /* ReadEs.nasm */, - A5AA0024237F13BE009CD413 /* ReadCr2.nasm */, - A5AA0025237F13BE009CD413 /* EnableCache.nasm */, - A5AA0026237F13BE009CD413 /* CpuIdEx.nasm */, - A5AA0027237F13BE009CD413 /* SetJump.nasm */, - A5AA0028237F13BE009CD413 /* WriteMm2.nasm */, - A5AA0029237F13BE009CD413 /* EnableInterrupts.nasm */, - A5AA002A237F13BE009CD413 /* RdRand.nasm */, - A5AA002B237F13BE009CD413 /* WriteDr0.nasm */, - A5AA002C237F13BE009CD413 /* DisableCache.nasm */, - A5AA002D237F13BE009CD413 /* WriteCr2.nasm */, - A5AA002E237F13BE009CD413 /* ReadGs.nasm */, - A5AA002F237F13BE009CD413 /* WriteGdtr.nasm */, - A5AA0030237F13BE009CD413 /* ReadCs.nasm */, - A5AA0031237F13BE009CD413 /* EnableDisableInterrupts.nasm */, - A5AA0032237F13BE009CD413 /* WriteCr3.nasm */, - A5AA0033237F13BE009CD413 /* WriteDr1.nasm */, - A5AA0034237F13BE009CD413 /* ReadMsr64.c */, - A5AA0035237F13BE009CD413 /* WriteMm3.nasm */, - A5AA0036237F13BE009CD413 /* Thunk16.nasm */, - A5AA0037237F13BE009CD413 /* ReadCr3.nasm */, - A5AA0038237F13BE009CD413 /* ReadDr1.nasm */, - A5AA0039237F13BE009CD413 /* ReadMm3.nasm */, - A5AA003A237F13BE009CD413 /* ReadCr0.nasm */, - A5AA003B237F13BE009CD413 /* DisableInterrupts.nasm */, - A5AA003C237F13BE009CD413 /* ReadDr2.nasm */, - A5AA003D237F13BE009CD413 /* Lfence.nasm */, - A5AA003E237F13BE009CD413 /* ReadMm0.nasm */, - A5AA003F237F13BE009CD413 /* DisablePaging64.nasm */, - A5AA0040237F13BE009CD413 /* WriteCr0.nasm */, - A5AA0041237F13BE009CD413 /* WriteDr2.nasm */, - A5AA0042237F13BE009CD413 /* WriteMm0.nasm */, - A5AA0043237F13BE009CD413 /* GccInline.c */, - A5AA0044237F13BE009CD413 /* CpuBreakpoint.c */, - A5AA0045237F13BE009CD413 /* WriteMm1.nasm */, - A5AA0046237F13BE009CD413 /* ReadTr.nasm */, - A5AA0047237F13BE009CD413 /* WriteDr3.nasm */, - A5AA0048237F13BE009CD413 /* ReadMm1.nasm */, - A5AA0049237F13BE009CD413 /* ReadDr3.nasm */, - A5AA004A237F13BE009CD413 /* CpuBreakpoint.nasm */, - A5AA004B237F13BE009CD413 /* Invd.nasm */, - A5AA004C237F13BE009CD413 /* LongJump.nasm */, - A5AA004D237F13BE009CD413 /* ReadGdtr.nasm */, - A5AA004E237F13BE009CD413 /* Wbinvd.nasm */, - A5AA004F237F13BE009CD413 /* ReadEflags.nasm */, - A5AA0050237F13BE009CD413 /* WriteMsr64.c */, - A5AA0051237F13BE009CD413 /* Non-existing.c */, - A5AA0052237F13BE009CD413 /* WriteDr4.nasm */, - A5AA0053237F13BE009CD413 /* FlushCacheLine.nasm */, - A5AA0054237F13BE009CD413 /* WriteMm6.nasm */, - A5AA0055237F13BE009CD413 /* ReadLdtr.nasm */, - A5AA0056237F13BE009CD413 /* WriteIdtr.nasm */, - A5AA0057237F13BE009CD413 /* FxSave.nasm */, - A5AA0058237F13BE009CD413 /* Monitor.nasm */, - A5AA0059237F13BE009CD413 /* ReadDr4.nasm */, - A5AA005A237F13BE009CD413 /* ReadMm6.nasm */, - A5AA005B237F13BE009CD413 /* ReadMsr64.nasm */, - A5AA005C237F13BE009CD413 /* ReadMm7.nasm */, - A5AA005D237F13BE009CD413 /* ReadDr5.nasm */, - A5AA005E237F13BE009CD413 /* ReadSs.nasm */, - A5AA005F237F13BE009CD413 /* WriteMm7.nasm */, - A5AA0060237F13BE009CD413 /* CpuId.nasm */, - A5AA0061237F13BE009CD413 /* WriteDr5.nasm */, - A5AA0062237F13BE009CD413 /* ReadPmc.nasm */, - A5AA0063237F13BE009CD413 /* ReadTsc.nasm */, - ); - path = X64; - sourceTree = ""; - }; - A5AA0078237F13BE009CD413 /* Ia32 */ = { - isa = PBXGroup; - children = ( - A5AA0079237F13BE009CD413 /* EnablePaging32.c */, - A5AA007A237F13BE009CD413 /* WriteMm4.nasm */, - A5AA007B237F13BE009CD413 /* WriteDr3.c */, - A5AA007C237F13BE009CD413 /* ReadGdtr.c */, - A5AA007D237F13BE009CD413 /* WriteDr6.nasm */, - A5AA007E237F13BE009CD413 /* WriteTr.nasm */, - A5AA007F237F13BE009CD413 /* WriteCr4.nasm */, - A5AA0080237F13BE009CD413 /* ReadDr2.c */, - A5AA0081237F13BE009CD413 /* Mwait.nasm */, - A5AA0082237F13BE009CD413 /* ReadFs.nasm */, - A5AA0083237F13BE009CD413 /* ReadDs.nasm */, - A5AA0084237F13BE009CD413 /* FxRestore.nasm */, - A5AA0085237F13BE009CD413 /* ReadSs.c */, - A5AA0086237F13BE009CD413 /* ReadMm4.nasm */, - A5AA0087237F13BE009CD413 /* DivS64x64Remainder.c */, - A5AA0088237F13BE009CD413 /* Monitor.c */, - A5AA0089237F13BE009CD413 /* ReadDr6.nasm */, - A5AA008A237F13BE009CD413 /* WriteGdtr.c */, - A5AA008B237F13BE009CD413 /* CpuPause.nasm */, - A5AA008C237F13BE009CD413 /* ReadDr6.c */, - A5AA008D237F13BE009CD413 /* ReadPmc.c */, - A5AA008E237F13BE009CD413 /* Wbinvd.c */, - A5AA008F237F13BE009CD413 /* DisablePaging32.c */, - A5AA0090237F13BE009CD413 /* RShiftU64.nasm */, - A5AA0091237F13BE009CD413 /* ReadCr4.nasm */, - A5AA0092237F13BE009CD413 /* Invd.c */, - A5AA0093237F13BE009CD413 /* WriteDr7.c */, - A5AA0094237F13BE009CD413 /* WriteMm7.c */, - A5AA0095237F13BE009CD413 /* RRotU64.c */, - A5AA0096237F13BE009CD413 /* ReadCr2.c */, - A5AA0097237F13BE009CD413 /* LShiftU64.nasm */, - A5AA0098237F13BE009CD413 /* ReadTr.c */, - A5AA0099237F13BE009CD413 /* ReadMm6.c */, - A5AA009A237F13BE009CD413 /* WriteLdtr.nasm */, - A5AA009B237F13BE009CD413 /* ReadDr7.nasm */, - A5AA009C237F13BE009CD413 /* ReadMm5.nasm */, - A5AA009D237F13BE009CD413 /* WriteCr3.c */, - A5AA009E237F13BE009CD413 /* WriteMsr64.nasm */, - A5AA009F237F13BE009CD413 /* CpuPause.c */, - A5AA00A0237F13BE009CD413 /* ReadMm2.c */, - A5AA00A1237F13BE009CD413 /* ReadIdtr.nasm */, - A5AA00A2237F13BE009CD413 /* WriteDr7.nasm */, - A5AA00A3237F13BE009CD413 /* CpuIdEx.c */, - A5AA00A4237F13BE009CD413 /* WriteMm3.c */, - A5AA00A5237F13BE009CD413 /* WriteMm5.nasm */, - A5AA00A6237F13BE009CD413 /* ReadDr1.c */, - A5AA00A7237F13BE009CD413 /* ReadMm2.nasm */, - A5AA00A8237F13BE009CD413 /* ReadDr0.nasm */, - A5AA00A9237F13BE009CD413 /* ReadEs.nasm */, - A5AA00AA237F13BE009CD413 /* ReadEs.c */, - A5AA00AB237F13BE009CD413 /* FlushCacheLine.c */, - A5AA00AC237F13BE009CD413 /* ReadCr2.nasm */, - A5AA00AD237F13BE009CD413 /* WriteDr0.c */, - A5AA00AE237F13BE009CD413 /* DisableInterrupts.c */, - A5AA00AF237F13BE009CD413 /* EnableCache.nasm */, - A5AA00B0237F13BE009CD413 /* CpuIdEx.nasm */, - A5AA00B1237F13BE009CD413 /* SetJump.nasm */, - A5AA00B2237F13BE009CD413 /* WriteMm2.nasm */, - A5AA00B3237F13BE009CD413 /* EnableInterrupts.nasm */, - A5AA00B4237F13BE009CD413 /* RdRand.nasm */, - A5AA00B5237F13BE009CD413 /* WriteDr0.nasm */, - A5AA00B6237F13BE009CD413 /* DisableCache.nasm */, - A5AA00B7237F13BE009CD413 /* LRotU64.c */, - A5AA00B8237F13BE009CD413 /* WriteDr4.c */, - A5AA00B9237F13BE009CD413 /* WriteCr2.nasm */, - A5AA00BA237F13BE009CD413 /* ReadGs.nasm */, - A5AA00BB237F13BE009CD413 /* WriteGdtr.nasm */, - A5AA00BC237F13BE009CD413 /* ReadDr5.c */, - A5AA00BD237F13BE009CD413 /* EnableCache.c */, - A5AA00BE237F13BE009CD413 /* ReadMm5.c */, - A5AA00BF237F13BE009CD413 /* ReadCs.nasm */, - A5AA00C0237F13BE009CD413 /* EnableInterrupts.c */, - A5AA00C1237F13BE009CD413 /* WriteCr0.c */, - A5AA00C2237F13BE009CD413 /* EnableDisableInterrupts.nasm */, - A5AA00C3237F13BE009CD413 /* MultU64x32.c */, - A5AA00C4237F13BE009CD413 /* WriteCr3.nasm */, - A5AA00C5237F13BE009CD413 /* DivU64x64Remainder.nasm */, - A5AA00C6237F13BE009CD413 /* WriteMm4.c */, - A5AA00C7237F13BE009CD413 /* WriteDr1.nasm */, - A5AA00C8237F13BE009CD413 /* WriteLdtr.c */, - A5AA00C9237F13BE009CD413 /* ReadMsr64.c */, - A5AA00CA237F13BE009CD413 /* WriteMm3.nasm */, - A5AA00CB237F13BE009CD413 /* Thunk16.nasm */, - A5AA00CC237F13BE009CD413 /* ReadCr3.nasm */, - A5AA00CD237F13BE009CD413 /* WriteMm0.c */, - A5AA00CE237F13BE009CD413 /* ReadDs.c */, - A5AA00CF237F13BE009CD413 /* FxSave.c */, - A5AA00D0237F13BE009CD413 /* WriteCr4.c */, - A5AA00D1237F13BE009CD413 /* ReadDr1.nasm */, - A5AA00D2237F13BE009CD413 /* ReadMm1.c */, - A5AA00D3237F13BE009CD413 /* ReadMm3.nasm */, - A5AA00D4237F13BE009CD413 /* ReadLdtr.c */, - A5AA00D5237F13BE009CD413 /* ARShiftU64.nasm */, - A5AA00D6237F13BE009CD413 /* LShiftU64.c */, - A5AA00D7237F13BE009CD413 /* ReadCr0.nasm */, - A5AA00D8237F13BE009CD413 /* ReadDr0.c */, - A5AA00D9237F13BE009CD413 /* DisableInterrupts.nasm */, - A5AA00DA237F13BE009CD413 /* SwapBytes64.nasm */, - A5AA00DB237F13BE009CD413 /* ReadCs.c */, - A5AA00DC237F13BE009CD413 /* ReadDr2.nasm */, - A5AA00DD237F13BE009CD413 /* Lfence.nasm */, - A5AA00DE237F13BE009CD413 /* ReadMm0.nasm */, - A5AA00DF237F13BE009CD413 /* WriteDr1.c */, - A5AA00E0237F13BE009CD413 /* MultU64x64.nasm */, - A5AA00E1237F13BE009CD413 /* WriteDr5.c */, - A5AA00E2237F13BE009CD413 /* LRotU64.nasm */, - A5AA00E3237F13BE009CD413 /* Mwait.c */, - A5AA00E4237F13BE009CD413 /* WriteCr0.nasm */, - A5AA00E5237F13BE009CD413 /* RRotU64.nasm */, - A5AA00E6237F13BE009CD413 /* ReadDr4.c */, - A5AA00E7237F13BE009CD413 /* ReadGs.c */, - A5AA00E8237F13BE009CD413 /* WriteDr2.nasm */, - A5AA00E9237F13BE009CD413 /* WriteMm0.nasm */, - A5AA00EA237F13BE009CD413 /* GccInline.c */, - A5AA00EB237F13BE009CD413 /* CpuBreakpoint.c */, - A5AA00EC237F13BE009CD413 /* WriteMm1.nasm */, - A5AA00ED237F13BE009CD413 /* ReadTr.nasm */, - A5AA00EE237F13BE009CD413 /* InternalSwitchStack.c */, - A5AA00EF237F13BE009CD413 /* DivU64x32.c */, - A5AA00F0237F13BE009CD413 /* ReadMm4.c */, - A5AA00F1237F13BE009CD413 /* DivU64x32Remainder.c */, - A5AA00F2237F13BE009CD413 /* WriteDr3.nasm */, - A5AA00F3237F13BE009CD413 /* ReadFs.c */, - A5AA00F4237F13BE009CD413 /* ReadCr0.c */, - A5AA00F5237F13BE009CD413 /* CpuId.c */, - A5AA00F6237F13BE009CD413 /* MultU64x32.nasm */, - A5AA00F7237F13BE009CD413 /* WriteMm5.c */, - A5AA00F8237F13BE009CD413 /* DisablePaging32.nasm */, - A5AA00F9237F13BE009CD413 /* SwapBytes64.c */, - A5AA00FA237F13BE009CD413 /* RShiftU64.c */, - A5AA00FB237F13BE009CD413 /* ReadMm1.nasm */, - A5AA00FC237F13BE009CD413 /* WriteMm1.c */, - A5AA00FD237F13BE009CD413 /* ReadDr3.nasm */, - A5AA00FE237F13BE009CD413 /* ReadCr4.c */, - A5AA00FF237F13BE009CD413 /* DivU64x32.nasm */, - A5AA0100237F13BE009CD413 /* CpuBreakpoint.nasm */, - A5AA0101237F13BE009CD413 /* Invd.nasm */, - A5AA0102237F13BE009CD413 /* ReadMm0.c */, - A5AA0103237F13BE009CD413 /* LongJump.nasm */, - A5AA0104237F13BE009CD413 /* DisableCache.c */, - A5AA0105237F13BE009CD413 /* ReadGdtr.nasm */, - A5AA0106237F13BE009CD413 /* Wbinvd.nasm */, - A5AA0107237F13BE009CD413 /* ReadEflags.nasm */, - A5AA0108237F13BE009CD413 /* FxRestore.c */, - A5AA0109237F13BE009CD413 /* WriteMsr64.c */, - A5AA010A237F13BE009CD413 /* Non-existing.c */, - A5AA010B237F13BE009CD413 /* WriteDr2.c */, - A5AA010C237F13BE009CD413 /* EnablePaging64.nasm */, - A5AA010D237F13BE009CD413 /* WriteDr4.nasm */, - A5AA010E237F13BE009CD413 /* FlushCacheLine.nasm */, - A5AA010F237F13BE009CD413 /* WriteIdtr.c */, - A5AA0110237F13BE009CD413 /* ReadDr3.c */, - A5AA0111237F13BE009CD413 /* WriteMm6.nasm */, - A5AA0112237F13BE009CD413 /* ReadLdtr.nasm */, - A5AA0113237F13BE009CD413 /* ReadDr7.c */, - A5AA0114237F13BE009CD413 /* ReadEflags.c */, - A5AA0115237F13BE009CD413 /* WriteIdtr.nasm */, - A5AA0116237F13BE009CD413 /* MultU64x64.c */, - A5AA0117237F13BE009CD413 /* DivU64x32Remainder.nasm */, - A5AA0118237F13BE009CD413 /* FxSave.nasm */, - A5AA0119237F13BE009CD413 /* Monitor.nasm */, - A5AA011A237F13BE009CD413 /* WriteDr6.c */, - A5AA011B237F13BE009CD413 /* ReadDr4.nasm */, - A5AA011C237F13BE009CD413 /* ReadMm6.nasm */, - A5AA011D237F13BE009CD413 /* ReadMsr64.nasm */, - A5AA011E237F13BE009CD413 /* ReadIdtr.c */, - A5AA011F237F13BE009CD413 /* ARShiftU64.c */, - A5AA0120237F13BE009CD413 /* ReadCr3.c */, - A5AA0121237F13BE009CD413 /* ReadMm7.nasm */, - A5AA0122237F13BE009CD413 /* ReadDr5.nasm */, - A5AA0123237F13BE009CD413 /* WriteMm6.c */, - A5AA0124237F13BE009CD413 /* ReadTsc.c */, - A5AA0125237F13BE009CD413 /* WriteCr2.c */, - A5AA0126237F13BE009CD413 /* ModU64x32.c */, - A5AA0127237F13BE009CD413 /* ReadSs.nasm */, - A5AA0128237F13BE009CD413 /* ReadMm7.c */, - A5AA0129237F13BE009CD413 /* EnableDisableInterrupts.c */, - A5AA012A237F13BE009CD413 /* WriteMm7.nasm */, - A5AA012B237F13BE009CD413 /* ReadMm3.c */, - A5AA012C237F13BE009CD413 /* CpuId.nasm */, - A5AA012D237F13BE009CD413 /* InternalSwitchStack.nasm */, - A5AA012E237F13BE009CD413 /* WriteDr5.nasm */, - A5AA012F237F13BE009CD413 /* ReadPmc.nasm */, - A5AA0130237F13BE009CD413 /* WriteMm2.c */, - A5AA0131237F13BE009CD413 /* ModU64x32.nasm */, - A5AA0132237F13BE009CD413 /* ReadTsc.nasm */, - A5AA0133237F13BE009CD413 /* EnablePaging32.nasm */, - ); - path = Ia32; - sourceTree = ""; - }; - A5AA0144237F13BF009CD413 /* Arm */ = { - isa = PBXGroup; - children = ( - A5AA0145237F13BF009CD413 /* Math64.S */, - A5AA0146237F13BF009CD413 /* CpuPause.asm */, - A5AA0147237F13BF009CD413 /* EnableInterrupts.asm */, - A5AA0148237F13BF009CD413 /* SwitchStack.S */, - A5AA0149237F13BF009CD413 /* CpuBreakpoint.S */, - A5AA014A237F13BF009CD413 /* SetJumpLongJump.asm */, - A5AA014B237F13BF009CD413 /* CpuBreakpoint.asm */, - A5AA014C237F13BF009CD413 /* GetInterruptsState.S */, - A5AA014D237F13BF009CD413 /* MemoryFence.asm */, - A5AA014E237F13BF009CD413 /* SpeculationBarrier.S */, - A5AA014F237F13BF009CD413 /* DisableInterrupts.asm */, - A5AA0150237F13BF009CD413 /* SetJumpLongJump.S */, - A5AA0151237F13BF009CD413 /* GetInterruptsState.asm */, - A5AA0152237F13BF009CD413 /* Unaligned.c */, - A5AA0153237F13BF009CD413 /* InternalSwitchStack.c */, - A5AA0154237F13BF009CD413 /* SpeculationBarrier.asm */, - A5AA0155237F13BF009CD413 /* MemoryFence.S */, - A5AA0156237F13BF009CD413 /* DisableInterrupts.S */, - A5AA0157237F13BF009CD413 /* SwitchStack.asm */, - A5AA0158237F13BF009CD413 /* EnableInterrupts.S */, - ); - path = Arm; - sourceTree = ""; - }; - A5AA015D237F13BF009CD413 /* AArch64 */ = { - isa = PBXGroup; - children = ( - A5AA015E237F13BF009CD413 /* EnableInterrupts.asm */, - A5AA015F237F13BF009CD413 /* SwitchStack.S */, - A5AA0160237F13BF009CD413 /* CpuBreakpoint.S */, - A5AA0161237F13BF009CD413 /* SetJumpLongJump.asm */, - A5AA0162237F13BF009CD413 /* CpuBreakpoint.asm */, - A5AA0163237F13BF009CD413 /* GetInterruptsState.S */, - A5AA0164237F13BF009CD413 /* MemoryFence.asm */, - A5AA0165237F13BF009CD413 /* SpeculationBarrier.S */, - A5AA0166237F13BF009CD413 /* DisableInterrupts.asm */, - A5AA0167237F13BF009CD413 /* SetJumpLongJump.S */, - A5AA0168237F13BF009CD413 /* GetInterruptsState.asm */, - A5AA0169237F13BF009CD413 /* SpeculationBarrier.asm */, - A5AA016A237F13BF009CD413 /* MemoryFence.S */, - A5AA016B237F13BF009CD413 /* DisableInterrupts.S */, - A5AA016C237F13BF009CD413 /* SwitchStack.asm */, - A5AA016D237F13BF009CD413 /* EnableInterrupts.S */, - ); - path = AArch64; - sourceTree = ""; - }; - A5AA0173237F13BF009CD413 /* BaseMemoryLibRepStr */ = { - isa = PBXGroup; - children = ( - A5AA0174237F13BF009CD413 /* SetMem64Wrapper.c */, - A5AA0175237F13BF009CD413 /* ZeroMemWrapper.c */, - A5AA0176237F13BF009CD413 /* CopyMemWrapper.c */, - A5AA0177237F13BF009CD413 /* ScanMem64Wrapper.c */, - A5AA0178237F13BF009CD413 /* X64 */, - A5AA0185237F13BF009CD413 /* ScanMem8Wrapper.c */, - A5AA0186237F13BF009CD413 /* SetMem32Wrapper.c */, - A5AA0187237F13BF009CD413 /* Ia32 */, - A5AA0194237F13BF009CD413 /* ScanMem32Wrapper.c */, - A5AA0195237F13BF009CD413 /* IsZeroBufferWrapper.c */, - A5AA0196237F13BF009CD413 /* SetMemWrapper.c */, - A5AA0197237F13BF009CD413 /* CompareMemWrapper.c */, - A5AA0198237F13BF009CD413 /* SetMem16Wrapper.c */, - A5AA0199237F13BF009CD413 /* BaseMemoryLibRepStr.uni */, - A5AA019A237F13BF009CD413 /* MemLibGuid.c */, - A5AA019B237F13BF009CD413 /* MemLibInternals.h */, - A5AA019C237F13BF009CD413 /* ScanMem16Wrapper.c */, - A5AA019D237F13BF009CD413 /* BaseMemoryLibRepStr.inf */, - ); - path = BaseMemoryLibRepStr; - sourceTree = ""; - }; - A5AA0178237F13BF009CD413 /* X64 */ = { - isa = PBXGroup; - children = ( - A5AA0179237F13BF009CD413 /* ZeroMem.nasm */, - A5AA017A237F13BF009CD413 /* CompareMem.nasm */, - A5AA017B237F13BF009CD413 /* SetMem16.nasm */, - A5AA017C237F13BF009CD413 /* ScanMem64.nasm */, - A5AA017D237F13BF009CD413 /* ScanMem32.nasm */, - A5AA017E237F13BF009CD413 /* SetMem.nasm */, - A5AA017F237F13BF009CD413 /* IsZeroBuffer.nasm */, - A5AA0180237F13BF009CD413 /* SetMem64.nasm */, - A5AA0181237F13BF009CD413 /* ScanMem8.nasm */, - A5AA0182237F13BF009CD413 /* SetMem32.nasm */, - A5AA0183237F13BF009CD413 /* ScanMem16.nasm */, - A5AA0184237F13BF009CD413 /* CopyMem.nasm */, - ); - path = X64; - sourceTree = ""; - }; - A5AA0187237F13BF009CD413 /* Ia32 */ = { - isa = PBXGroup; - children = ( - A5AA0188237F13BF009CD413 /* ZeroMem.nasm */, - A5AA0189237F13BF009CD413 /* CompareMem.nasm */, - A5AA018A237F13BF009CD413 /* SetMem16.nasm */, - A5AA018B237F13BF009CD413 /* ScanMem64.nasm */, - A5AA018C237F13BF009CD413 /* ScanMem32.nasm */, - A5AA018D237F13BF009CD413 /* SetMem.nasm */, - A5AA018E237F13BF009CD413 /* IsZeroBuffer.nasm */, - A5AA018F237F13BF009CD413 /* SetMem64.nasm */, - A5AA0190237F13BF009CD413 /* ScanMem8.nasm */, - A5AA0191237F13BF009CD413 /* SetMem32.nasm */, - A5AA0192237F13BF009CD413 /* ScanMem16.nasm */, - A5AA0193237F13BF009CD413 /* CopyMem.nasm */, - ); - path = Ia32; - sourceTree = ""; - }; - A5AA019E237F13BF009CD413 /* BaseSynchronizationLib */ = { - isa = PBXGroup; - children = ( - A5AA019F237F13BF009CD413 /* BaseSynchronizationLib.uni */, - A5AA01A0237F13BF009CD413 /* Ebc */, - A5AA01A2237F13BF009CD413 /* BaseSynchronizationLib.inf */, - A5AA01A3237F13BF009CD413 /* X64 */, - A5AA01AD237F13BF009CD413 /* InterlockedIncrementMsc.c */, - A5AA01AE237F13BF009CD413 /* Ia32 */, - A5AA01B9237F13BF009CD413 /* BaseSynchronizationLibInternals.h */, - A5AA01BA237F13BF009CD413 /* SynchronizationMsc.c */, - A5AA01BB237F13BF009CD413 /* Synchronization.c */, - A5AA01BC237F13BF009CD413 /* Arm */, - A5AA01BF237F13BF009CD413 /* AArch64 */, - A5AA01C2237F13BF009CD413 /* SynchronizationGcc.c */, - A5AA01C3237F13BF009CD413 /* InterlockedDecrementMsc.c */, - ); - path = BaseSynchronizationLib; - sourceTree = ""; - }; - A5AA01A0237F13BF009CD413 /* Ebc */ = { - isa = PBXGroup; - children = ( - A5AA01A1237F13BF009CD413 /* Synchronization.c */, - ); - path = Ebc; - sourceTree = ""; - }; - A5AA01A3237F13BF009CD413 /* X64 */ = { - isa = PBXGroup; - children = ( - A5AA01A4237F13BF009CD413 /* InterlockedCompareExchange64.c */, - A5AA01A5237F13BF009CD413 /* InterlockedIncrement.nasm */, - A5AA01A6237F13BF009CD413 /* InterlockedCompareExchange16.nasm */, - A5AA01A7237F13BF009CD413 /* InterlockedCompareExchange16.c */, - A5AA01A8237F13BF009CD413 /* GccInline.c */, - A5AA01A9237F13BF009CD413 /* InterlockedCompareExchange32.c */, - A5AA01AA237F13BF009CD413 /* InterlockedCompareExchange64.nasm */, - A5AA01AB237F13BF009CD413 /* InterlockedCompareExchange32.nasm */, - A5AA01AC237F13BF009CD413 /* InterlockedDecrement.nasm */, - ); - path = X64; - sourceTree = ""; - }; - A5AA01AE237F13BF009CD413 /* Ia32 */ = { - isa = PBXGroup; - children = ( - A5AA01AF237F13BF009CD413 /* InterlockedCompareExchange64.c */, - A5AA01B0237F13BF009CD413 /* InternalGetSpinLockProperties.c */, - A5AA01B1237F13BF009CD413 /* InterlockedIncrement.nasm */, - A5AA01B2237F13BF009CD413 /* InterlockedCompareExchange16.nasm */, - A5AA01B3237F13BF009CD413 /* InterlockedCompareExchange16.c */, - A5AA01B4237F13BF009CD413 /* GccInline.c */, - A5AA01B5237F13BF009CD413 /* InterlockedCompareExchange32.c */, - A5AA01B6237F13BF009CD413 /* InterlockedCompareExchange64.nasm */, - A5AA01B7237F13BF009CD413 /* InterlockedCompareExchange32.nasm */, - A5AA01B8237F13BF009CD413 /* InterlockedDecrement.nasm */, - ); - path = Ia32; - sourceTree = ""; - }; - A5AA01BC237F13BF009CD413 /* Arm */ = { - isa = PBXGroup; - children = ( - A5AA01BD237F13BF009CD413 /* Synchronization.S */, - A5AA01BE237F13BF009CD413 /* Synchronization.asm */, - ); - path = Arm; - sourceTree = ""; - }; - A5AA01BF237F13BF009CD413 /* AArch64 */ = { - isa = PBXGroup; - children = ( - A5AA01C0237F13BF009CD413 /* Synchronization.S */, - A5AA01C1237F13BF009CD413 /* Synchronization.asm */, - ); - path = AArch64; - sourceTree = ""; - }; - A5AA01C4237F13BF009CD413 /* UefiMemoryLib */ = { - isa = PBXGroup; - children = ( - A5AA01C5237F13BF009CD413 /* SetMem64Wrapper.c */, - A5AA01C6237F13BF009CD413 /* ZeroMemWrapper.c */, - A5AA01C7237F13BF009CD413 /* CopyMemWrapper.c */, - A5AA01C8237F13BF009CD413 /* ScanMem64Wrapper.c */, - A5AA01C9237F13BF009CD413 /* MemLibGeneric.c */, - A5AA01CA237F13BF009CD413 /* ScanMem8Wrapper.c */, - A5AA01CB237F13BF009CD413 /* SetMem32Wrapper.c */, - A5AA01CC237F13BF009CD413 /* ScanMem32Wrapper.c */, - A5AA01CD237F13BF009CD413 /* IsZeroBufferWrapper.c */, - A5AA01CE237F13BF009CD413 /* SetMemWrapper.c */, - A5AA01CF237F13BF009CD413 /* MemLib.c */, - A5AA01D0237F13BF009CD413 /* CompareMemWrapper.c */, - A5AA01D1237F13BF009CD413 /* UefiMemoryLib.inf */, - A5AA01D2237F13BF009CD413 /* SetMem16Wrapper.c */, - A5AA01D3237F13BF009CD413 /* MemLibGuid.c */, - A5AA01D4237F13BF009CD413 /* UefiMemoryLib.uni */, - A5AA01D5237F13BF009CD413 /* MemLibInternals.h */, - A5AA01D6237F13BF009CD413 /* ScanMem16Wrapper.c */, - ); - path = UefiMemoryLib; - sourceTree = ""; - }; - A5AA01D7237F13BF009CD413 /* PciSegmentLibSegmentInfo */ = { - isa = PBXGroup; - children = ( - A5AA01D8237F13BF009CD413 /* PciSegmentLibCommon.h */, - A5AA01D9237F13BF009CD413 /* DxeRuntimePciSegmentLibSegmentInfo.inf */, - A5AA01DA237F13BF009CD413 /* BasePciSegmentLibSegmentInfo.inf */, - A5AA01DB237F13BF009CD413 /* DxeRuntimePciSegmentLibSegmentInfo.uni */, - A5AA01DC237F13BF009CD413 /* BasePciSegmentLibSegmentInfo.uni */, - A5AA01DD237F13BF009CD413 /* BasePciSegmentLib.c */, - A5AA01DE237F13BF009CD413 /* PciSegmentLibCommon.c */, - A5AA01DF237F13BF009CD413 /* DxeRuntimePciSegmentLib.c */, - ); - path = PciSegmentLibSegmentInfo; - sourceTree = ""; - }; - A5AA01E0237F13BF009CD413 /* BaseCpuLib */ = { - isa = PBXGroup; - children = ( - A5AA01E1237F13BF009CD413 /* Ebc */, - A5AA01E3237F13BF009CD413 /* X64 */, - A5AA01E6237F13BF009CD413 /* BaseCpuLib.uni */, - A5AA01E7237F13BF009CD413 /* BaseCpuLib.inf */, - A5AA01E8237F13BF009CD413 /* Ia32 */, - A5AA01EF237F13BF009CD413 /* Arm */, - A5AA01F4237F13BF009CD413 /* AArch64 */, - ); - path = BaseCpuLib; - sourceTree = ""; - }; - A5AA01E1237F13BF009CD413 /* Ebc */ = { - isa = PBXGroup; - children = ( - A5AA01E2237F13BF009CD413 /* CpuSleepFlushTlb.c */, - ); - path = Ebc; - sourceTree = ""; - }; - A5AA01E3237F13BF009CD413 /* X64 */ = { - isa = PBXGroup; - children = ( - A5AA01E4237F13BF009CD413 /* CpuSleep.nasm */, - A5AA01E5237F13BF009CD413 /* CpuFlushTlb.nasm */, - ); - path = X64; - sourceTree = ""; - }; - A5AA01E8237F13BF009CD413 /* Ia32 */ = { - isa = PBXGroup; - children = ( - A5AA01E9237F13BF009CD413 /* CpuSleep.c */, - A5AA01EA237F13BF009CD413 /* CpuFlushTlbGcc.c */, - A5AA01EB237F13BF009CD413 /* CpuFlushTlb.c */, - A5AA01EC237F13BF009CD413 /* CpuSleep.nasm */, - A5AA01ED237F13BF009CD413 /* CpuFlushTlb.nasm */, - A5AA01EE237F13BF009CD413 /* CpuSleepGcc.c */, - ); - path = Ia32; - sourceTree = ""; - }; - A5AA01EF237F13BF009CD413 /* Arm */ = { - isa = PBXGroup; - children = ( - A5AA01F0237F13BF009CD413 /* CpuFlushTlb.S */, - A5AA01F1237F13BF009CD413 /* CpuFlushTlb.asm */, - A5AA01F2237F13BF009CD413 /* CpuSleep.asm */, - A5AA01F3237F13BF009CD413 /* CpuSleep.S */, - ); - path = Arm; - sourceTree = ""; - }; - A5AA01F4237F13BF009CD413 /* AArch64 */ = { - isa = PBXGroup; - children = ( - A5AA01F5237F13BF009CD413 /* CpuFlushTlb.S */, - A5AA01F6237F13BF009CD413 /* CpuFlushTlb.asm */, - A5AA01F7237F13BF009CD413 /* CpuSleep.asm */, - A5AA01F8237F13BF009CD413 /* CpuSleep.S */, - ); - path = AArch64; - sourceTree = ""; - }; - A5AA01F9237F13BF009CD413 /* PeiExtractGuidedSectionLib */ = { - isa = PBXGroup; - children = ( - A5AA01FA237F13BF009CD413 /* PeiExtractGuidedSectionLib.c */, - A5AA01FB237F13BF009CD413 /* PeiExtractGuidedSectionLib.uni */, - A5AA01FC237F13BF009CD413 /* PeiExtractGuidedSectionLib.inf */, - ); - path = PeiExtractGuidedSectionLib; - sourceTree = ""; - }; - A5AA01FD237F13BF009CD413 /* UefiDriverEntryPoint */ = { - isa = PBXGroup; - children = ( - A5AA01FE237F13BF009CD413 /* DriverEntryPoint.c */, - A5AA01FF237F13BF009CD413 /* UefiDriverEntryPoint.inf */, - A5AA0200237F13BF009CD413 /* UefiDriverEntryPoint.uni */, - ); - path = UefiDriverEntryPoint; - sourceTree = ""; - }; - A5AA0201237F13BF009CD413 /* UefiDebugLibDebugPortProtocol */ = { - isa = PBXGroup; - children = ( - A5AA0202237F13BF009CD413 /* DebugLibConstructor.c */, - A5AA0203237F13BF009CD413 /* DebugLib.c */, - A5AA0204237F13BF009CD413 /* UefiDebugLibDebugPortProtocol.uni */, - A5AA0205237F13BF009CD413 /* UefiDebugLibDebugPortProtocol.inf */, - ); - path = UefiDebugLibDebugPortProtocol; - sourceTree = ""; - }; - A5AA0206237F13BF009CD413 /* SmmPciExpressLib */ = { - isa = PBXGroup; - children = ( - A5AA0207237F13BF009CD413 /* SmmPciExpressLib.inf */, - A5AA0208237F13BF009CD413 /* PciExpressLib.c */, - ); - path = SmmPciExpressLib; - sourceTree = ""; - }; - A5AA0209237F13BF009CD413 /* DxeRuntimePciExpressLib */ = { - isa = PBXGroup; - children = ( - A5AA020A237F13BF009CD413 /* DxeRuntimePciExpressLib.uni */, - A5AA020B237F13BF009CD413 /* DxeRuntimePciExpressLib.inf */, - A5AA020C237F13BF009CD413 /* PciExpressLib.c */, - ); - path = DxeRuntimePciExpressLib; - sourceTree = ""; - }; - A5AA020D237F13BF009CD413 /* BaseMemoryLibOptDxe */ = { - isa = PBXGroup; - children = ( - A5AA020E237F13BF009CD413 /* SetMem64Wrapper.c */, - A5AA020F237F13BF009CD413 /* ZeroMemWrapper.c */, - A5AA0210237F13BF009CD413 /* CopyMemWrapper.c */, - A5AA0211237F13BF009CD413 /* ScanMem64Wrapper.c */, - A5AA0212237F13BF009CD413 /* X64 */, - A5AA021F237F13BF009CD413 /* ScanMem8Wrapper.c */, - A5AA0220237F13BF009CD413 /* SetMem32Wrapper.c */, - A5AA0221237F13BF009CD413 /* Ia32 */, - A5AA022E237F13BF009CD413 /* ScanMem32Wrapper.c */, - A5AA022F237F13BF009CD413 /* IsZeroBufferWrapper.c */, - A5AA0230237F13BF009CD413 /* SetMemWrapper.c */, - A5AA0231237F13BF009CD413 /* CompareMemWrapper.c */, - A5AA0232237F13BF009CD413 /* Arm */, - A5AA023F237F13BF009CD413 /* BaseMemoryLibOptDxe.uni */, - A5AA0240237F13BF009CD413 /* SetMem16Wrapper.c */, - A5AA0241237F13BF009CD413 /* MemLibGuid.c */, - A5AA0242237F13BF009CD413 /* AArch64 */, - A5AA0248237F13BF009CD413 /* MemLibInternals.h */, - A5AA0249237F13BF009CD413 /* BaseMemoryLibOptDxe.inf */, - A5AA024A237F13BF009CD413 /* ScanMem16Wrapper.c */, - ); - path = BaseMemoryLibOptDxe; - sourceTree = ""; - }; - A5AA0212237F13BF009CD413 /* X64 */ = { - isa = PBXGroup; - children = ( - A5AA0213237F13BF009CD413 /* ZeroMem.nasm */, - A5AA0214237F13BF009CD413 /* CompareMem.nasm */, - A5AA0215237F13BF009CD413 /* SetMem16.nasm */, - A5AA0216237F13BF009CD413 /* ScanMem64.nasm */, - A5AA0217237F13BF009CD413 /* ScanMem32.nasm */, - A5AA0218237F13BF009CD413 /* SetMem.nasm */, - A5AA0219237F13BF009CD413 /* IsZeroBuffer.nasm */, - A5AA021A237F13BF009CD413 /* SetMem64.nasm */, - A5AA021B237F13BF009CD413 /* ScanMem8.nasm */, - A5AA021C237F13BF009CD413 /* SetMem32.nasm */, - A5AA021D237F13BF009CD413 /* ScanMem16.nasm */, - A5AA021E237F13BF009CD413 /* CopyMem.nasm */, - ); - path = X64; - sourceTree = ""; - }; - A5AA0221237F13BF009CD413 /* Ia32 */ = { - isa = PBXGroup; - children = ( - A5AA0222237F13BF009CD413 /* ZeroMem.nasm */, - A5AA0223237F13BF009CD413 /* CompareMem.nasm */, - A5AA0224237F13BF009CD413 /* SetMem16.nasm */, - A5AA0225237F13BF009CD413 /* ScanMem64.nasm */, - A5AA0226237F13BF009CD413 /* ScanMem32.nasm */, - A5AA0227237F13BF009CD413 /* SetMem.nasm */, - A5AA0228237F13BF009CD413 /* IsZeroBuffer.nasm */, - A5AA0229237F13BF009CD413 /* SetMem64.nasm */, - A5AA022A237F13BF009CD413 /* ScanMem8.nasm */, - A5AA022B237F13BF009CD413 /* SetMem32.nasm */, - A5AA022C237F13BF009CD413 /* ScanMem16.nasm */, - A5AA022D237F13BF009CD413 /* CopyMem.nasm */, - ); - path = Ia32; - sourceTree = ""; - }; - A5AA0232237F13BF009CD413 /* Arm */ = { - isa = PBXGroup; - children = ( - A5AA0233237F13BF009CD413 /* ScanMemGeneric.c */, - A5AA0234237F13BF009CD413 /* CompareMem.asm */, - A5AA0235237F13BF009CD413 /* CopyMem.S */, - A5AA0236237F13BF009CD413 /* SetMem.S */, - A5AA0237237F13BF009CD413 /* ScanMem.asm */, - A5AA0238237F13BF009CD413 /* CopyMem.asm */, - A5AA0239237F13BF009CD413 /* CompareMem.S */, - A5AA023A237F13BF009CD413 /* MemLibGuid.c */, - A5AA023B237F13BF009CD413 /* SetMem.asm */, - A5AA023C237F13BF009CD413 /* CompareGuid.asm */, - A5AA023D237F13BF009CD413 /* CompareGuid.S */, - A5AA023E237F13BF009CD413 /* ScanMem.S */, - ); - path = Arm; - sourceTree = ""; - }; - A5AA0242237F13BF009CD413 /* AArch64 */ = { - isa = PBXGroup; - children = ( - A5AA0243237F13BF009CD413 /* CopyMem.S */, - A5AA0244237F13BF009CD413 /* SetMem.S */, - A5AA0245237F13BF009CD413 /* CompareMem.S */, - A5AA0246237F13BF009CD413 /* CompareGuid.S */, - A5AA0247237F13BF009CD413 /* ScanMem.S */, - ); - path = AArch64; - sourceTree = ""; - }; - A5AA024B237F13BF009CD413 /* BasePerformanceLibNull */ = { - isa = PBXGroup; - children = ( - A5AA024C237F13BF009CD413 /* PerformanceLib.c */, - A5AA024D237F13BF009CD413 /* BasePerformanceLibNull.inf */, - A5AA024E237F13BF009CD413 /* BasePerformanceLibNull.uni */, - ); - path = BasePerformanceLibNull; - sourceTree = ""; - }; - A5AA024F237F13BF009CD413 /* BasePciSegmentLibPci */ = { - isa = PBXGroup; - children = ( - A5AA0250237F13BF009CD413 /* BasePciSegmentLibPci.inf */, - A5AA0251237F13BF009CD413 /* BasePciSegmentLibPci.uni */, - A5AA0252237F13BF009CD413 /* PciSegmentLib.c */, - ); - path = BasePciSegmentLibPci; - sourceTree = ""; - }; - A5AA0253237F13BF009CD413 /* PeiDxePostCodeLibReportStatusCode */ = { - isa = PBXGroup; - children = ( - A5AA0254237F13BF009CD413 /* PostCode.c */, - A5AA0255237F13BF009CD413 /* PeiDxePostCodeLibReportStatusCode.inf */, - A5AA0256237F13BF009CD413 /* PeiDxePostCodeLibReportStatusCode.uni */, - ); - path = PeiDxePostCodeLibReportStatusCode; - sourceTree = ""; - }; - A5AA0257237F13BF009CD413 /* BasePcdLibNull */ = { - isa = PBXGroup; - children = ( - A5AA0258237F13BF009CD413 /* BasePcdLibNull.uni */, - A5AA0259237F13BF009CD413 /* BasePcdLibNull.inf */, - A5AA025A237F13BF009CD413 /* PcdLib.c */, - ); - path = BasePcdLibNull; - sourceTree = ""; - }; - A5AA025B237F13BF009CD413 /* BaseStackCheckLib */ = { - isa = PBXGroup; - children = ( - A5AA025C237F13BF009CD413 /* BaseStackCheckGcc.c */, - A5AA025D237F13BF009CD413 /* BaseStackCheckLib.uni */, - A5AA025E237F13BF009CD413 /* BaseStackCheckNull.c */, - A5AA025F237F13BF009CD413 /* BaseStackCheckLib.inf */, - ); - path = BaseStackCheckLib; - sourceTree = ""; - }; - A5AA0260237F13BF009CD413 /* BaseRngLib */ = { - isa = PBXGroup; - children = ( - A5AA0261237F13BF009CD413 /* BaseRngLib.uni */, - A5AA0262237F13BF009CD413 /* BaseRngLib.inf */, - A5AA0263237F13BF009CD413 /* BaseRng.c */, - ); - path = BaseRngLib; - sourceTree = ""; - }; - A5AA0264237F13BF009CD413 /* DxeCoreEntryPoint */ = { - isa = PBXGroup; - children = ( - A5AA0265237F13BF009CD413 /* DxeCoreEntryPoint.c */, - A5AA0266237F13BF009CD413 /* DxeCoreEntryPoint.uni */, - A5AA0267237F13BF009CD413 /* DxeCoreEntryPoint.inf */, - ); - path = DxeCoreEntryPoint; - sourceTree = ""; - }; - A5AA0268237F13BF009CD413 /* BasePostCodeLibPort80 */ = { - isa = PBXGroup; - children = ( - A5AA0269237F13BF009CD413 /* PostCode.c */, - A5AA026A237F13BF009CD413 /* BasePostCodeLibPort80.inf */, - A5AA026B237F13BF009CD413 /* BasePostCodeLibPort80.uni */, - ); - path = BasePostCodeLibPort80; - sourceTree = ""; - }; - A5AA026C237F13BF009CD413 /* PeiCoreEntryPoint */ = { - isa = PBXGroup; - children = ( - A5AA026D237F13BF009CD413 /* PeiCoreEntryPoint.uni */, - A5AA026E237F13BF009CD413 /* PeiCoreEntryPoint.inf */, - A5AA026F237F13BF009CD413 /* PeiCoreEntryPoint.c */, - ); - path = PeiCoreEntryPoint; - sourceTree = ""; - }; - A5AA0270237F13BF009CD413 /* BasePeCoffLib */ = { - isa = PBXGroup; - children = ( - A5AA0271237F13BF009CD413 /* BasePeCoffLibInternals.h */, - A5AA0272237F13BF009CD413 /* BasePeCoff.c */, - A5AA0273237F13BF009CD413 /* PeCoffLoaderEx.c */, - A5AA0274237F13BF009CD413 /* Arm */, - A5AA0276237F13BF009CD413 /* BasePeCoffLib.uni */, - A5AA0277237F13BF009CD413 /* BasePeCoffLib.inf */, - ); - path = BasePeCoffLib; - sourceTree = ""; - }; - A5AA0274237F13BF009CD413 /* Arm */ = { - isa = PBXGroup; - children = ( - A5AA0275237F13BF009CD413 /* PeCoffLoaderEx.c */, - ); - path = Arm; - sourceTree = ""; - }; - A5AA0278237F13BF009CD413 /* SmmLibNull */ = { - isa = PBXGroup; - children = ( - A5AA0279237F13BF009CD413 /* SmmLibNull.uni */, - A5AA027A237F13BF009CD413 /* SmmLibNull.inf */, - A5AA027B237F13BF009CD413 /* SmmLibNull.c */, - ); - path = SmmLibNull; - sourceTree = ""; - }; - A5AA027C237F13BF009CD413 /* BasePciCf8Lib */ = { - isa = PBXGroup; - children = ( - A5AA027D237F13BF009CD413 /* BasePciCf8Lib.uni */, - A5AA027E237F13BF009CD413 /* BasePciCf8Lib.inf */, - A5AA027F237F13BF009CD413 /* PciCf8Lib.c */, - ); - path = BasePciCf8Lib; - sourceTree = ""; - }; - A5AA0280237F13BF009CD413 /* MmServicesTableLib */ = { - isa = PBXGroup; - children = ( - A5AA0281237F13BF009CD413 /* MmServicesTableLib.uni */, - A5AA0282237F13BF009CD413 /* MmServicesTableLib.inf */, - A5AA0283237F13BF009CD413 /* MmServicesTableLib.c */, - ); - path = MmServicesTableLib; - sourceTree = ""; - }; - A5AA0284237F13BF009CD413 /* BaseSafeIntLib */ = { - isa = PBXGroup; - children = ( - A5AA0285237F13BF009CD413 /* SafeIntLib64.c */, - A5AA0286237F13BF009CD413 /* SafeIntLibEbc.c */, - A5AA0287237F13BF009CD413 /* BaseSafeIntLib.inf */, - A5AA0288237F13BF009CD413 /* SafeIntLib32.c */, - A5AA0289237F13BF009CD413 /* SafeIntLib.c */, - ); - path = BaseSafeIntLib; - sourceTree = ""; - }; - A5AA028A237F13BF009CD413 /* SmmServicesTableLib */ = { - isa = PBXGroup; - children = ( - A5AA028B237F13BF009CD413 /* SmmServicesTableLib.c */, - A5AA028C237F13BF009CD413 /* SmmServicesTableLib.inf */, - A5AA028D237F13BF009CD413 /* SmmServicesTableLib.uni */, - ); - path = SmmServicesTableLib; - sourceTree = ""; - }; - A5AA028E237F13BF009CD413 /* DxeExtractGuidedSectionLib */ = { - isa = PBXGroup; - children = ( - A5AA028F237F13BF009CD413 /* DxeExtractGuidedSectionLib.uni */, - A5AA0290237F13BF009CD413 /* DxeExtractGuidedSectionLib.inf */, - A5AA0291237F13BF009CD413 /* DxeExtractGuidedSectionLib.c */, - ); - path = DxeExtractGuidedSectionLib; - sourceTree = ""; - }; - A5AA0292237F13BF009CD413 /* UefiApplicationEntryPoint */ = { - isa = PBXGroup; - children = ( - A5AA0293237F13BF009CD413 /* UefiApplicationEntryPoint.uni */, - A5AA0294237F13BF009CD413 /* UefiApplicationEntryPoint.inf */, - A5AA0295237F13BF009CD413 /* ApplicationEntryPoint.c */, - ); - path = UefiApplicationEntryPoint; - sourceTree = ""; - }; - A5AA0296237F13BF009CD413 /* BaseMemoryLib */ = { - isa = PBXGroup; - children = ( - A5AA0297237F13BF009CD413 /* SetMem64Wrapper.c */, - A5AA0298237F13BF009CD413 /* ZeroMemWrapper.c */, - A5AA0299237F13BF009CD413 /* BaseMemoryLib.inf */, - A5AA029A237F13BF009CD413 /* CopyMemWrapper.c */, - A5AA029B237F13BF009CD413 /* ScanMem64Wrapper.c */, - A5AA029C237F13BF009CD413 /* BaseMemoryLib.uni */, - A5AA029D237F13BF009CD413 /* MemLibGeneric.c */, - A5AA029E237F13BF009CD413 /* ScanMem8Wrapper.c */, - A5AA029F237F13BF009CD413 /* SetMem32Wrapper.c */, - A5AA02A0237F13BF009CD413 /* CopyMem.c */, - A5AA02A1237F13BF009CD413 /* SetMem.c */, - A5AA02A2237F13BF009CD413 /* ScanMem32Wrapper.c */, - A5AA02A3237F13BF009CD413 /* IsZeroBufferWrapper.c */, - A5AA02A4237F13BF009CD413 /* SetMemWrapper.c */, - A5AA02A5237F13BF009CD413 /* CompareMemWrapper.c */, - A5AA02A6237F13BF009CD413 /* SetMem16Wrapper.c */, - A5AA02A7237F13BF009CD413 /* MemLibGuid.c */, - A5AA02A8237F13BF009CD413 /* MemLibInternals.h */, - A5AA02A9237F13BF009CD413 /* ScanMem16Wrapper.c */, - ); - path = BaseMemoryLib; - sourceTree = ""; - }; - A5AA02AA237F13BF009CD413 /* SmmIoLibSmmCpuIo2 */ = { - isa = PBXGroup; - children = ( - A5AA02AB237F13BF009CD413 /* IoLibMmioBuffer.c */, - A5AA02AC237F13BF009CD413 /* IoLib.c */, - A5AA02AD237F13BF009CD413 /* IoHighLevel.c */, - A5AA02AE237F13BF009CD413 /* SmmCpuIoLibInternal.h */, - A5AA02AF237F13BF009CD413 /* SmmIoLibSmmCpuIo2.uni */, - A5AA02B0237F13BF009CD413 /* SmmIoLibSmmCpuIo2.inf */, - ); - path = SmmIoLibSmmCpuIo2; - sourceTree = ""; - }; - A5AA02B1237F13BF009CD413 /* DxeSmbusLib */ = { - isa = PBXGroup; - children = ( - A5AA02B2237F13BF009CD413 /* DxeSmbusLib.c */, - A5AA02B3237F13BF009CD413 /* SmbusLib.c */, - A5AA02B4237F13BF009CD413 /* InternalSmbusLib.h */, - A5AA02B5237F13BF009CD413 /* DxeSmbusLib.inf */, - A5AA02B6237F13BF009CD413 /* DxeSmbusLib.uni */, - ); - path = DxeSmbusLib; - sourceTree = ""; - }; - A5AA02B7237F13BF009CD413 /* BaseSmbusLibNull */ = { - isa = PBXGroup; - children = ( - A5AA02B8237F13BF009CD413 /* BaseSmbusLibNull.c */, - A5AA02B9237F13BF009CD413 /* BaseSmbusLibNull.uni */, - A5AA02BA237F13BF009CD413 /* BaseSmbusLibNull.inf */, - ); - path = BaseSmbusLibNull; - sourceTree = ""; - }; - A5AA02BB237F13BF009CD413 /* BaseTimerLibNullTemplate */ = { - isa = PBXGroup; - children = ( - A5AA02BC237F13BF009CD413 /* BaseTimerLibNullTemplate.uni */, - A5AA02BD237F13BF009CD413 /* BaseTimerLibNullTemplate.inf */, - A5AA02BE237F13BF009CD413 /* TimerLibNull.c */, - ); - path = BaseTimerLibNullTemplate; - sourceTree = ""; - }; - A5AA02BF237F13BF009CD413 /* BaseS3IoLib */ = { - isa = PBXGroup; - children = ( - A5AA02C0237F13BF009CD413 /* BaseS3IoLib.inf */, - A5AA02C1237F13BF009CD413 /* BaseS3IoLib.uni */, - A5AA02C2237F13BF009CD413 /* S3IoLib.c */, - ); - path = BaseS3IoLib; - sourceTree = ""; - }; - A5AA02C3237F13BF009CD413 /* BaseDebugLibSerialPort */ = { - isa = PBXGroup; - children = ( - A5AA02C4237F13BF009CD413 /* BaseDebugLibSerialPort.uni */, - A5AA02C5237F13BF009CD413 /* BaseDebugLibSerialPort.inf */, - A5AA02C6237F13BF009CD413 /* DebugLib.c */, - ); - path = BaseDebugLibSerialPort; - sourceTree = ""; - }; - A5AA02C7237F13BF009CD413 /* BaseMemoryLibSse2 */ = { - isa = PBXGroup; - children = ( - A5AA02C8237F13BF009CD413 /* SetMem64Wrapper.c */, - A5AA02C9237F13BF009CD413 /* ZeroMemWrapper.c */, - A5AA02CA237F13BF009CD413 /* CopyMemWrapper.c */, - A5AA02CB237F13BF009CD413 /* ScanMem64Wrapper.c */, - A5AA02CC237F13BF009CD413 /* X64 */, - A5AA02D9237F13BF009CD413 /* BaseMemoryLibSse2.uni */, - A5AA02DA237F13BF009CD413 /* ScanMem8Wrapper.c */, - A5AA02DB237F13BF009CD413 /* BaseMemoryLibSse2.inf */, - A5AA02DC237F13BF009CD413 /* SetMem32Wrapper.c */, - A5AA02DD237F13BF009CD413 /* Ia32 */, - A5AA02EA237F13BF009CD413 /* ScanMem32Wrapper.c */, - A5AA02EB237F13BF009CD413 /* IsZeroBufferWrapper.c */, - A5AA02EC237F13BF009CD413 /* SetMemWrapper.c */, - A5AA02ED237F13BF009CD413 /* CompareMemWrapper.c */, - A5AA02EE237F13BF009CD413 /* SetMem16Wrapper.c */, - A5AA02EF237F13BF009CD413 /* MemLibGuid.c */, - A5AA02F0237F13BF009CD413 /* MemLibInternals.h */, - A5AA02F1237F13BF009CD413 /* ScanMem16Wrapper.c */, - ); - path = BaseMemoryLibSse2; - sourceTree = ""; - }; - A5AA02CC237F13BF009CD413 /* X64 */ = { - isa = PBXGroup; - children = ( - A5AA02CD237F13BF009CD413 /* ZeroMem.nasm */, - A5AA02CE237F13BF009CD413 /* CompareMem.nasm */, - A5AA02CF237F13BF009CD413 /* SetMem16.nasm */, - A5AA02D0237F13BF009CD413 /* ScanMem64.nasm */, - A5AA02D1237F13BF009CD413 /* ScanMem32.nasm */, - A5AA02D2237F13BF009CD413 /* SetMem.nasm */, - A5AA02D3237F13BF009CD413 /* IsZeroBuffer.nasm */, - A5AA02D4237F13BF009CD413 /* SetMem64.nasm */, - A5AA02D5237F13BF009CD413 /* ScanMem8.nasm */, - A5AA02D6237F13BF009CD413 /* SetMem32.nasm */, - A5AA02D7237F13BF009CD413 /* ScanMem16.nasm */, - A5AA02D8237F13BF009CD413 /* CopyMem.nasm */, - ); - path = X64; - sourceTree = ""; - }; - A5AA02DD237F13BF009CD413 /* Ia32 */ = { - isa = PBXGroup; - children = ( - A5AA02DE237F13BF009CD413 /* ZeroMem.nasm */, - A5AA02DF237F13BF009CD413 /* CompareMem.nasm */, - A5AA02E0237F13BF009CD413 /* SetMem16.nasm */, - A5AA02E1237F13BF009CD413 /* ScanMem64.nasm */, - A5AA02E2237F13BF009CD413 /* ScanMem32.nasm */, - A5AA02E3237F13BF009CD413 /* SetMem.nasm */, - A5AA02E4237F13BF009CD413 /* IsZeroBuffer.nasm */, - A5AA02E5237F13BF009CD413 /* SetMem64.nasm */, - A5AA02E6237F13BF009CD413 /* ScanMem8.nasm */, - A5AA02E7237F13BF009CD413 /* SetMem32.nasm */, - A5AA02E8237F13BF009CD413 /* ScanMem16.nasm */, - A5AA02E9237F13BF009CD413 /* CopyMem.nasm */, - ); - path = Ia32; - sourceTree = ""; - }; - A5AA02F2237F13BF009CD413 /* BaseUefiDecompressLib */ = { - isa = PBXGroup; - children = ( - A5AA02F3237F13BF009CD413 /* BaseUefiDecompressLib.uni */, - A5AA02F4237F13BF009CD413 /* BaseUefiDecompressLib.inf */, - A5AA02F5237F13BF009CD413 /* BaseUefiDecompressLibInternals.h */, - A5AA02F6237F13BF009CD413 /* BaseUefiTianoCustomDecompressLib.inf */, - A5AA02F7237F13BF009CD413 /* BaseUefiDecompressLib.c */, - A5AA02F8237F13BF009CD413 /* BaseUefiTianoCustomDecompressLib.c */, - ); - path = BaseUefiDecompressLib; - sourceTree = ""; - }; - A5AA02F9237F13BF009CD413 /* BaseSerialPortLibNull */ = { - isa = PBXGroup; - children = ( - A5AA02FA237F13BF009CD413 /* BaseSerialPortLibNull.uni */, - A5AA02FB237F13BF009CD413 /* BaseSerialPortLibNull.inf */, - A5AA02FC237F13BF009CD413 /* BaseSerialPortLibNull.c */, - ); - path = BaseSerialPortLibNull; - sourceTree = ""; - }; - A5AA02FD237F13BF009CD413 /* BaseS3BootScriptLibNull */ = { - isa = PBXGroup; - children = ( - A5AA02FE237F13BF009CD413 /* BaseS3BootScriptLibNull.inf */, - A5AA02FF237F13BF009CD413 /* BootScriptLib.c */, - A5AA0300237F13BF009CD413 /* BaseS3BootScriptLibNull.uni */, - ); - path = BaseS3BootScriptLibNull; - sourceTree = ""; - }; - A5AA0301237F13BF009CD413 /* DxePcdLib */ = { - isa = PBXGroup; - children = ( - A5AA0302237F13BF009CD413 /* DxePcdLib.c */, - A5AA0303237F13BF009CD413 /* DxePcdLib.uni */, - A5AA0304237F13BF009CD413 /* DxePcdLib.inf */, - ); - path = DxePcdLib; - sourceTree = ""; - }; - A5AA0305237F13BF009CD413 /* SmmPeriodicSmiLib */ = { - isa = PBXGroup; - children = ( - A5AA0306237F13BF009CD413 /* SmmPeriodicSmiLib.inf */, - A5AA0307237F13BF009CD413 /* SmmPeriodicSmiLib.uni */, - A5AA0308237F13BF009CD413 /* SmmPeriodicSmiLib.c */, - ); - path = SmmPeriodicSmiLib; - sourceTree = ""; - }; - A5AA0309237F13BF009CD413 /* UefiScsiLib */ = { - isa = PBXGroup; - children = ( - A5AA030A237F13BF009CD413 /* UefiScsiLib.c */, - A5AA030B237F13BF009CD413 /* UefiScsiLib.uni */, - A5AA030C237F13BF009CD413 /* UefiScsiLib.inf */, - ); - path = UefiScsiLib; - sourceTree = ""; - }; - A5AA030D237F13BF009CD413 /* PeiResourcePublicationLib */ = { - isa = PBXGroup; - children = ( - A5AA030E237F13BF009CD413 /* PeiResourcePublicationLib.c */, - A5AA030F237F13BF009CD413 /* PeiResourcePublicationLib.inf */, - A5AA0310237F13BF009CD413 /* PeiResourcePublicationLib.uni */, - ); - path = PeiResourcePublicationLib; - sourceTree = ""; - }; - A5AA0311237F13BF009CD413 /* DxeHobLib */ = { - isa = PBXGroup; - children = ( - A5AA0312237F13BF009CD413 /* DxeHobLib.inf */, - A5AA0313237F13BF009CD413 /* DxeHobLib.uni */, - A5AA0314237F13BF009CD413 /* HobLib.c */, - ); - path = DxeHobLib; - sourceTree = ""; - }; - A5AA0315237F13BF009CD413 /* BaseS3PciSegmentLib */ = { - isa = PBXGroup; - children = ( - A5AA0316237F13BF009CD413 /* S3PciSegmentLib.c */, - A5AA0317237F13BF009CD413 /* BaseS3PciSegmentLib.uni */, - A5AA0318237F13BF009CD413 /* BaseS3PciSegmentLib.inf */, - ); - path = BaseS3PciSegmentLib; - sourceTree = ""; - }; - A5AA0319237F13BF009CD413 /* BasePciSegmentInfoLibNull */ = { - isa = PBXGroup; - children = ( - A5AA031A237F13BF009CD413 /* BasePciSegmentInfoLibNull.inf */, - A5AA031B237F13BF009CD413 /* BasePciSegmentInfoLibNull.uni */, - A5AA031C237F13BF009CD413 /* PciSegmentInfoLib.c */, - ); - path = BasePciSegmentInfoLibNull; - sourceTree = ""; - }; - A5AA031D237F13BF009CD413 /* SmmMemoryAllocationLib */ = { - isa = PBXGroup; - children = ( - A5AA031E237F13BF009CD413 /* MemoryAllocationLib.c */, - A5AA031F237F13BF009CD413 /* SmmMemoryAllocationLib.uni */, - A5AA0320237F13BF009CD413 /* SmmMemoryAllocationLib.inf */, - ); - path = SmmMemoryAllocationLib; - sourceTree = ""; - }; - A5AA0321237F13BF009CD413 /* BaseExtractGuidedSectionLib */ = { - isa = PBXGroup; - children = ( - A5AA0322237F13BF009CD413 /* BaseExtractGuidedSectionLib.uni */, - A5AA0323237F13BF009CD413 /* BaseExtractGuidedSectionLib.inf */, - A5AA0324237F13BF009CD413 /* BaseExtractGuidedSectionLib.c */, - ); - path = BaseExtractGuidedSectionLib; - sourceTree = ""; - }; - A5AA0325237F13BF009CD413 /* UefiBootServicesTableLib */ = { - isa = PBXGroup; - children = ( - A5AA0326237F13BF009CD413 /* UefiBootServicesTableLib.uni */, - A5AA0327237F13BF009CD413 /* UefiBootServicesTableLib.inf */, - A5AA0328237F13BF009CD413 /* UefiBootServicesTableLib.c */, - ); - path = UefiBootServicesTableLib; - sourceTree = ""; - }; - A5AA0329237F13BF009CD413 /* UefiDebugLibStdErr */ = { - isa = PBXGroup; - children = ( - A5AA032A237F13BF009CD413 /* DebugLibConstructor.c */, - A5AA032B237F13BF009CD413 /* UefiDebugLibStdErr.uni */, - A5AA032C237F13BF009CD413 /* UefiDebugLibStdErr.inf */, - A5AA032D237F13BF009CD413 /* DebugLib.c */, - ); - path = UefiDebugLibStdErr; - sourceTree = ""; - }; - A5AA032E237F13BF009CD413 /* PeiMemoryAllocationLib */ = { - isa = PBXGroup; - children = ( - A5AA032F237F13C0009CD413 /* MemoryAllocationLib.c */, - A5AA0330237F13C0009CD413 /* PeiMemoryAllocationLib.uni */, - A5AA0331237F13C0009CD413 /* PeiMemoryAllocationLib.inf */, - ); - path = PeiMemoryAllocationLib; - sourceTree = ""; - }; - A5AA0332237F13C0009CD413 /* UefiDevicePathLib */ = { - isa = PBXGroup; - children = ( - A5AA0333237F13C0009CD413 /* DevicePathUtilities.c */, - A5AA0334237F13C0009CD413 /* UefiDevicePathLib.c */, - A5AA0335237F13C0009CD413 /* DevicePathFromText.c */, - A5AA0336237F13C0009CD413 /* UefiDevicePathLibOptionalDevicePathProtocol.uni */, - A5AA0337237F13C0009CD413 /* DevicePathToText.c */, - A5AA0338237F13C0009CD413 /* UefiDevicePathLibOptionalDevicePathProtocol.c */, - A5AA0339237F13C0009CD413 /* UefiDevicePathLibOptionalDevicePathProtocol.inf */, - A5AA033A237F13C0009CD413 /* UefiDevicePathLib.uni */, - A5AA033B237F13C0009CD413 /* UefiDevicePathLib.inf */, - A5AA033C237F13C0009CD413 /* UefiDevicePathLib.h */, - ); - path = UefiDevicePathLib; - sourceTree = ""; - }; - A5AA033D237F13C0009CD413 /* PeiHobLib */ = { - isa = PBXGroup; - children = ( - A5AA033E237F13C0009CD413 /* PeiHobLib.uni */, - A5AA033F237F13C0009CD413 /* PeiHobLib.inf */, - A5AA0340237F13C0009CD413 /* HobLib.c */, - ); - path = PeiHobLib; - sourceTree = ""; - }; - A5AA0341237F13C0009CD413 /* PeiMemoryLib */ = { - isa = PBXGroup; - children = ( - A5AA0342237F13C0009CD413 /* SetMem64Wrapper.c */, - A5AA0343237F13C0009CD413 /* ZeroMemWrapper.c */, - A5AA0344237F13C0009CD413 /* CopyMemWrapper.c */, - A5AA0345237F13C0009CD413 /* ScanMem64Wrapper.c */, - A5AA0346237F13C0009CD413 /* MemLibGeneric.c */, - A5AA0347237F13C0009CD413 /* PeiMemoryLib.inf */, - A5AA0348237F13C0009CD413 /* ScanMem8Wrapper.c */, - A5AA0349237F13C0009CD413 /* PeiMemoryLib.uni */, - A5AA034A237F13C0009CD413 /* SetMem32Wrapper.c */, - A5AA034B237F13C0009CD413 /* ScanMem32Wrapper.c */, - A5AA034C237F13C0009CD413 /* IsZeroBufferWrapper.c */, - A5AA034D237F13C0009CD413 /* SetMemWrapper.c */, - A5AA034E237F13C0009CD413 /* MemLib.c */, - A5AA034F237F13C0009CD413 /* CompareMemWrapper.c */, - A5AA0350237F13C0009CD413 /* SetMem16Wrapper.c */, - A5AA0351237F13C0009CD413 /* MemLibGuid.c */, - A5AA0352237F13C0009CD413 /* MemLibInternals.h */, - A5AA0353237F13C0009CD413 /* ScanMem16Wrapper.c */, - ); - path = PeiMemoryLib; - sourceTree = ""; - }; - A5AA0354237F13C0009CD413 /* BaseIoLibIntrinsic */ = { - isa = PBXGroup; - children = ( - A5AA0355237F13C0009CD413 /* BaseIoLibIntrinsic.inf */, - A5AA0356237F13C0009CD413 /* IoLibEbc.c */, - A5AA0357237F13C0009CD413 /* BaseIoLibIntrinsic.uni */, - A5AA0358237F13C0009CD413 /* IoLibGcc.c */, - A5AA0359237F13C0009CD413 /* BaseIoLibIntrinsicSev.inf */, - A5AA035A237F13C0009CD413 /* BaseIoLibIntrinsicInternal.h */, - A5AA035B237F13C0009CD413 /* IoLibMmioBuffer.c */, - A5AA035C237F13C0009CD413 /* X64 */, - A5AA035F237F13C0009CD413 /* IoLib.c */, - A5AA0360237F13C0009CD413 /* IoHighLevel.c */, - A5AA0361237F13C0009CD413 /* IoLibMsc.c */, - A5AA0362237F13C0009CD413 /* Ia32 */, - A5AA0365237F13C0009CD413 /* IoLibArm.c */, - A5AA0366237F13C0009CD413 /* Arm */, - A5AA0369237F13C0009CD413 /* BaseIoLibIntrinsicArmVirt.inf */, - A5AA036A237F13C0009CD413 /* AArch64 */, - A5AA036D237F13C0009CD413 /* IoLibArmVirt.c */, - A5AA036E237F13C0009CD413 /* BaseIoLibIntrinsicArmVirt.uni */, - ); - path = BaseIoLibIntrinsic; - sourceTree = ""; - }; - A5AA035C237F13C0009CD413 /* X64 */ = { - isa = PBXGroup; - children = ( - A5AA035D237F13C0009CD413 /* IoFifo.nasm */, - A5AA035E237F13C0009CD413 /* IoFifoSev.nasm */, - ); - path = X64; - sourceTree = ""; - }; - A5AA0362237F13C0009CD413 /* Ia32 */ = { - isa = PBXGroup; - children = ( - A5AA0363237F13C0009CD413 /* IoFifo.nasm */, - A5AA0364237F13C0009CD413 /* IoFifoSev.nasm */, - ); - path = Ia32; - sourceTree = ""; - }; - A5AA0366237F13C0009CD413 /* Arm */ = { - isa = PBXGroup; - children = ( - A5AA0367237F13C0009CD413 /* ArmVirtMmio.S */, - A5AA0368237F13C0009CD413 /* ArmVirtMmio.asm */, - ); - path = Arm; - sourceTree = ""; - }; - A5AA036A237F13C0009CD413 /* AArch64 */ = { - isa = PBXGroup; - children = ( - A5AA036B237F13C0009CD413 /* ArmVirtMmio.S */, - A5AA036C237F13C0009CD413 /* ArmVirtMmio.asm */, - ); - path = AArch64; - sourceTree = ""; - }; - A5AA036F237F13C0009CD413 /* PeiPciSegmentLibPciCfg2 */ = { - isa = PBXGroup; - children = ( - A5AA0370237F13C0009CD413 /* PeiPciSegmentLibPciCfg2.inf */, - A5AA0371237F13C0009CD413 /* PeiPciSegmentLibPciCfg2.uni */, - A5AA0372237F13C0009CD413 /* PciSegmentLib.c */, - ); - path = PeiPciSegmentLibPciCfg2; - sourceTree = ""; - }; - A5AA0373237F13C0009CD413 /* BasePeCoffGetEntryPointLib */ = { - isa = PBXGroup; - children = ( - A5AA0374237F13C0009CD413 /* BasePeCoffGetEntryPointLib.uni */, - A5AA0375237F13C0009CD413 /* BasePeCoffGetEntryPointLib.inf */, - A5AA0376237F13C0009CD413 /* PeCoffGetEntryPoint.c */, - ); - path = BasePeCoffGetEntryPointLib; - sourceTree = ""; - }; - A5AA0377237F13C0009CD413 /* UefiDevicePathLibDevicePathProtocol */ = { - isa = PBXGroup; - children = ( - A5AA0378237F13C0009CD413 /* UefiDevicePathLibDevicePathProtocol.inf */, - A5AA0379237F13C0009CD413 /* UefiDevicePathLibDevicePathProtocol.uni */, - A5AA037A237F13C0009CD413 /* UefiDevicePathLib.c */, - ); - path = UefiDevicePathLibDevicePathProtocol; - sourceTree = ""; - }; - A5AA037B237F13C0009CD413 /* SmmIoLib */ = { - isa = PBXGroup; - children = ( - A5AA037C237F13C0009CD413 /* SmmIoLib.c */, - A5AA037D237F13C0009CD413 /* SmmIoLib.uni */, - A5AA037E237F13C0009CD413 /* SmmIoLib.inf */, - ); - path = SmmIoLib; - sourceTree = ""; - }; - A5AA037F237F13C0009CD413 /* DxeCoreHobLib */ = { - isa = PBXGroup; - children = ( - A5AA0380237F13C0009CD413 /* HobLib.c */, - A5AA0381237F13C0009CD413 /* DxeCoreHobLib.inf */, - A5AA0382237F13C0009CD413 /* DxeCoreHobLib.uni */, - ); - path = DxeCoreHobLib; - sourceTree = ""; - }; - A5AA0383237F13C0009CD413 /* UefiRuntimeServicesTableLib */ = { - isa = PBXGroup; - children = ( - A5AA0384237F13C0009CD413 /* UefiRuntimeServicesTableLib.uni */, - A5AA0385237F13C0009CD413 /* UefiRuntimeServicesTableLib.inf */, - A5AA0386237F13C0009CD413 /* UefiRuntimeServicesTableLib.c */, - ); - path = UefiRuntimeServicesTableLib; - sourceTree = ""; - }; - A5AA0387237F13C0009CD413 /* PeiPcdLib */ = { - isa = PBXGroup; - children = ( - A5AA0388237F13C0009CD413 /* PeiPcdLib.c */, - A5AA0389237F13C0009CD413 /* PeiPcdLib.inf */, - A5AA038A237F13C0009CD413 /* PeiPcdLib.uni */, - ); - path = PeiPcdLib; - sourceTree = ""; - }; - A5AA038B237F13C0009CD413 /* SmmMemLib */ = { - isa = PBXGroup; - children = ( - A5AA038C237F13C0009CD413 /* SmmMemLib.uni */, - A5AA038D237F13C0009CD413 /* SmmMemLib.c */, - A5AA038E237F13C0009CD413 /* SmmMemLib.inf */, - ); - path = SmmMemLib; - sourceTree = ""; - }; - A5AA038F237F13C0009CD413 /* UefiFileHandleLib */ = { - isa = PBXGroup; - children = ( - A5AA0390237F13C0009CD413 /* UefiFileHandleLib.inf */, - A5AA0391237F13C0009CD413 /* UefiFileHandleLib.uni */, - A5AA0392237F13C0009CD413 /* UefiFileHandleLib.c */, - ); - path = UefiFileHandleLib; - sourceTree = ""; - }; - A5AA0393237F13C0009CD413 /* DxeRuntimeDebugLibSerialPort */ = { - isa = PBXGroup; - children = ( - A5AA0394237F13C0009CD413 /* DebugLib.c */, - A5AA0395237F13C0009CD413 /* DxeRuntimeDebugLibSerialPort.inf */, - A5AA0396237F13C0009CD413 /* DxeRuntimeDebugLibSerialPort.uni */, - ); - path = DxeRuntimeDebugLibSerialPort; - sourceTree = ""; - }; - A5AA0397237F13C0009CD413 /* BaseMemoryLibMmx */ = { - isa = PBXGroup; - children = ( - A5AA0398237F13C0009CD413 /* SetMem64Wrapper.c */, - A5AA0399237F13C0009CD413 /* ZeroMemWrapper.c */, - A5AA039A237F13C0009CD413 /* CopyMemWrapper.c */, - A5AA039B237F13C0009CD413 /* ScanMem64Wrapper.c */, - A5AA039C237F13C0009CD413 /* X64 */, - A5AA03A9237F13C0009CD413 /* ScanMem8Wrapper.c */, - A5AA03AA237F13C0009CD413 /* SetMem32Wrapper.c */, - A5AA03AB237F13C0009CD413 /* Ia32 */, - A5AA03B8237F13C0009CD413 /* ScanMem32Wrapper.c */, - A5AA03B9237F13C0009CD413 /* IsZeroBufferWrapper.c */, - A5AA03BA237F13C0009CD413 /* SetMemWrapper.c */, - A5AA03BB237F13C0009CD413 /* CompareMemWrapper.c */, - A5AA03BC237F13C0009CD413 /* SetMem16Wrapper.c */, - A5AA03BD237F13C0009CD413 /* MemLibGuid.c */, - A5AA03BE237F13C0009CD413 /* BaseMemoryLibMmx.inf */, - A5AA03BF237F13C0009CD413 /* MemLibInternals.h */, - A5AA03C0237F13C0009CD413 /* ScanMem16Wrapper.c */, - A5AA03C1237F13C0009CD413 /* BaseMemoryLibMmx.uni */, - ); - path = BaseMemoryLibMmx; - sourceTree = ""; - }; - A5AA039C237F13C0009CD413 /* X64 */ = { - isa = PBXGroup; - children = ( - A5AA039D237F13C0009CD413 /* ZeroMem.nasm */, - A5AA039E237F13C0009CD413 /* CompareMem.nasm */, - A5AA039F237F13C0009CD413 /* SetMem16.nasm */, - A5AA03A0237F13C0009CD413 /* ScanMem64.nasm */, - A5AA03A1237F13C0009CD413 /* ScanMem32.nasm */, - A5AA03A2237F13C0009CD413 /* SetMem.nasm */, - A5AA03A3237F13C0009CD413 /* IsZeroBuffer.nasm */, - A5AA03A4237F13C0009CD413 /* SetMem64.nasm */, - A5AA03A5237F13C0009CD413 /* ScanMem8.nasm */, - A5AA03A6237F13C0009CD413 /* SetMem32.nasm */, - A5AA03A7237F13C0009CD413 /* ScanMem16.nasm */, - A5AA03A8237F13C0009CD413 /* CopyMem.nasm */, - ); - path = X64; - sourceTree = ""; - }; - A5AA03AB237F13C0009CD413 /* Ia32 */ = { - isa = PBXGroup; - children = ( - A5AA03AC237F13C0009CD413 /* ZeroMem.nasm */, - A5AA03AD237F13C0009CD413 /* CompareMem.nasm */, - A5AA03AE237F13C0009CD413 /* SetMem16.nasm */, - A5AA03AF237F13C0009CD413 /* ScanMem64.nasm */, - A5AA03B0237F13C0009CD413 /* ScanMem32.nasm */, - A5AA03B1237F13C0009CD413 /* SetMem.nasm */, - A5AA03B2237F13C0009CD413 /* IsZeroBuffer.nasm */, - A5AA03B3237F13C0009CD413 /* SetMem64.nasm */, - A5AA03B4237F13C0009CD413 /* ScanMem8.nasm */, - A5AA03B5237F13C0009CD413 /* SetMem32.nasm */, - A5AA03B6237F13C0009CD413 /* ScanMem16.nasm */, - A5AA03B7237F13C0009CD413 /* CopyMem.nasm */, - ); - path = Ia32; - sourceTree = ""; - }; - A5AA03C2237F13C0009CD413 /* BaseOrderedCollectionRedBlackTreeLib */ = { - isa = PBXGroup; - children = ( - A5AA03C3237F13C0009CD413 /* BaseOrderedCollectionRedBlackTreeLib.inf */, - A5AA03C4237F13C0009CD413 /* BaseOrderedCollectionRedBlackTreeLib.uni */, - A5AA03C5237F13C0009CD413 /* BaseOrderedCollectionRedBlackTreeLib.c */, - ); - path = BaseOrderedCollectionRedBlackTreeLib; - sourceTree = ""; - }; - A5AA03C6237F13C0009CD413 /* UefiMemoryAllocationLib */ = { - isa = PBXGroup; - children = ( - A5AA03C7237F13C0009CD413 /* UefiMemoryAllocationLib.inf */, - A5AA03C8237F13C0009CD413 /* MemoryAllocationLib.c */, - A5AA03C9237F13C0009CD413 /* UefiMemoryAllocationLib.uni */, - ); - path = UefiMemoryAllocationLib; - sourceTree = ""; - }; - A5AA03CA237F13C0009CD413 /* UefiRuntimeLib */ = { - isa = PBXGroup; - children = ( - A5AA03CB237F13C0009CD413 /* UefiRuntimeLib.uni */, - A5AA03CC237F13C0009CD413 /* UefiRuntimeLib.inf */, - A5AA03CD237F13C0009CD413 /* RuntimeLib.c */, - ); - path = UefiRuntimeLib; - sourceTree = ""; - }; - A5AA03CE237F13C0009CD413 /* UefiDebugLibConOut */ = { - isa = PBXGroup; - children = ( - A5AA03CF237F13C0009CD413 /* UefiDebugLibConOut.inf */, - A5AA03D0237F13C0009CD413 /* UefiDebugLibConOut.uni */, - A5AA03D1237F13C0009CD413 /* DebugLibConstructor.c */, - A5AA03D2237F13C0009CD413 /* DebugLib.c */, - ); - path = UefiDebugLibConOut; - sourceTree = ""; - }; - A5AA03D3237F13C0009CD413 /* BasePciLibPciExpress */ = { - isa = PBXGroup; - children = ( - A5AA03D4237F13C0009CD413 /* BasePciLibPciExpress.uni */, - A5AA03D5237F13C0009CD413 /* BasePciLibPciExpress.inf */, - A5AA03D6237F13C0009CD413 /* PciLib.c */, - ); - path = BasePciLibPciExpress; - sourceTree = ""; - }; - A5AA03D7237F13C0009CD413 /* UefiLib */ = { - isa = PBXGroup; - children = ( - A5AA03D8237F13C0009CD413 /* UefiLibPrint.c */, - A5AA03D9237F13C0009CD413 /* UefiLib.uni */, - A5AA03DA237F13C0009CD413 /* UefiLib.inf */, - A5AA03DB237F13C0009CD413 /* UefiDriverModel.c */, - A5AA03DC237F13C0009CD413 /* UefiNotTiano.c */, - A5AA03DD237F13C0009CD413 /* Console.c */, - A5AA03DE237F13C0009CD413 /* UefiLib.c */, - A5AA03DF237F13C0009CD413 /* UefiLibInternal.h */, - A5AA03E0237F13C0009CD413 /* Acpi.c */, - ); - path = UefiLib; - sourceTree = ""; - }; - A5AA03E1237F13C0009CD413 /* DxeHstiLib */ = { - isa = PBXGroup; - children = ( - A5AA03E2237F13C0009CD413 /* DxeHstiLib.uni */, - A5AA03E3237F13C0009CD413 /* HstiDxe.c */, - A5AA03E4237F13C0009CD413 /* DxeHstiLib.inf */, - A5AA03E5237F13C0009CD413 /* HstiAip.c */, - A5AA03E6237F13C0009CD413 /* HstiDxe.h */, - ); - path = DxeHstiLib; - sourceTree = ""; - }; - A5AA03E7237F13C0009CD413 /* BasePostCodeLibDebug */ = { - isa = PBXGroup; - children = ( - A5AA03E8237F13C0009CD413 /* PostCode.c */, - A5AA03E9237F13C0009CD413 /* BasePostCodeLibDebug.uni */, - A5AA03EA237F13C0009CD413 /* BasePostCodeLibDebug.inf */, - ); - path = BasePostCodeLibDebug; - sourceTree = ""; - }; - A5AA03EB237F13C0009CD413 /* BaseS3StallLib */ = { - isa = PBXGroup; - children = ( - A5AA03EC237F13C0009CD413 /* BaseS3StallLib.inf */, - A5AA03ED237F13C0009CD413 /* BaseS3StallLib.uni */, - A5AA03EE237F13C0009CD413 /* S3StallLib.c */, - ); - path = BaseS3StallLib; - sourceTree = ""; - }; - A5AA03EF237F13C0009CD413 /* BaseMemoryLibOptPei */ = { - isa = PBXGroup; - children = ( - A5AA03F0237F13C0009CD413 /* SetMem64Wrapper.c */, - A5AA03F1237F13C0009CD413 /* ZeroMemWrapper.c */, - A5AA03F2237F13C0009CD413 /* BaseMemoryLibOptPei.uni */, - A5AA03F3237F13C0009CD413 /* CopyMemWrapper.c */, - A5AA03F4237F13C0009CD413 /* ScanMem64Wrapper.c */, - A5AA03F5237F13C0009CD413 /* BaseMemoryLibOptPei.inf */, - A5AA03F6237F13C0009CD413 /* X64 */, - A5AA0403237F13C0009CD413 /* ScanMem8Wrapper.c */, - A5AA0404237F13C0009CD413 /* SetMem32Wrapper.c */, - A5AA0405237F13C0009CD413 /* Ia32 */, - A5AA0412237F13C0009CD413 /* ScanMem32Wrapper.c */, - A5AA0413237F13C0009CD413 /* IsZeroBufferWrapper.c */, - A5AA0414237F13C0009CD413 /* SetMemWrapper.c */, - A5AA0415237F13C0009CD413 /* CompareMemWrapper.c */, - A5AA0416237F13C0009CD413 /* SetMem16Wrapper.c */, - A5AA0417237F13C0009CD413 /* MemLibGuid.c */, - A5AA0418237F13C0009CD413 /* MemLibInternals.h */, - A5AA0419237F13C0009CD413 /* ScanMem16Wrapper.c */, - ); - path = BaseMemoryLibOptPei; - sourceTree = ""; - }; - A5AA03F6237F13C0009CD413 /* X64 */ = { - isa = PBXGroup; - children = ( - A5AA03F7237F13C0009CD413 /* ZeroMem.nasm */, - A5AA03F8237F13C0009CD413 /* CompareMem.nasm */, - A5AA03F9237F13C0009CD413 /* SetMem16.nasm */, - A5AA03FA237F13C0009CD413 /* ScanMem64.nasm */, - A5AA03FB237F13C0009CD413 /* ScanMem32.nasm */, - A5AA03FC237F13C0009CD413 /* SetMem.nasm */, - A5AA03FD237F13C0009CD413 /* IsZeroBuffer.nasm */, - A5AA03FE237F13C0009CD413 /* SetMem64.nasm */, - A5AA03FF237F13C0009CD413 /* ScanMem8.nasm */, - A5AA0400237F13C0009CD413 /* SetMem32.nasm */, - A5AA0401237F13C0009CD413 /* ScanMem16.nasm */, - A5AA0402237F13C0009CD413 /* CopyMem.nasm */, - ); - path = X64; - sourceTree = ""; - }; - A5AA0405237F13C0009CD413 /* Ia32 */ = { - isa = PBXGroup; - children = ( - A5AA0406237F13C0009CD413 /* ZeroMem.nasm */, - A5AA0407237F13C0009CD413 /* CompareMem.nasm */, - A5AA0408237F13C0009CD413 /* SetMem16.nasm */, - A5AA0409237F13C0009CD413 /* ScanMem64.nasm */, - A5AA040A237F13C0009CD413 /* ScanMem32.nasm */, - A5AA040B237F13C0009CD413 /* SetMem.nasm */, - A5AA040C237F13C0009CD413 /* IsZeroBuffer.nasm */, - A5AA040D237F13C0009CD413 /* SetMem64.nasm */, - A5AA040E237F13C0009CD413 /* ScanMem8.nasm */, - A5AA040F237F13C0009CD413 /* SetMem32.nasm */, - A5AA0410237F13C0009CD413 /* ScanMem16.nasm */, - A5AA0411237F13C0009CD413 /* CopyMem.nasm */, - ); - path = Ia32; - sourceTree = ""; - }; - A5AA041A237F13C0009CD413 /* UefiPciLibPciRootBridgeIo */ = { - isa = PBXGroup; - children = ( - A5AA041B237F13C0009CD413 /* UefiPciLibPciRootBridgeIo.uni */, - A5AA041C237F13C0009CD413 /* UefiPciLibPciRootBridgeIo.inf */, - A5AA041D237F13C0009CD413 /* PciLib.c */, - ); - path = UefiPciLibPciRootBridgeIo; - sourceTree = ""; - }; - A5AA041E237F13C0009CD413 /* PeimEntryPoint */ = { - isa = PBXGroup; - children = ( - A5AA041F237F13C0009CD413 /* PeimEntryPoint.c */, - A5AA0420237F13C0009CD413 /* PeimEntryPoint.uni */, - A5AA0421237F13C0009CD413 /* PeimEntryPoint.inf */, - ); - path = PeimEntryPoint; - sourceTree = ""; - }; - A5AA0422237F13C0009CD413 /* SmiHandlerProfileLibNull */ = { - isa = PBXGroup; - children = ( - A5AA0423237F13C0009CD413 /* SmiHandlerProfileLibNull.c */, - A5AA0424237F13C0009CD413 /* SmiHandlerProfileLibNull.inf */, - A5AA0425237F13C0009CD413 /* SmiHandlerProfileLibNull.uni */, - ); - path = SmiHandlerProfileLibNull; - sourceTree = ""; - }; - A5AA0426237F13C0009CD413 /* BaseS3PciLib */ = { - isa = PBXGroup; - children = ( - A5AA0427237F13C0009CD413 /* S3PciLib.c */, - A5AA0428237F13C0009CD413 /* BaseS3PciLib.uni */, - A5AA0429237F13C0009CD413 /* BaseS3PciLib.inf */, - ); - path = BaseS3PciLib; - sourceTree = ""; - }; - A5AA042A237F13C0009CD413 /* BasePrintLib */ = { - isa = PBXGroup; - children = ( - A5AA042B237F13C0009CD413 /* PrintLibInternal.h */, - A5AA042C237F13C0009CD413 /* PrintLib.c */, - A5AA042D237F13C0009CD413 /* BasePrintLib.inf */, - A5AA042E237F13C0009CD413 /* BasePrintLib.uni */, - A5AA042F237F13C0009CD413 /* PrintLibInternal.c */, - ); - path = BasePrintLib; - sourceTree = ""; - }; - A5AA0430237F13C0009CD413 /* PeiIoLibCpuIo */ = { - isa = PBXGroup; - children = ( - A5AA0431237F13C0009CD413 /* IoLibMmioBuffer.c */, - A5AA0432237F13C0009CD413 /* IoLib.c */, - A5AA0433237F13C0009CD413 /* IoHighLevel.c */, - A5AA0434237F13C0009CD413 /* PeiIoLibCpuIo.uni */, - A5AA0435237F13C0009CD413 /* PeiIoLibCpuIo.inf */, - ); - path = PeiIoLibCpuIo; - sourceTree = ""; - }; - A5AA0436237F13C0009CD413 /* BaseReportStatusCodeLibNull */ = { - isa = PBXGroup; - children = ( - A5AA0437237F13C0009CD413 /* BaseReportStatusCodeLib.c */, - A5AA0438237F13C0009CD413 /* BaseReportStatusCodeLibNull.uni */, - A5AA0439237F13C0009CD413 /* BaseReportStatusCodeLibNull.inf */, - ); - path = BaseReportStatusCodeLibNull; - sourceTree = ""; - }; - A5AA043A237F13C0009CD413 /* DxeServicesTableLib */ = { - isa = PBXGroup; - children = ( - A5AA043B237F13C0009CD413 /* DxeServicesTableLib.c */, - A5AA043C237F13C0009CD413 /* DxeServicesTableLib.inf */, - A5AA043D237F13C0009CD413 /* DxeServicesTableLib.uni */, - ); - path = DxeServicesTableLib; - sourceTree = ""; - }; - A5AA043E237F13C0009CD413 /* BasePeCoffExtraActionLibNull */ = { - isa = PBXGroup; - children = ( - A5AA043F237F13C0009CD413 /* BasePeCoffExtraActionLibNull.inf */, - A5AA0440237F13C0009CD413 /* PeCoffExtraActionLibNull.uni */, - A5AA0441237F13C0009CD413 /* PeCoffExtraActionLib.c */, - ); - path = BasePeCoffExtraActionLibNull; - sourceTree = ""; - }; - A5AA0442237F13C0009CD413 /* UefiUsbLib */ = { - isa = PBXGroup; - children = ( - A5AA0443237F13C0009CD413 /* UsbDxeLib.c */, - A5AA0444237F13C0009CD413 /* UefiUsbLib.inf */, - A5AA0445237F13C0009CD413 /* UefiUsbLib.uni */, - A5AA0446237F13C0009CD413 /* Hid.c */, - A5AA0447237F13C0009CD413 /* UefiUsbLibInternal.h */, - ); - path = UefiUsbLib; - sourceTree = ""; - }; - A5AA0777237F13CD009CD413 /* PcAtChipsetPkg */ = { - isa = PBXGroup; - children = ( - A5AA0778237F13CD009CD413 /* PcAtChipsetPkg.dec */, - A5AA0779237F13CD009CD413 /* PcAtChipsetPkg.uni */, - A5AA077A237F13CD009CD413 /* IsaAcpiDxe */, - A5AA0783237F13CD009CD413 /* HpetTimerDxe */, - A5AA0788237F13CD009CD413 /* PcAtChipsetPkg.dsc */, - A5AA0789237F13CD009CD413 /* Include */, - A5AA0791237F13CD009CD413 /* Bus */, - A5AA079A237F13CD009CD413 /* Library */, - A5AA07B2237F13CD009CD413 /* 8259InterruptControllerDxe */, - A5AA07B8237F13CD009CD413 /* PcAtChipsetPkgExtra.uni */, - A5AA07B9237F13CD009CD413 /* 8254TimerDxe */, - A5AA07BF237F13CD009CD413 /* PcatRealTimeClockRuntimeDxe */, - ); - name = PcAtChipsetPkg; - path = ../../../PcAtChipsetPkg; - sourceTree = ""; - }; - A5AA077A237F13CD009CD413 /* IsaAcpiDxe */ = { - isa = PBXGroup; - children = ( - A5AA077B237F13CD009CD413 /* IsaAcpi.c */, - A5AA077C237F13CD009CD413 /* IsaAcpiExtra.uni */, - A5AA077D237F13CD009CD413 /* PcatIsaAcpi.h */, - A5AA077E237F13CD009CD413 /* ComponentName.c */, - A5AA077F237F13CD009CD413 /* IsaAcpi.c.bak */, - A5AA0780237F13CD009CD413 /* PcatIsaAcpi.c */, - A5AA0781237F13CD009CD413 /* IsaAcpi.inf */, - A5AA0782237F13CD009CD413 /* IsaAcpi.uni */, - ); - path = IsaAcpiDxe; - sourceTree = ""; - }; - A5AA0783237F13CD009CD413 /* HpetTimerDxe */ = { - isa = PBXGroup; - children = ( - A5AA0784237F13CD009CD413 /* HpetTimerDxe.uni */, - A5AA0785237F13CD009CD413 /* HpetTimer.c */, - A5AA0786237F13CD009CD413 /* HpetTimerDxeExtra.uni */, - A5AA0787237F13CD009CD413 /* HpetTimerDxe.inf */, - ); - path = HpetTimerDxe; - sourceTree = ""; - }; - A5AA0789237F13CD009CD413 /* Include */ = { - isa = PBXGroup; - children = ( - A5AA078A237F13CD009CD413 /* Library */, - A5AA078C237F13CD009CD413 /* Register */, - A5AA078F237F13CD009CD413 /* Guid */, - ); - path = Include; - sourceTree = ""; - }; - A5AA078A237F13CD009CD413 /* Library */ = { - isa = PBXGroup; - children = ( - A5AA078B237F13CD009CD413 /* IoApicLib.h */, - ); - path = Library; - sourceTree = ""; - }; - A5AA078C237F13CD009CD413 /* Register */ = { - isa = PBXGroup; - children = ( - A5AA078D237F13CD009CD413 /* IoApic.h */, - A5AA078E237F13CD009CD413 /* Hpet.h */, - ); - path = Register; - sourceTree = ""; - }; - A5AA078F237F13CD009CD413 /* Guid */ = { - isa = PBXGroup; - children = ( - A5AA0790237F13CD009CD413 /* PcAtChipsetTokenSpace.h */, - ); - path = Guid; - sourceTree = ""; - }; - A5AA0791237F13CD009CD413 /* Bus */ = { - isa = PBXGroup; - children = ( - A5AA0792237F13CD009CD413 /* Pci */, - ); - path = Bus; - sourceTree = ""; - }; - A5AA0792237F13CD009CD413 /* Pci */ = { - isa = PBXGroup; - children = ( - A5AA0793237F13CD009CD413 /* IdeControllerDxe */, - ); - path = Pci; - sourceTree = ""; - }; - A5AA0793237F13CD009CD413 /* IdeControllerDxe */ = { - isa = PBXGroup; - children = ( - A5AA0794237F13CD009CD413 /* IdeController.c */, - A5AA0795237F13CD009CD413 /* IdeControllerExtra.uni */, - A5AA0796237F13CD009CD413 /* IdeControllerDxe.inf */, - A5AA0797237F13CD009CD413 /* ComponentName.c */, - A5AA0798237F13CD009CD413 /* IdeController.uni */, - A5AA0799237F13CD009CD413 /* IdeController.h */, - ); - path = IdeControllerDxe; - sourceTree = ""; - }; - A5AA079A237F13CD009CD413 /* Library */ = { - isa = PBXGroup; - children = ( - A5AA079B237F13CD009CD413 /* AcpiTimerLib */, - A5AA07A6237F13CD009CD413 /* BaseIoApicLib */, - A5AA07AA237F13CD009CD413 /* ResetSystemLib */, - A5AA07AE237F13CD009CD413 /* SerialIoLib */, - ); - path = Library; - sourceTree = ""; - }; - A5AA079B237F13CD009CD413 /* AcpiTimerLib */ = { - isa = PBXGroup; - children = ( - A5AA079C237F13CD009CD413 /* DxeAcpiTimerLib.uni */, - A5AA079D237F13CD009CD413 /* DxeAcpiTimerLib.inf */, - A5AA079E237F13CD009CD413 /* BaseAcpiTimerLib.uni */, - A5AA079F237F13CD009CD413 /* BaseAcpiTimerLib.inf */, - A5AA07A0237F13CD009CD413 /* BaseAcpiTimerLib.c */, - A5AA07A1237F13CD009CD413 /* PeiAcpiTimerLib.inf */, - A5AA07A2237F13CD009CD413 /* PeiAcpiTimerLib.uni */, - A5AA07A3237F13CD009CD413 /* DxeAcpiTimerLib.c */, - A5AA07A4237F13CD009CD413 /* PeiAcpiTimerLib.c */, - A5AA07A5237F13CD009CD413 /* AcpiTimerLib.c */, - ); - path = AcpiTimerLib; - sourceTree = ""; - }; - A5AA07A6237F13CD009CD413 /* BaseIoApicLib */ = { - isa = PBXGroup; - children = ( - A5AA07A7237F13CD009CD413 /* BaseIoApicLib.uni */, - A5AA07A8237F13CD009CD413 /* BaseIoApicLib.inf */, - A5AA07A9237F13CD009CD413 /* IoApicLib.c */, - ); - path = BaseIoApicLib; - sourceTree = ""; - }; - A5AA07AA237F13CD009CD413 /* ResetSystemLib */ = { - isa = PBXGroup; - children = ( - A5AA07AB237F13CD009CD413 /* ResetSystemLib.c */, - A5AA07AC237F13CD009CD413 /* ResetSystemLib.uni */, - A5AA07AD237F13CD009CD413 /* ResetSystemLib.inf */, - ); - path = ResetSystemLib; - sourceTree = ""; - }; - A5AA07AE237F13CD009CD413 /* SerialIoLib */ = { - isa = PBXGroup; - children = ( - A5AA07AF237F13CD009CD413 /* SerialPortLib.c */, - A5AA07B0237F13CD009CD413 /* SerialIoLib.inf */, - A5AA07B1237F13CD009CD413 /* PcAtSerialPortLib.uni */, - ); - path = SerialIoLib; - sourceTree = ""; - }; - A5AA07B2237F13CD009CD413 /* 8259InterruptControllerDxe */ = { - isa = PBXGroup; - children = ( - A5AA07B3237F13CD009CD413 /* Legacy8259Extra.uni */, - A5AA07B4237F13CD009CD413 /* 8259.c */, - A5AA07B5237F13CD009CD413 /* 8259.inf */, - A5AA07B6237F13CD009CD413 /* Legacy8259.uni */, - A5AA07B7237F13CD009CD413 /* 8259.h */, - ); - path = 8259InterruptControllerDxe; - sourceTree = ""; - }; - A5AA07B9237F13CD009CD413 /* 8254TimerDxe */ = { - isa = PBXGroup; - children = ( - A5AA07BA237F13CD009CD413 /* Timer.c */, - A5AA07BB237F13CD009CD413 /* Timer.uni */, - A5AA07BC237F13CD009CD413 /* 8254Timer.inf */, - A5AA07BD237F13CD009CD413 /* Timer.h */, - A5AA07BE237F13CD009CD413 /* TimerExtra.uni */, - ); - path = 8254TimerDxe; - sourceTree = ""; - }; - A5AA07BF237F13CD009CD413 /* PcatRealTimeClockRuntimeDxe */ = { - isa = PBXGroup; - children = ( - A5AA07C0237F13CD009CD413 /* PcatRealTimeClockRuntimeDxe.inf */, - A5AA07C1237F13CD009CD413 /* PcRtc.uni */, - A5AA07C2237F13CD009CD413 /* PcRtc.c */, - A5AA07C3237F13CD009CD413 /* PcRtcEntry.c */, - A5AA07C4237F13CD009CD413 /* PcRtcExtra.uni */, - A5AA07C5237F13CD009CD413 /* PcRtc.h */, - ); - path = PcatRealTimeClockRuntimeDxe; - sourceTree = ""; - }; - A5AAF290237F1321009CD413 /* IntelFrameworkModulePkg */ = { - isa = PBXGroup; - children = ( - A5AAF291237F1321009CD413 /* Include */, - A5AAF2A8237F1321009CD413 /* IntelFrameworkModulePkgExtra.uni */, - A5AAF2A9237F1321009CD413 /* IntelFrameworkModulePkg.dsc */, - A5AAF2AA237F1321009CD413 /* IntelFrameworkModulePkg.uni */, - A5AAF2AB237F1321009CD413 /* IntelFrameworkModulePkg.dec */, - ); - name = IntelFrameworkModulePkg; - path = ../../../IntelFrameworkModulePkg; - sourceTree = ""; - }; - A5AAF291237F1321009CD413 /* Include */ = { - isa = PBXGroup; - children = ( - A5AAF292237F1321009CD413 /* Library */, - A5AAF295237F1321009CD413 /* Protocol */, - A5AAF29B237F1321009CD413 /* Guid */, - ); - path = Include; - sourceTree = ""; - }; - A5AAF292237F1321009CD413 /* Library */ = { - isa = PBXGroup; - children = ( - A5AAF293237F1321009CD413 /* PlatformBdsLib.h */, - A5AAF294237F1321009CD413 /* GenericBdsLib.h */, - ); - path = Library; - sourceTree = ""; - }; - A5AAF295237F1321009CD413 /* Protocol */ = { - isa = PBXGroup; - children = ( - A5AAF296237F1321009CD413 /* ExitPmAuth.h */, - A5AAF297237F1321009CD413 /* IsaAcpi.h */, - A5AAF298237F1321009CD413 /* OEMBadging.h */, - A5AAF299237F1321009CD413 /* VgaMiniPort.h */, - A5AAF29A237F1321009CD413 /* IsaIo.h */, - ); - path = Protocol; - sourceTree = ""; - }; - A5AAF29B237F1321009CD413 /* Guid */ = { - isa = PBXGroup; - children = ( - A5AAF29C237F1321009CD413 /* LegacyBios.h */, - A5AAF29D237F1321009CD413 /* IntelFrameworkModulePkgTokenSpace.h */, - A5AAF29E237F1321009CD413 /* BlockIoVendor.h */, - A5AAF29F237F1321009CD413 /* HdBootVariable.h */, - A5AAF2A0237F1321009CD413 /* BdsLibHii.h */, - A5AAF2A1237F1321009CD413 /* BdsHii.h */, - A5AAF2A2237F1321009CD413 /* TianoDecompress.h */, - A5AAF2A3237F1321009CD413 /* DataHubStatusCodeRecord.h */, - A5AAF2A4237F1321009CD413 /* AcpiVariableCompatibility.h */, - A5AAF2A5237F1321009CD413 /* LegacyDevOrder.h */, - A5AAF2A6237F1321009CD413 /* LastEnumLang.h */, - A5AAF2A7237F1321009CD413 /* CapsuleDataFile.h */, - ); - path = Guid; - sourceTree = ""; - }; - A5AAF332237F13A5009CD413 /* IntelFrameworkPkg */ = { - isa = PBXGroup; - children = ( - A5AAF333237F13A5009CD413 /* IntelFrameworkPkgExtra.uni */, - A5AAF334237F13A5009CD413 /* Include */, - A5AAF372237F13A5009CD413 /* IntelFrameworkPkg.dsc */, - A5AAF373237F13A5009CD413 /* IntelFrameworkPkg.uni */, - A5AAF374237F13A5009CD413 /* IntelFrameworkPkg.dec */, - ); - name = IntelFrameworkPkg; - path = ../../../IntelFrameworkPkg; - sourceTree = ""; - }; - A5AAF334237F13A5009CD413 /* Include */ = { - isa = PBXGroup; - children = ( - A5AAF337237F13A5009CD413 /* Framework */, - A5AAF336237F13A5009CD413 /* FrameworkDxe.h */, - A5AAF360237F13A5009CD413 /* FrameworkPei.h */, - A5AAF335237F13A5009CD413 /* FrameworkSmm.h */, - A5AAF361237F13A5009CD413 /* Guid */, - A5AAF368237F13A5009CD413 /* Ppi */, - A5AAF341237F13A5009CD413 /* Protocol */, - ); - path = Include; - sourceTree = ""; - }; - A5AAF337237F13A5009CD413 /* Framework */ = { - isa = PBXGroup; - children = ( - A5AAF338237F13A5009CD413 /* BootScript.h */, - A5AAF339237F13A5009CD413 /* FirmwareVolumeImageFormat.h */, - A5AAF33A237F13A5009CD413 /* SmmCis.h */, - A5AAF33B237F13A5009CD413 /* FrameworkInternalFormRepresentation.h */, - A5AAF33C237F13A5009CD413 /* Hob.h */, - A5AAF33D237F13A5009CD413 /* PeiCis.h */, - A5AAF33E237F13A5009CD413 /* FirmwareVolumeHeader.h */, - A5AAF33F237F13A5009CD413 /* StatusCode.h */, - A5AAF340237F13A5009CD413 /* DxeCis.h */, - ); - path = Framework; - sourceTree = ""; - }; - A5AAF341237F13A5009CD413 /* Protocol */ = { - isa = PBXGroup; - children = ( - A5AAF342237F13A5009CD413 /* SmmBase.h */, - A5AAF343237F13A5009CD413 /* SmmUsbDispatch.h */, - A5AAF344237F13A5009CD413 /* SmmIchnDispatch.h */, - A5AAF345237F13A5009CD413 /* LegacyInterrupt.h */, - A5AAF346237F13A5009CD413 /* LegacyBios.h */, - A5AAF347237F13A5009CD413 /* SmmSxDispatch.h */, - A5AAF348237F13A5009CD413 /* SmmGpiDispatch.h */, - A5AAF349237F13A5009CD413 /* AcpiS3Save.h */, - A5AAF34A237F13A5009CD413 /* FrameworkMpService.h */, - A5AAF34B237F13A5009CD413 /* FrameworkFirmwareVolumeBlock.h */, - A5AAF34C237F13A5009CD413 /* SmmPowerButtonDispatch.h */, - A5AAF34D237F13A5009CD413 /* FrameworkFormCallback.h */, - A5AAF34E237F13A5009CD413 /* SmmControl.h */, - A5AAF34F237F13A5009CD413 /* SmmCpuSaveState.h */, - A5AAF350237F13A5009CD413 /* SmmStandbyButtonDispatch.h */, - A5AAF351237F13A5009CD413 /* SectionExtraction.h */, - A5AAF352237F13A5009CD413 /* LegacyBiosPlatform.h */, - A5AAF353237F13A5009CD413 /* FrameworkFormBrowser.h */, - A5AAF354237F13A5009CD413 /* SmmAccess.h */, - A5AAF355237F13A5009CD413 /* LegacyRegion.h */, - A5AAF356237F13A5009CD413 /* BootScriptSave.h */, - A5AAF357237F13A5009CD413 /* DataHub.h */, - A5AAF358237F13A5009CD413 /* SmmSwDispatch.h */, - A5AAF359237F13A5009CD413 /* SmmPeriodicTimerDispatch.h */, - A5AAF35A237F13A5009CD413 /* Legacy8259.h */, - A5AAF35B237F13A5009CD413 /* AcpiSupport.h */, - A5AAF35C237F13A5009CD413 /* SmmCpuIo.h */, - A5AAF35D237F13A5009CD413 /* CpuIo.h */, - A5AAF35E237F13A5009CD413 /* FirmwareVolume.h */, - A5AAF35F237F13A5009CD413 /* FrameworkHii.h */, - ); - path = Protocol; - sourceTree = ""; - }; - A5AAF361237F13A5009CD413 /* Guid */ = { - isa = PBXGroup; - children = ( - A5AAF362237F13A5009CD413 /* SmramMemoryReserve.h */, - A5AAF363237F13A5009CD413 /* DataHubRecords.h */, - A5AAF364237F13A5009CD413 /* SmmCommunicate.h */, - A5AAF365237F13A5009CD413 /* BlockIo.h */, - A5AAF366237F13A5009CD413 /* Capsule.h */, - A5AAF367237F13A5009CD413 /* FirmwareFileSystem.h */, - ); - path = Guid; - sourceTree = ""; - }; - A5AAF368237F13A5009CD413 /* Ppi */ = { - isa = PBXGroup; - children = ( - A5AAF369237F13A5009CD413 /* PciCfg.h */, - A5AAF36A237F13A5009CD413 /* Security.h */, - A5AAF36B237F13A5009CD413 /* S3Resume.h */, - A5AAF36C237F13A5009CD413 /* BootScriptExecuter.h */, - A5AAF36D237F13A5009CD413 /* ReadOnlyVariable.h */, - A5AAF36E237F13A5009CD413 /* SectionExtraction.h */, - A5AAF36F237F13A5009CD413 /* FvLoadFile.h */, - A5AAF370237F13A5009CD413 /* Smbus.h */, - A5AAF371237F13A5009CD413 /* FindFv.h */, - ); - path = Ppi; - sourceTree = ""; - }; - A5AAF375237F13B0009CD413 /* MdeModulePkg */ = { - isa = PBXGroup; - children = ( - A5AAF376237F13B0009CD413 /* Core */, - A5AAF405237F13B0009CD413 /* Universal */, - A5AAF6A2237F13B1009CD413 /* Include */, - A5AAF744237F13B1009CD413 /* MdeModulePkgExtra.uni */, - A5AAF745237F13B1009CD413 /* Bus */, - A5AAF90E237F13B2009CD413 /* Library */, - A5AAFACB237F13B3009CD413 /* MdeModulePkgSample.dec */, - A5AAFACC237F13B3009CD413 /* Logo */, - A5AAFAD6237F13B3009CD413 /* MdeModulePkg.uni */, - A5AAFAD7237F13B3009CD413 /* MdeModulePkg.dec */, - A5AAFAD8237F13B3009CD413 /* Application */, - A5AAFB11237F13B3009CD413 /* MdeModulePkg.dsc */, - ); - name = MdeModulePkg; - path = ../../../MdeModulePkg; - sourceTree = ""; - }; - A5AAF376237F13B0009CD413 /* Core */ = { - isa = PBXGroup; - children = ( - A5AAF37E237F13B0009CD413 /* Dxe */, - A5AAF3F4237F13B0009CD413 /* DxeIplPeim */, - A5AAF3D1237F13B0009CD413 /* Pei */, - A5AAF3B8237F13B0009CD413 /* PiSmmCore */, - A5AAF377237F13B0009CD413 /* RuntimeDxe */, - ); - path = Core; - sourceTree = ""; - }; - A5AAF377237F13B0009CD413 /* RuntimeDxe */ = { - isa = PBXGroup; - children = ( - A5AAF378237F13B0009CD413 /* Runtime.c */, - A5AAF379237F13B0009CD413 /* RuntimeDxe.inf */, - A5AAF37A237F13B0009CD413 /* RuntimeDxe.uni */, - A5AAF37B237F13B0009CD413 /* Crc32.c */, - A5AAF37C237F13B0009CD413 /* Runtime.h */, - A5AAF37D237F13B0009CD413 /* RuntimeDxeExtra.uni */, - ); - path = RuntimeDxe; - sourceTree = ""; - }; - A5AAF37E237F13B0009CD413 /* Dxe */ = { - isa = PBXGroup; - children = ( - A5AAF37F237F13B0009CD413 /* Misc */, - A5AAF387237F13B0009CD413 /* Hand */, - A5AAF38D237F13B0009CD413 /* DxeMain.inf */, - A5AAF38E237F13B0009CD413 /* FwVolBlock */, - A5AAF391237F13B0009CD413 /* Dispatcher */, - A5AAF394237F13B0009CD413 /* FwVol */, - A5AAF39B237F13B0009CD413 /* DxeMain */, - A5AAF39E237F13B0009CD413 /* Library */, - A5AAF3A0237F13B0009CD413 /* Gcd */, - A5AAF3A3237F13B0009CD413 /* Image */, - A5AAF3A6237F13B0009CD413 /* DxeMain.h */, - A5AAF3A7237F13B0009CD413 /* DxeCore.uni */, - A5AAF3A8237F13B0009CD413 /* SectionExtraction */, - A5AAF3AA237F13B0009CD413 /* Event */, - A5AAF3AF237F13B0009CD413 /* DxeCoreExtra.uni */, - A5AAF3B0237F13B0009CD413 /* Mem */, - ); - path = Dxe; - sourceTree = ""; - }; - A5AAF37F237F13B0009CD413 /* Misc */ = { - isa = PBXGroup; - children = ( - A5AAF380237F13B0009CD413 /* Stall.c */, - A5AAF381237F13B0009CD413 /* MemoryProtection.c */, - A5AAF382237F13B0009CD413 /* DebugImageInfo.c */, - A5AAF383237F13B0009CD413 /* InstallConfigurationTable.c */, - A5AAF384237F13B0009CD413 /* SetWatchdogTimer.c */, - A5AAF385237F13B0009CD413 /* PropertiesTable.c */, - A5AAF386237F13B0009CD413 /* MemoryAttributesTable.c */, - ); - path = Misc; - sourceTree = ""; - }; - A5AAF387237F13B0009CD413 /* Hand */ = { - isa = PBXGroup; - children = ( - A5AAF388237F13B0009CD413 /* Handle.c */, - A5AAF389237F13B0009CD413 /* Handle.h */, - A5AAF38A237F13B0009CD413 /* Locate.c */, - A5AAF38B237F13B0009CD413 /* DriverSupport.c */, - A5AAF38C237F13B0009CD413 /* Notify.c */, - ); - path = Hand; - sourceTree = ""; - }; - A5AAF38E237F13B0009CD413 /* FwVolBlock */ = { - isa = PBXGroup; - children = ( - A5AAF38F237F13B0009CD413 /* FwVolBlock.c */, - A5AAF390237F13B0009CD413 /* FwVolBlock.h */, - ); - path = FwVolBlock; - sourceTree = ""; - }; - A5AAF391237F13B0009CD413 /* Dispatcher */ = { - isa = PBXGroup; - children = ( - A5AAF392237F13B0009CD413 /* Dispatcher.c */, - A5AAF393237F13B0009CD413 /* Dependency.c */, - ); - path = Dispatcher; - sourceTree = ""; - }; - A5AAF394237F13B0009CD413 /* FwVol */ = { - isa = PBXGroup; - children = ( - A5AAF395237F13B0009CD413 /* FwVolAttrib.c */, - A5AAF396237F13B0009CD413 /* FwVolRead.c */, - A5AAF397237F13B0009CD413 /* FwVolDriver.h */, - A5AAF398237F13B0009CD413 /* Ffs.c */, - A5AAF399237F13B0009CD413 /* FwVolWrite.c */, - A5AAF39A237F13B0009CD413 /* FwVol.c */, - ); - path = FwVol; - sourceTree = ""; - }; - A5AAF39B237F13B0009CD413 /* DxeMain */ = { - isa = PBXGroup; - children = ( - A5AAF39C237F13B0009CD413 /* DxeProtocolNotify.c */, - A5AAF39D237F13B0009CD413 /* DxeMain.c */, - ); - path = DxeMain; - sourceTree = ""; - }; - A5AAF39E237F13B0009CD413 /* Library */ = { - isa = PBXGroup; - children = ( - A5AAF39F237F13B0009CD413 /* Library.c */, - ); - path = Library; - sourceTree = ""; - }; - A5AAF3A0237F13B0009CD413 /* Gcd */ = { - isa = PBXGroup; - children = ( - A5AAF3A1237F13B0009CD413 /* Gcd.c */, - A5AAF3A2237F13B0009CD413 /* Gcd.h */, - ); - path = Gcd; - sourceTree = ""; - }; - A5AAF3A3237F13B0009CD413 /* Image */ = { - isa = PBXGroup; - children = ( - A5AAF3A4237F13B0009CD413 /* Image.c */, - A5AAF3A5237F13B0009CD413 /* Image.h */, - ); - path = Image; - sourceTree = ""; - }; - A5AAF3A8237F13B0009CD413 /* SectionExtraction */ = { - isa = PBXGroup; - children = ( - A5AAF3A9237F13B0009CD413 /* CoreSectionExtraction.c */, - ); - path = SectionExtraction; - sourceTree = ""; - }; - A5AAF3AA237F13B0009CD413 /* Event */ = { - isa = PBXGroup; - children = ( - A5AAF3AB237F13B0009CD413 /* Timer.c */, - A5AAF3AC237F13B0009CD413 /* Event.h */, - A5AAF3AD237F13B0009CD413 /* Event.c */, - A5AAF3AE237F13B0009CD413 /* Tpl.c */, - ); - path = Event; - sourceTree = ""; - }; - A5AAF3B0237F13B0009CD413 /* Mem */ = { - isa = PBXGroup; - children = ( - A5AAF3B1237F13B0009CD413 /* HeapGuard.c */, - A5AAF3B2237F13B0009CD413 /* MemData.c */, - A5AAF3B3237F13B0009CD413 /* MemoryProfileRecord.c */, - A5AAF3B4237F13B0009CD413 /* Page.c */, - A5AAF3B5237F13B0009CD413 /* HeapGuard.h */, - A5AAF3B6237F13B0009CD413 /* Imem.h */, - A5AAF3B7237F13B0009CD413 /* Pool.c */, - ); - path = Mem; - sourceTree = ""; - }; - A5AAF3B8237F13B0009CD413 /* PiSmmCore */ = { - isa = PBXGroup; - children = ( - A5AAF3B9237F13B0009CD413 /* Smi.c */, - A5AAF3BA237F13B0009CD413 /* SmiHandlerProfile.c */, - A5AAF3BB237F13B0009CD413 /* HeapGuard.c */, - A5AAF3BC237F13B0009CD413 /* PiSmmCore.c */, - A5AAF3BD237F13B0009CD413 /* Dispatcher.c */, - A5AAF3BE237F13B0009CD413 /* PiSmmIplExtra.uni */, - A5AAF3BF237F13B0009CD413 /* SmramProfileRecord.c */, - A5AAF3C0237F13B0009CD413 /* Handle.c */, - A5AAF3C1237F13B0009CD413 /* PiSmmCoreExtra.uni */, - A5AAF3C2237F13B0009CD413 /* InstallConfigurationTable.c */, - A5AAF3C3237F13B0009CD413 /* PiSmmCorePrivateData.h */, - A5AAF3C4237F13B0009CD413 /* PiSmmIpl.c */, - A5AAF3C5237F13B0009CD413 /* Page.c */, - A5AAF3C6237F13B0009CD413 /* PiSmmCore.h */, - A5AAF3C7237F13B0009CD413 /* HeapGuard.h */, - A5AAF3C8237F13B0009CD413 /* PiSmmCore.inf */, - A5AAF3C9237F13B0009CD413 /* Locate.c */, - A5AAF3CA237F13B0009CD413 /* Dependency.c */, - A5AAF3CB237F13B0009CD413 /* Pool.c */, - A5AAF3CC237F13B0009CD413 /* PiSmmCore.uni */, - A5AAF3CD237F13B0009CD413 /* MemoryAttributesTable.c */, - A5AAF3CE237F13B0009CD413 /* PiSmmIpl.uni */, - A5AAF3CF237F13B0009CD413 /* Notify.c */, - A5AAF3D0237F13B0009CD413 /* PiSmmIpl.inf */, - ); - path = PiSmmCore; - sourceTree = ""; - }; - A5AAF3D1237F13B0009CD413 /* Pei */ = { - isa = PBXGroup; - children = ( - A5AAF3D2237F13B0009CD413 /* PeiMain.inf */, - A5AAF3D3237F13B0009CD413 /* PciCfg2 */, - A5AAF3D5237F13B0009CD413 /* Memory */, - A5AAF3D7237F13B0009CD413 /* Hob */, - A5AAF3D9237F13B0009CD413 /* Security */, - A5AAF3DB237F13B0009CD413 /* Reset */, - A5AAF3DD237F13B0009CD413 /* Dispatcher */, - A5AAF3DF237F13B0009CD413 /* FwVol */, - A5AAF3E2237F13B0009CD413 /* Dependency */, - A5AAF3E5237F13B0009CD413 /* Image */, - A5AAF3E7237F13B0009CD413 /* PeiMain */, - A5AAF3E9237F13B0009CD413 /* StatusCode */, - A5AAF3EB237F13B0009CD413 /* BootMode */, - A5AAF3ED237F13B0009CD413 /* CpuIo */, - A5AAF3EF237F13B0009CD413 /* Ppi */, - A5AAF3F1237F13B0009CD413 /* PeiCoreExtra.uni */, - A5AAF3F2237F13B0009CD413 /* PeiMain.h */, - A5AAF3F3237F13B0009CD413 /* PeiCore.uni */, - ); - path = Pei; - sourceTree = ""; - }; - A5AAF3D3237F13B0009CD413 /* PciCfg2 */ = { - isa = PBXGroup; - children = ( - A5AAF3D4237F13B0009CD413 /* PciCfg2.c */, - ); - path = PciCfg2; - sourceTree = ""; - }; - A5AAF3D5237F13B0009CD413 /* Memory */ = { - isa = PBXGroup; - children = ( - A5AAF3D6237F13B0009CD413 /* MemoryServices.c */, - ); - path = Memory; - sourceTree = ""; - }; - A5AAF3D7237F13B0009CD413 /* Hob */ = { - isa = PBXGroup; - children = ( - A5AAF3D8237F13B0009CD413 /* Hob.c */, - ); - path = Hob; - sourceTree = ""; - }; - A5AAF3D9237F13B0009CD413 /* Security */ = { - isa = PBXGroup; - children = ( - A5AAF3DA237F13B0009CD413 /* Security.c */, - ); - path = Security; - sourceTree = ""; - }; - A5AAF3DB237F13B0009CD413 /* Reset */ = { - isa = PBXGroup; - children = ( - A5AAF3DC237F13B0009CD413 /* Reset.c */, - ); - path = Reset; - sourceTree = ""; - }; - A5AAF3DD237F13B0009CD413 /* Dispatcher */ = { - isa = PBXGroup; - children = ( - A5AAF3DE237F13B0009CD413 /* Dispatcher.c */, - ); - path = Dispatcher; - sourceTree = ""; - }; - A5AAF3DF237F13B0009CD413 /* FwVol */ = { - isa = PBXGroup; - children = ( - A5AAF3E0237F13B0009CD413 /* FwVol.h */, - A5AAF3E1237F13B0009CD413 /* FwVol.c */, - ); - path = FwVol; - sourceTree = ""; - }; - A5AAF3E2237F13B0009CD413 /* Dependency */ = { - isa = PBXGroup; - children = ( - A5AAF3E3237F13B0009CD413 /* Dependency.h */, - A5AAF3E4237F13B0009CD413 /* Dependency.c */, - ); - path = Dependency; - sourceTree = ""; - }; - A5AAF3E5237F13B0009CD413 /* Image */ = { - isa = PBXGroup; - children = ( - A5AAF3E6237F13B0009CD413 /* Image.c */, - ); - path = Image; - sourceTree = ""; - }; - A5AAF3E7237F13B0009CD413 /* PeiMain */ = { - isa = PBXGroup; - children = ( - A5AAF3E8237F13B0009CD413 /* PeiMain.c */, - ); - path = PeiMain; - sourceTree = ""; - }; - A5AAF3E9237F13B0009CD413 /* StatusCode */ = { - isa = PBXGroup; - children = ( - A5AAF3EA237F13B0009CD413 /* StatusCode.c */, - ); - path = StatusCode; - sourceTree = ""; - }; - A5AAF3EB237F13B0009CD413 /* BootMode */ = { - isa = PBXGroup; - children = ( - A5AAF3EC237F13B0009CD413 /* BootMode.c */, - ); - path = BootMode; - sourceTree = ""; - }; - A5AAF3ED237F13B0009CD413 /* CpuIo */ = { - isa = PBXGroup; - children = ( - A5AAF3EE237F13B0009CD413 /* CpuIo.c */, - ); - path = CpuIo; - sourceTree = ""; - }; - A5AAF3EF237F13B0009CD413 /* Ppi */ = { - isa = PBXGroup; - children = ( - A5AAF3F0237F13B0009CD413 /* Ppi.c */, - ); - path = Ppi; - sourceTree = ""; - }; - A5AAF3F4237F13B0009CD413 /* DxeIplPeim */ = { - isa = PBXGroup; - children = ( - A5AAF3F5237F13B0009CD413 /* DxeIpl.uni */, - A5AAF3F6237F13B0009CD413 /* Ebc */, - A5AAF3F8237F13B0009CD413 /* DxeLoad.c */, - A5AAF3F9237F13B0009CD413 /* DxeIpl.inf */, - A5AAF3FA237F13B0009CD413 /* X64 */, - A5AAF3FE237F13B0009CD413 /* DxeIpl.h */, - A5AAF3FF237F13B0009CD413 /* Ia32 */, - A5AAF402237F13B0009CD413 /* Arm */, - A5AAF404237F13B0009CD413 /* DxeIplExtra.uni */, - ); - path = DxeIplPeim; - sourceTree = ""; - }; - A5AAF3F6237F13B0009CD413 /* Ebc */ = { - isa = PBXGroup; - children = ( - A5AAF3F7237F13B0009CD413 /* DxeLoadFunc.c */, - ); - path = Ebc; - sourceTree = ""; - }; - A5AAF3FA237F13B0009CD413 /* X64 */ = { - isa = PBXGroup; - children = ( - A5AAF3FB237F13B0009CD413 /* VirtualMemory.c */, - A5AAF3FC237F13B0009CD413 /* VirtualMemory.h */, - A5AAF3FD237F13B0009CD413 /* DxeLoadFunc.c */, - ); - path = X64; - sourceTree = ""; - }; - A5AAF3FF237F13B0009CD413 /* Ia32 */ = { - isa = PBXGroup; - children = ( - A5AAF400237F13B0009CD413 /* IdtVectorAsm.nasm */, - A5AAF401237F13B0009CD413 /* DxeLoadFunc.c */, - ); - path = Ia32; - sourceTree = ""; - }; - A5AAF402237F13B0009CD413 /* Arm */ = { - isa = PBXGroup; - children = ( - A5AAF403237F13B0009CD413 /* DxeLoadFunc.c */, - ); - path = Arm; - sourceTree = ""; - }; - A5AAF405237F13B0009CD413 /* Universal */ = { - isa = PBXGroup; - children = ( - A5AAF422237F13B0009CD413 /* Acpi */, - A5AAF610237F13B1009CD413 /* BdsDxe */, - A5AAF566237F13B1009CD413 /* BootManagerPolicyDxe */, - A5AAF505237F13B1009CD413 /* CapsuleOnDiskLoadPei */, - A5AAF61F237F13B1009CD413 /* CapsulePei */, - A5AAF65C237F13B1009CD413 /* CapsuleRuntimeDxe */, - A5AAF674237F13B1009CD413 /* Console */, - A5AAF406237F13B0009CD413 /* DebugPortDxe */, - A5AAF598237F13B1009CD413 /* DebugServicePei */, - A5AAF413237F13B0009CD413 /* DebugSupportDxe */, - A5AAF53B237F13B1009CD413 /* DevicePathDxe */, - A5AAF5B7237F13B1009CD413 /* Disk */, - A5AAF4FB237F13B1009CD413 /* DisplayEngineDxe */, - A5AAF50A237F13B1009CD413 /* DriverHealthManagerDxe */, - A5AAF540237F13B1009CD413 /* DriverSampleDxe */, - A5AAF463237F13B0009CD413 /* EbcDxe */, - A5AAF49C237F13B1009CD413 /* EsrtDxe */, - A5AAF40D237F13B0009CD413 /* EsrtFmpDxe */, - A5AAF525237F13B1009CD413 /* FaultTolerantWriteDxe */, - A5AAF60B237F13B1009CD413 /* FaultTolerantWritePei */, - A5AAF644237F13B1009CD413 /* FileExplorerDxe */, - A5AAF5A8237F13B1009CD413 /* FvSimpleFileSystemDxe */, - A5AAF5F9237F13B1009CD413 /* HiiDatabaseDxe */, - A5AAF550237F13B1009CD413 /* HiiResourcesSampleDxe */, - A5AAF519237F13B1009CD413 /* LegacyRegion2Dxe */, - A5AAF561237F13B1009CD413 /* LoadFileOnFv2 */, - A5AAF63E237F13B1009CD413 /* LockBox */, - A5AAF5EC237F13B1009CD413 /* MemoryTest */, - A5AAF69C237F13B1009CD413 /* Metronome */, - A5AAF514237F13B1009CD413 /* MonotonicCounterRuntimeDxe */, - A5AAF606237F13B1009CD413 /* PcatSingleSegmentPciCfg2Pei */, - A5AAF56B237F13B1009CD413 /* PCD */, - A5AAF557237F13B1009CD413 /* PlatformDriOverrideDxe */, - A5AAF634237F13B1009CD413 /* PrintDxe */, - A5AAF4AE237F13B1009CD413 /* RegularExpressionDxe */, - A5AAF649237F13B1009CD413 /* ReportStatusCodeRouter */, - A5AAF5A2237F13B1009CD413 /* ResetSystemPei */, - A5AAF62E237F13B1009CD413 /* ResetSystemRuntimeDxe */, - A5AAF4A9237F13B1009CD413 /* SectionExtractionDxe */, - A5AAF57A237F13B1009CD413 /* SectionExtractionPei */, - A5AAF5B0237F13B1009CD413 /* SecurityStubDxe */, - A5AAF639237F13B1009CD413 /* SerialDxe */, - A5AAF66A237F13B1009CD413 /* SetupBrowserDxe */, - A5AAF4A3237F13B1009CD413 /* SmbiosDxe */, - A5AAF54B237F13B1009CD413 /* SmbiosMeasurementDxe */, - A5AAF61A237F13B1009CD413 /* SmmCommunicationBufferDxe */, - A5AAF57F237F13B1009CD413 /* StatusCodeHandler */, - A5AAF59D237F13B1009CD413 /* TimestampDxe */, - A5AAF4D9237F13B1009CD413 /* Variable */, - A5AAF51F237F13B1009CD413 /* WatchdogTimerDxe */, - ); - path = Universal; - sourceTree = ""; - }; - A5AAF406237F13B0009CD413 /* DebugPortDxe */ = { - isa = PBXGroup; - children = ( - A5AAF407237F13B0009CD413 /* DebugPort.c */, - A5AAF408237F13B0009CD413 /* DebugPortDxeExtra.uni */, - A5AAF409237F13B0009CD413 /* DebugPortDxe.inf */, - A5AAF40A237F13B0009CD413 /* ComponentName.c */, - A5AAF40B237F13B0009CD413 /* DebugPortDxe.uni */, - A5AAF40C237F13B0009CD413 /* DebugPort.h */, - ); - path = DebugPortDxe; - sourceTree = ""; - }; - A5AAF40D237F13B0009CD413 /* EsrtFmpDxe */ = { - isa = PBXGroup; - children = ( - A5AAF40E237F13B0009CD413 /* EsrtFmpDebugPrint.c */, - A5AAF40F237F13B0009CD413 /* EsrtFmpDxeExtra.uni */, - A5AAF410237F13B0009CD413 /* EsrtFmpDxe.inf */, - A5AAF411237F13B0009CD413 /* EsrtFmpDxe.uni */, - A5AAF412237F13B0009CD413 /* EsrtFmp.c */, - ); - path = EsrtFmpDxe; - sourceTree = ""; - }; - A5AAF413237F13B0009CD413 /* DebugSupportDxe */ = { - isa = PBXGroup; - children = ( - A5AAF414237F13B0009CD413 /* X64 */, - A5AAF418237F13B0009CD413 /* DebugSupportDxeExtra.uni */, - A5AAF419237F13B0009CD413 /* DebugSupport.c */, - A5AAF41A237F13B0009CD413 /* Ia32 */, - A5AAF420237F13B0009CD413 /* DebugSupportDxe.uni */, - A5AAF421237F13B0009CD413 /* DebugSupportDxe.inf */, - ); - path = DebugSupportDxe; - sourceTree = ""; - }; - A5AAF414237F13B0009CD413 /* X64 */ = { - isa = PBXGroup; - children = ( - A5AAF415237F13B0009CD413 /* PlDebugSupport.h */, - A5AAF416237F13B0009CD413 /* PlDebugSupportX64.c */, - A5AAF417237F13B0009CD413 /* AsmFuncs.nasm */, - ); - path = X64; - sourceTree = ""; - }; - A5AAF41A237F13B0009CD413 /* Ia32 */ = { - isa = PBXGroup; - children = ( - A5AAF41B237F13B0009CD413 /* PlDebugSupport.h */, - A5AAF41C237F13B0009CD413 /* AsmFuncs.nasm */, - A5AAF41D237F13B0009CD413 /* PlDebugSupport.c */, - A5AAF41E237F13B0009CD413 /* PlDebugSupportIa32.c */, - A5AAF41F237F13B0009CD413 /* DebugSupport.h */, - ); - path = Ia32; - sourceTree = ""; - }; - A5AAF422237F13B0009CD413 /* Acpi */ = { - isa = PBXGroup; - children = ( - A5AAF423237F13B0009CD413 /* AcpiTableDxe */, - A5AAF431237F13B0009CD413 /* S3SaveStateDxe */, - A5AAF438237F13B0009CD413 /* BootGraphicsResourceTableDxe */, - A5AAF43D237F13B0009CD413 /* FirmwarePerformanceDataTableSmm */, - A5AAF442237F13B0009CD413 /* FirmwarePerformanceDataTablePei */, - A5AAF447237F13B0009CD413 /* AcpiPlatformDxe */, - A5AAF44C237F13B0009CD413 /* BootScriptExecutorDxe */, - A5AAF458237F13B0009CD413 /* SmmS3SaveState */, - A5AAF45E237F13B0009CD413 /* FirmwarePerformanceDataTableDxe */, - ); - path = Acpi; - sourceTree = ""; - }; - A5AAF423237F13B0009CD413 /* AcpiTableDxe */ = { - isa = PBXGroup; - children = ( - A5AAF424237F13B0009CD413 /* AmlNamespace.c */, - A5AAF425237F13B0009CD413 /* AcpiTableDxeExtra.uni */, - A5AAF426237F13B0009CD413 /* AcpiTableProtocol.c */, - A5AAF427237F13B0009CD413 /* AmlOption.c */, - A5AAF428237F13B0009CD413 /* AmlString.c */, - A5AAF429237F13B0009CD413 /* AcpiSdt.c */, - A5AAF42A237F13B0009CD413 /* AcpiTable.c */, - A5AAF42B237F13B0009CD413 /* AcpiTableDxe.uni */, - A5AAF42C237F13B0009CD413 /* AmlChild.c */, - A5AAF42D237F13B0009CD413 /* AcpiTableDxe.inf */, - A5AAF42E237F13B0009CD413 /* AcpiSdt.h */, - A5AAF42F237F13B0009CD413 /* Aml.c */, - A5AAF430237F13B0009CD413 /* AcpiTable.h */, - ); - path = AcpiTableDxe; - sourceTree = ""; - }; - A5AAF431237F13B0009CD413 /* S3SaveStateDxe */ = { - isa = PBXGroup; - children = ( - A5AAF432237F13B0009CD413 /* AcpiS3ContextSave.c */, - A5AAF433237F13B0009CD413 /* S3SaveStateDxeExtra.uni */, - A5AAF434237F13B0009CD413 /* S3SaveState.c */, - A5AAF435237F13B0009CD413 /* S3SaveStateDxe.uni */, - A5AAF436237F13B0009CD413 /* S3SaveStateDxe.inf */, - A5AAF437237F13B0009CD413 /* InternalS3SaveState.h */, - ); - path = S3SaveStateDxe; - sourceTree = ""; - }; - A5AAF438237F13B0009CD413 /* BootGraphicsResourceTableDxe */ = { - isa = PBXGroup; - children = ( - A5AAF439237F13B0009CD413 /* BootGraphicsResourceTableDxeExtra.uni */, - A5AAF43A237F13B0009CD413 /* BootGraphicsResourceTableDxe.c */, - A5AAF43B237F13B0009CD413 /* BootGraphicsResourceTableDxe.inf */, - A5AAF43C237F13B0009CD413 /* BootGraphicsResourceTableDxe.uni */, - ); - path = BootGraphicsResourceTableDxe; - sourceTree = ""; - }; - A5AAF43D237F13B0009CD413 /* FirmwarePerformanceDataTableSmm */ = { - isa = PBXGroup; - children = ( - A5AAF43E237F13B0009CD413 /* FirmwarePerformanceSmm.uni */, - A5AAF43F237F13B0009CD413 /* FirmwarePerformanceSmm.inf */, - A5AAF440237F13B0009CD413 /* FirmwarePerformanceSmmExtra.uni */, - A5AAF441237F13B0009CD413 /* FirmwarePerformanceSmm.c */, - ); - path = FirmwarePerformanceDataTableSmm; - sourceTree = ""; - }; - A5AAF442237F13B0009CD413 /* FirmwarePerformanceDataTablePei */ = { - isa = PBXGroup; - children = ( - A5AAF443237F13B0009CD413 /* FirmwarePerformancePei.c */, - A5AAF444237F13B0009CD413 /* FirmwarePerformancePeiExtra.uni */, - A5AAF445237F13B0009CD413 /* FirmwarePerformancePei.inf */, - A5AAF446237F13B0009CD413 /* FirmwarePerformancePei.uni */, - ); - path = FirmwarePerformanceDataTablePei; - sourceTree = ""; - }; - A5AAF447237F13B0009CD413 /* AcpiPlatformDxe */ = { - isa = PBXGroup; - children = ( - A5AAF448237F13B0009CD413 /* AcpiPlatform.c */, - A5AAF449237F13B0009CD413 /* AcpiPlatformDxe.inf */, - A5AAF44A237F13B0009CD413 /* AcpiPlatformExtra.uni */, - A5AAF44B237F13B0009CD413 /* AcpiPlatform.uni */, - ); - path = AcpiPlatformDxe; - sourceTree = ""; - }; - A5AAF44C237F13B0009CD413 /* BootScriptExecutorDxe */ = { - isa = PBXGroup; - children = ( - A5AAF44D237F13B0009CD413 /* BootScriptExecutorDxe.inf */, - A5AAF44E237F13B0009CD413 /* BootScriptExecutorDxe.uni */, - A5AAF44F237F13B0009CD413 /* X64 */, - A5AAF452237F13B0009CD413 /* ScriptExecute.h */, - A5AAF453237F13B0009CD413 /* BootScriptExecutorDxeExtra.uni */, - A5AAF454237F13B0009CD413 /* IA32 */, - A5AAF457237F13B0009CD413 /* ScriptExecute.c */, - ); - path = BootScriptExecutorDxe; - sourceTree = ""; - }; - A5AAF44F237F13B0009CD413 /* X64 */ = { - isa = PBXGroup; - children = ( - A5AAF450237F13B0009CD413 /* S3Asm.nasm */, - A5AAF451237F13B0009CD413 /* SetIdtEntry.c */, - ); - path = X64; - sourceTree = ""; - }; - A5AAF454237F13B0009CD413 /* IA32 */ = { - isa = PBXGroup; - children = ( - A5AAF455237F13B0009CD413 /* S3Asm.nasm */, - A5AAF456237F13B0009CD413 /* SetIdtEntry.c */, - ); - path = IA32; - sourceTree = ""; - }; - A5AAF458237F13B0009CD413 /* SmmS3SaveState */ = { - isa = PBXGroup; - children = ( - A5AAF459237F13B0009CD413 /* SmmS3SaveStateExtra.uni */, - A5AAF45A237F13B0009CD413 /* SmmS3SaveState.inf */, - A5AAF45B237F13B0009CD413 /* SmmS3SaveState.uni */, - A5AAF45C237F13B0009CD413 /* InternalSmmSaveState.h */, - A5AAF45D237F13B0009CD413 /* SmmS3SaveState.c */, - ); - path = SmmS3SaveState; - sourceTree = ""; - }; - A5AAF45E237F13B0009CD413 /* FirmwarePerformanceDataTableDxe */ = { - isa = PBXGroup; - children = ( - A5AAF45F237F13B0009CD413 /* FirmwarePerformanceDxe.inf */, - A5AAF460237F13B0009CD413 /* FirmwarePerformanceDxe.uni */, - A5AAF461237F13B0009CD413 /* FirmwarePerformanceDxeExtra.uni */, - A5AAF462237F13B0009CD413 /* FirmwarePerformanceDxe.c */, - ); - path = FirmwarePerformanceDataTableDxe; - sourceTree = ""; - }; - A5AAF463237F13B0009CD413 /* EbcDxe */ = { - isa = PBXGroup; - children = ( - A5AAF464237F13B0009CD413 /* EbcDxe.uni */, - A5AAF465237F13B0009CD413 /* EbcInt.h */, - A5AAF466237F13B0009CD413 /* EbcExecute.h */, - A5AAF467237F13B0009CD413 /* EbcDxe.inf */, - A5AAF468237F13B0009CD413 /* X64 */, - A5AAF46B237F13B0009CD413 /* EbcDebugger.inf */, - A5AAF46C237F13B0009CD413 /* EbcDebuggerHook.c */, - A5AAF46D237F13B0009CD413 /* EbcDebugger */, - A5AAF48D237F13B1009CD413 /* EbcDebugger.uni */, - A5AAF48E237F13B1009CD413 /* EbcDebuggerConfig.uni */, - A5AAF48F237F13B1009CD413 /* Ia32 */, - A5AAF492237F13B1009CD413 /* EbcInt.c */, - A5AAF493237F13B1009CD413 /* EbcDebuggerConfig.inf */, - A5AAF494237F13B1009CD413 /* EbcExecute.c */, - A5AAF495237F13B1009CD413 /* EbcDebuggerHook.h */, - A5AAF496237F13B1009CD413 /* AArch64 */, - A5AAF499237F13B1009CD413 /* EbcDebuggerConfigExtra.uni */, - A5AAF49A237F13B1009CD413 /* EbcDxeExtra.uni */, - A5AAF49B237F13B1009CD413 /* EbcDebuggerExtra.uni */, - ); - path = EbcDxe; - sourceTree = ""; - }; - A5AAF468237F13B0009CD413 /* X64 */ = { - isa = PBXGroup; - children = ( - A5AAF469237F13B0009CD413 /* EbcSupport.c */, - A5AAF46A237F13B0009CD413 /* EbcLowLevel.nasm */, - ); - path = X64; - sourceTree = ""; - }; - A5AAF46D237F13B0009CD413 /* EbcDebugger */ = { - isa = PBXGroup; - children = ( - A5AAF46E237F13B0009CD413 /* EdbCommand.h */, - A5AAF46F237F13B0009CD413 /* EdbDisasm.h */, - A5AAF470237F13B0009CD413 /* EdbDisasmSupport.c */, - A5AAF471237F13B0009CD413 /* EdbSymbol.c */, - A5AAF472237F13B0009CD413 /* EdbSupport.h */, - A5AAF473237F13B0009CD413 /* EdbCommon.h */, - A5AAF474237F13B0009CD413 /* EdbHook.c */, - A5AAF475237F13B0009CD413 /* EdbSupportUI.c */, - A5AAF476237F13B0009CD413 /* EdbSupportString.c */, - A5AAF477237F13B0009CD413 /* EdbCmdExtIo.c */, - A5AAF478237F13B0009CD413 /* Edb.c */, - A5AAF479237F13B0009CD413 /* EdbCmdMemory.c */, - A5AAF47A237F13B0009CD413 /* EbcDebuggerConfig.c */, - A5AAF47B237F13B0009CD413 /* EdbDisasmSupport.h */, - A5AAF47C237F13B0009CD413 /* EdbSymbol.h */, - A5AAF47D237F13B0009CD413 /* EdbSupportFile.c */, - A5AAF47E237F13B0009CD413 /* EdbCommand.c */, - A5AAF47F237F13B0009CD413 /* EdbCmdStep.c */, - A5AAF480237F13B0009CD413 /* EdbDisasm.c */, - A5AAF481237F13B0009CD413 /* EdbCmdRegister.c */, - A5AAF482237F13B0009CD413 /* EdbHook.h */, - A5AAF483237F13B1009CD413 /* EdbCmdGo.c */, - A5AAF484237F13B1009CD413 /* EdbCmdScope.c */, - A5AAF485237F13B1009CD413 /* EdbCmdQuit.c */, - A5AAF486237F13B1009CD413 /* EdbCmdHelp.c */, - A5AAF487237F13B1009CD413 /* EdbCmdExtPci.c */, - A5AAF488237F13B1009CD413 /* EdbCmdBranch.c */, - A5AAF489237F13B1009CD413 /* Edb.h */, - A5AAF48A237F13B1009CD413 /* EdbCmdBreak.c */, - A5AAF48B237F13B1009CD413 /* EdbCmdSymbol.c */, - A5AAF48C237F13B1009CD413 /* EdbCmdBreakpoint.c */, - ); - path = EbcDebugger; - sourceTree = ""; - }; - A5AAF48F237F13B1009CD413 /* Ia32 */ = { - isa = PBXGroup; - children = ( - A5AAF490237F13B1009CD413 /* EbcSupport.c */, - A5AAF491237F13B1009CD413 /* EbcLowLevel.nasm */, - ); - path = Ia32; - sourceTree = ""; - }; - A5AAF496237F13B1009CD413 /* AArch64 */ = { - isa = PBXGroup; - children = ( - A5AAF497237F13B1009CD413 /* EbcSupport.c */, - A5AAF498237F13B1009CD413 /* EbcLowLevel.S */, - ); - path = AArch64; - sourceTree = ""; - }; - A5AAF49C237F13B1009CD413 /* EsrtDxe */ = { - isa = PBXGroup; - children = ( - A5AAF49D237F13B1009CD413 /* EsrtDxe.c */, - A5AAF49E237F13B1009CD413 /* EsrtImpl.c */, - A5AAF49F237F13B1009CD413 /* EsrtDxe.uni */, - A5AAF4A0237F13B1009CD413 /* EsrtImpl.h */, - A5AAF4A1237F13B1009CD413 /* EsrtDxe.inf */, - A5AAF4A2237F13B1009CD413 /* EsrtDxeExtra.uni */, - ); - path = EsrtDxe; - sourceTree = ""; - }; - A5AAF4A3237F13B1009CD413 /* SmbiosDxe */ = { - isa = PBXGroup; - children = ( - A5AAF4A4237F13B1009CD413 /* SmbiosDxe.h */, - A5AAF4A5237F13B1009CD413 /* SmbiosDxe.c */, - A5AAF4A6237F13B1009CD413 /* SmbiosDxe.inf */, - A5AAF4A7237F13B1009CD413 /* SmbiosDxe.uni */, - A5AAF4A8237F13B1009CD413 /* SmbiosDxeExtra.uni */, - ); - path = SmbiosDxe; - sourceTree = ""; - }; - A5AAF4A9237F13B1009CD413 /* SectionExtractionDxe */ = { - isa = PBXGroup; - children = ( - A5AAF4AA237F13B1009CD413 /* SectionExtractionDxe.uni */, - A5AAF4AB237F13B1009CD413 /* SectionExtractionDxe.inf */, - A5AAF4AC237F13B1009CD413 /* SectionExtractionDxe.c */, - A5AAF4AD237F13B1009CD413 /* SectionExtractionDxeExtra.uni */, - ); - path = SectionExtractionDxe; - sourceTree = ""; - }; - A5AAF4AE237F13B1009CD413 /* RegularExpressionDxe */ = { - isa = PBXGroup; - children = ( - A5AAF4AF237F13B1009CD413 /* RegularExpressionDxe.inf */, - A5AAF4B0237F13B1009CD413 /* RegularExpressionDxe.h */, - A5AAF4B1237F13B1009CD413 /* Oniguruma */, - A5AAF4D8237F13B1009CD413 /* RegularExpressionDxe.c */, - ); - path = RegularExpressionDxe; - sourceTree = ""; - }; - A5AAF4B1237F13B1009CD413 /* Oniguruma */ = { - isa = PBXGroup; - children = ( - A5AAF4B2237F13B1009CD413 /* unicode_property_data_posix.c */, - A5AAF4B3237F13B1009CD413 /* unicode.c */, - A5AAF4B4237F13B1009CD413 /* st.h */, - A5AAF4B5237F13B1009CD413 /* ascii.c */, - A5AAF4B6237F13B1009CD413 /* unicode_fold2_key.c */, - A5AAF4B7237F13B1009CD413 /* regparse.h */, - A5AAF4B8237F13B1009CD413 /* AUTHORS */, - A5AAF4B9237F13B1009CD413 /* unicode_fold3_key.c */, - A5AAF4BA237F13B1009CD413 /* regposix.c */, - A5AAF4BB237F13B1009CD413 /* unicode_fold1_key.c */, - A5AAF4BC237F13B1009CD413 /* unicode_wb_data.c */, - A5AAF4BD237F13B1009CD413 /* regexec.c */, - A5AAF4BE237F13B1009CD413 /* regint.h */, - A5AAF4BF237F13B1009CD413 /* regenc.h */, - A5AAF4C0237F13B1009CD413 /* regcomp.c */, - A5AAF4C1237F13B1009CD413 /* unicode_egcb_data.c */, - A5AAF4C2237F13B1009CD413 /* regtrav.c */, - A5AAF4C3237F13B1009CD413 /* regsyntax.c */, - A5AAF4C4237F13B1009CD413 /* OnigurumaIntrinsics.c */, - A5AAF4C5237F13B1009CD413 /* regversion.c */, - A5AAF4C6237F13B1009CD413 /* OnigurumaUefiPort.c */, - A5AAF4C7237F13B1009CD413 /* unicode_property_data.c */, - A5AAF4C8237F13B1009CD413 /* README */, - A5AAF4C9237F13B1009CD413 /* st.c */, - A5AAF4CA237F13B1009CD413 /* oniggnu.h */, - A5AAF4CB237F13B1009CD413 /* onigposix.h */, - A5AAF4CC237F13B1009CD413 /* COPYING */, - A5AAF4CD237F13B1009CD413 /* utf16_le.c */, - A5AAF4CE237F13B1009CD413 /* oniguruma.h */, - A5AAF4CF237F13B1009CD413 /* regposerr.c */, - A5AAF4D0237F13B1009CD413 /* regparse.c */, - A5AAF4D1237F13B1009CD413 /* onig_init.c */, - A5AAF4D2237F13B1009CD413 /* regenc.c */, - A5AAF4D3237F13B1009CD413 /* regerror.c */, - A5AAF4D4237F13B1009CD413 /* OnigurumaUefiPort.h */, - A5AAF4D5237F13B1009CD413 /* unicode_unfold_key.c */, - A5AAF4D6237F13B1009CD413 /* reggnu.c */, - A5AAF4D7237F13B1009CD413 /* unicode_fold_data.c */, - ); - path = Oniguruma; - sourceTree = ""; - }; - A5AAF4D9237F13B1009CD413 /* Variable */ = { - isa = PBXGroup; - children = ( - A5AAF4DA237F13B1009CD413 /* RuntimeDxe */, - A5AAF4F5237F13B1009CD413 /* Pei */, - ); - path = Variable; - sourceTree = ""; - }; - A5AAF4DA237F13B1009CD413 /* RuntimeDxe */ = { - isa = PBXGroup; - children = ( - A5AAF4DB237F13B1009CD413 /* Measurement.c */, - A5AAF4DC237F13B1009CD413 /* SpeculationBarrierDxe.c */, - A5AAF4DD237F13B1009CD413 /* VariableStandaloneMm.inf */, - A5AAF4DE237F13B1009CD413 /* VariableSmm.uni */, - A5AAF4DF237F13B1009CD413 /* VariableSmmRuntimeDxeExtra.uni */, - A5AAF4E0237F13B1009CD413 /* SpeculationBarrierSmm.c */, - A5AAF4E1237F13B1009CD413 /* VariableSmm.inf */, - A5AAF4E2237F13B1009CD413 /* VariableTraditionalMm.c */, - A5AAF4E3237F13B1009CD413 /* PrivilegePolymorphic.h */, - A5AAF4E4237F13B1009CD413 /* VariableExLib.c */, - A5AAF4E5237F13B1009CD413 /* Variable.h */, - A5AAF4E6237F13B1009CD413 /* VariableSmmRuntimeDxe.c */, - A5AAF4E7237F13B1009CD413 /* VariableSmmRuntimeDxe.inf */, - A5AAF4E8237F13B1009CD413 /* VariableStandaloneMm.c */, - A5AAF4E9237F13B1009CD413 /* VariableSmmExtra.uni */, - A5AAF4EA237F13B1009CD413 /* VariableSmm.c */, - A5AAF4EB237F13B1009CD413 /* TcgMorLockSmm.c */, - A5AAF4EC237F13B1009CD413 /* Reclaim.c */, - A5AAF4ED237F13B1009CD413 /* VariableDxe.c */, - A5AAF4EE237F13B1009CD413 /* VariableSmmRuntimeDxe.uni */, - A5AAF4EF237F13B1009CD413 /* TcgMorLockDxe.c */, - A5AAF4F0237F13B1009CD413 /* VarCheck.c */, - A5AAF4F1237F13B1009CD413 /* VariableRuntimeDxe.inf */, - A5AAF4F2237F13B1009CD413 /* VariableRuntimeDxeExtra.uni */, - A5AAF4F3237F13B1009CD413 /* VariableRuntimeDxe.uni */, - A5AAF4F4237F13B1009CD413 /* Variable.c */, - ); - path = RuntimeDxe; - sourceTree = ""; - }; - A5AAF4F5237F13B1009CD413 /* Pei */ = { - isa = PBXGroup; - children = ( - A5AAF4F6237F13B1009CD413 /* PeiVariableExtra.uni */, - A5AAF4F7237F13B1009CD413 /* PeiVariable.uni */, - A5AAF4F8237F13B1009CD413 /* Variable.h */, - A5AAF4F9237F13B1009CD413 /* VariablePei.inf */, - A5AAF4FA237F13B1009CD413 /* Variable.c */, - ); - path = Pei; - sourceTree = ""; - }; - A5AAF4FB237F13B1009CD413 /* DisplayEngineDxe */ = { - isa = PBXGroup; - children = ( - A5AAF4FC237F13B1009CD413 /* InputHandler.c */, - A5AAF4FD237F13B1009CD413 /* FormDisplay.c */, - A5AAF4FE237F13B1009CD413 /* DisplayEngine.uni */, - A5AAF4FF237F13B1009CD413 /* FormDisplayStr.uni */, - A5AAF500237F13B1009CD413 /* FormDisplay.h */, - A5AAF501237F13B1009CD413 /* Popup.c */, - A5AAF502237F13B1009CD413 /* ProcessOptions.c */, - A5AAF503237F13B1009CD413 /* DisplayEngineDxe.inf */, - A5AAF504237F13B1009CD413 /* DisplayEngineExtra.uni */, - ); - path = DisplayEngineDxe; - sourceTree = ""; - }; - A5AAF505237F13B1009CD413 /* CapsuleOnDiskLoadPei */ = { - isa = PBXGroup; - children = ( - A5AAF506237F13B1009CD413 /* CapsuleOnDiskLoadPeiExtra.uni */, - A5AAF507237F13B1009CD413 /* CapsuleOnDiskLoadPei.c */, - A5AAF508237F13B1009CD413 /* CapsuleOnDiskLoadPei.inf */, - A5AAF509237F13B1009CD413 /* CapsuleOnDiskLoadPei.uni */, - ); - path = CapsuleOnDiskLoadPei; - sourceTree = ""; - }; - A5AAF50A237F13B1009CD413 /* DriverHealthManagerDxe */ = { - isa = PBXGroup; - children = ( - A5AAF50B237F13B1009CD413 /* DriverHealthManagerDxeExtra.uni */, - A5AAF50C237F13B1009CD413 /* DriverHealthManagerDxe.h */, - A5AAF50D237F13B1009CD413 /* DriverHealthManagerVfr.h */, - A5AAF50E237F13B1009CD413 /* DriverHealthManagerStrings.uni */, - A5AAF50F237F13B1009CD413 /* DriverHealthManagerVfr.Vfr */, - A5AAF510237F13B1009CD413 /* DriverHealthManagerDxe.uni */, - A5AAF511237F13B1009CD413 /* DriverHealthConfigureVfr.Vfr */, - A5AAF512237F13B1009CD413 /* DriverHealthManagerDxe.c */, - A5AAF513237F13B1009CD413 /* DriverHealthManagerDxe.inf */, - ); - path = DriverHealthManagerDxe; - sourceTree = ""; - }; - A5AAF514237F13B1009CD413 /* MonotonicCounterRuntimeDxe */ = { - isa = PBXGroup; - children = ( - A5AAF515237F13B1009CD413 /* MonotonicCounterRuntimeDxeExtra.uni */, - A5AAF516237F13B1009CD413 /* MonotonicCounterRuntimeDxe.inf */, - A5AAF517237F13B1009CD413 /* MonotonicCounter.c */, - A5AAF518237F13B1009CD413 /* MonotonicCounterRuntimeDxe.uni */, - ); - path = MonotonicCounterRuntimeDxe; - sourceTree = ""; - }; - A5AAF519237F13B1009CD413 /* LegacyRegion2Dxe */ = { - isa = PBXGroup; - children = ( - A5AAF51A237F13B1009CD413 /* LegacyRegion2Dxe.uni */, - A5AAF51B237F13B1009CD413 /* LegacyRegion2.c */, - A5AAF51C237F13B1009CD413 /* LegacyRegion2Dxe.inf */, - A5AAF51D237F13B1009CD413 /* LegacyRegion2.h */, - A5AAF51E237F13B1009CD413 /* LegacyRegion2DxeExtra.uni */, - ); - path = LegacyRegion2Dxe; - sourceTree = ""; - }; - A5AAF51F237F13B1009CD413 /* WatchdogTimerDxe */ = { - isa = PBXGroup; - children = ( - A5AAF520237F13B1009CD413 /* WatchdogTimer.inf */, - A5AAF521237F13B1009CD413 /* WatchdogTimer.uni */, - A5AAF522237F13B1009CD413 /* WatchdogTimer.c */, - A5AAF523237F13B1009CD413 /* WatchdogTimerExtra.uni */, - A5AAF524237F13B1009CD413 /* WatchdogTimer.h */, - ); - path = WatchdogTimerDxe; - sourceTree = ""; - }; - A5AAF525237F13B1009CD413 /* FaultTolerantWriteDxe */ = { - isa = PBXGroup; - children = ( - A5AAF526237F13B1009CD413 /* FaultTolerantWriteSmmDxeExtra.uni */, - A5AAF527237F13B1009CD413 /* FaultTolerantWriteSmmCommon.h */, - A5AAF528237F13B1009CD413 /* FaultTolerantWriteSmmDxe.h */, - A5AAF529237F13B1009CD413 /* FaultTolerantWriteStandaloneMm.inf */, - A5AAF52A237F13B1009CD413 /* SmmFaultTolerantWriteDxeExtra.uni */, - A5AAF52B237F13B1009CD413 /* FaultTolerantWrite.c */, - A5AAF52C237F13B1009CD413 /* FaultTolerantWriteDxe.inf */, - A5AAF52D237F13B1009CD413 /* FaultTolerantWriteStandaloneMm.c */, - A5AAF52E237F13B1009CD413 /* FaultTolerantWriteSmmDxe.c */, - A5AAF52F237F13B1009CD413 /* FaultTolerantWriteDxeExtra.uni */, - A5AAF530237F13B1009CD413 /* FaultTolerantWriteDxe.uni */, - A5AAF531237F13B1009CD413 /* FaultTolerantWriteSmm.inf */, - A5AAF532237F13B1009CD413 /* FaultTolerantWriteTraditionalMm.c */, - A5AAF533237F13B1009CD413 /* FaultTolerantWriteDxe.c */, - A5AAF534237F13B1009CD413 /* FaultTolerantWriteSmmDxe.uni */, - A5AAF535237F13B1009CD413 /* FaultTolerantWriteSmm.c */, - A5AAF536237F13B1009CD413 /* FtwMisc.c */, - A5AAF537237F13B1009CD413 /* SmmFaultTolerantWriteDxe.uni */, - A5AAF538237F13B1009CD413 /* UpdateWorkingBlock.c */, - A5AAF539237F13B1009CD413 /* FaultTolerantWriteSmmDxe.inf */, - A5AAF53A237F13B1009CD413 /* FaultTolerantWrite.h */, - ); - path = FaultTolerantWriteDxe; - sourceTree = ""; - }; - A5AAF53B237F13B1009CD413 /* DevicePathDxe */ = { - isa = PBXGroup; - children = ( - A5AAF53C237F13B1009CD413 /* DevicePath.c */, - A5AAF53D237F13B1009CD413 /* DevicePathDxe.inf */, - A5AAF53E237F13B1009CD413 /* DevicePathDxeExtra.uni */, - A5AAF53F237F13B1009CD413 /* DevicePathDxe.uni */, - ); - path = DevicePathDxe; - sourceTree = ""; - }; - A5AAF540237F13B1009CD413 /* DriverSampleDxe */ = { - isa = PBXGroup; - children = ( - A5AAF541237F13B1009CD413 /* NVDataStruc.h */, - A5AAF542237F13B1009CD413 /* DriverSample.c */, - A5AAF543237F13B1009CD413 /* DriverSampleDxe.inf */, - A5AAF544237F13B1009CD413 /* Inventory.vfr */, - A5AAF545237F13B1009CD413 /* Vfr.vfr */, - A5AAF546237F13B1009CD413 /* DriverSample.uni */, - A5AAF547237F13B1009CD413 /* InventoryStrings.uni */, - A5AAF548237F13B1009CD413 /* DriverSampleExtra.uni */, - A5AAF549237F13B1009CD413 /* DriverSample.h */, - A5AAF54A237F13B1009CD413 /* VfrStrings.uni */, - ); - path = DriverSampleDxe; - sourceTree = ""; - }; - A5AAF54B237F13B1009CD413 /* SmbiosMeasurementDxe */ = { - isa = PBXGroup; - children = ( - A5AAF54C237F13B1009CD413 /* SmbiosMeasurementDxeExtra.uni */, - A5AAF54D237F13B1009CD413 /* SmbiosMeasurementDxe.c */, - A5AAF54E237F13B1009CD413 /* SmbiosMeasurementDxe.inf */, - A5AAF54F237F13B1009CD413 /* SmbiosMeasurementDxe.uni */, - ); - path = SmbiosMeasurementDxe; - sourceTree = ""; - }; - A5AAF550237F13B1009CD413 /* HiiResourcesSampleDxe */ = { - isa = PBXGroup; - children = ( - A5AAF551237F13B1009CD413 /* HiiResourcesSample.c */, - A5AAF552237F13B1009CD413 /* HiiResourcesSample.uni */, - A5AAF553237F13B1009CD413 /* HiiResourcesSampleDxe.inf */, - A5AAF554237F13B1009CD413 /* HiiResourcesSampleExtra.uni */, - A5AAF555237F13B1009CD413 /* SampleStrings.uni */, - A5AAF556237F13B1009CD413 /* Sample.vfr */, - ); - path = HiiResourcesSampleDxe; - sourceTree = ""; - }; - A5AAF557237F13B1009CD413 /* PlatformDriOverrideDxe */ = { - isa = PBXGroup; - children = ( - A5AAF558237F13B1009CD413 /* InternalPlatDriOverrideDxe.h */, - A5AAF559237F13B1009CD413 /* Vfr.vfr */, - A5AAF55A237F13B1009CD413 /* PlatOverMngr.h */, - A5AAF55B237F13B1009CD413 /* PlatformDriOverrideDxe.inf */, - A5AAF55C237F13B1009CD413 /* PlatDriOverrideLib.c */, - A5AAF55D237F13B1009CD413 /* PlatDriOverrideDxe.uni */, - A5AAF55E237F13B1009CD413 /* PlatDriOverrideDxeExtra.uni */, - A5AAF55F237F13B1009CD413 /* PlatDriOverrideDxe.c */, - A5AAF560237F13B1009CD413 /* VfrStrings.uni */, - ); - path = PlatformDriOverrideDxe; - sourceTree = ""; - }; - A5AAF561237F13B1009CD413 /* LoadFileOnFv2 */ = { - isa = PBXGroup; - children = ( - A5AAF562237F13B1009CD413 /* LoadFileOnFv2.c */, - A5AAF563237F13B1009CD413 /* LoadFileOnFv2.inf */, - A5AAF564237F13B1009CD413 /* LoadFileOnFv2.uni */, - A5AAF565237F13B1009CD413 /* LoadFileOnFv2Extra.uni */, - ); - path = LoadFileOnFv2; - sourceTree = ""; - }; - A5AAF566237F13B1009CD413 /* BootManagerPolicyDxe */ = { - isa = PBXGroup; - children = ( - A5AAF567237F13B1009CD413 /* BootManagerPolicyDxe.uni */, - A5AAF568237F13B1009CD413 /* BootManagerPolicyDxe.inf */, - A5AAF569237F13B1009CD413 /* BootManagerPolicyDxeExtra.uni */, - A5AAF56A237F13B1009CD413 /* BootManagerPolicyDxe.c */, - ); - path = BootManagerPolicyDxe; - sourceTree = ""; - }; - A5AAF56B237F13B1009CD413 /* PCD */ = { - isa = PBXGroup; - children = ( - A5AAF56C237F13B1009CD413 /* Dxe */, - A5AAF573237F13B1009CD413 /* Pei */, - ); - path = PCD; - sourceTree = ""; - }; - A5AAF56C237F13B1009CD413 /* Dxe */ = { - isa = PBXGroup; - children = ( - A5AAF56D237F13B1009CD413 /* Pcd.c */, - A5AAF56E237F13B1009CD413 /* PcdDxeExtra.uni */, - A5AAF56F237F13B1009CD413 /* Service.h */, - A5AAF570237F13B1009CD413 /* Pcd.inf */, - A5AAF571237F13B1009CD413 /* Service.c */, - A5AAF572237F13B1009CD413 /* PcdDxe.uni */, - ); - path = Dxe; - sourceTree = ""; - }; - A5AAF573237F13B1009CD413 /* Pei */ = { - isa = PBXGroup; - children = ( - A5AAF574237F13B1009CD413 /* Pcd.c */, - A5AAF575237F13B1009CD413 /* Service.h */, - A5AAF576237F13B1009CD413 /* Pcd.inf */, - A5AAF577237F13B1009CD413 /* PcdPeim.uni */, - A5AAF578237F13B1009CD413 /* PcdPeimExtra.uni */, - A5AAF579237F13B1009CD413 /* Service.c */, - ); - path = Pei; - sourceTree = ""; - }; - A5AAF57A237F13B1009CD413 /* SectionExtractionPei */ = { - isa = PBXGroup; - children = ( - A5AAF57B237F13B1009CD413 /* SectionExtractionPei.c */, - A5AAF57C237F13B1009CD413 /* SectionExtractionPeiExtra.uni */, - A5AAF57D237F13B1009CD413 /* SectionExtractionPei.uni */, - A5AAF57E237F13B1009CD413 /* SectionExtractionPei.inf */, - ); - path = SectionExtractionPei; - sourceTree = ""; - }; - A5AAF57F237F13B1009CD413 /* StatusCodeHandler */ = { - isa = PBXGroup; - children = ( - A5AAF580237F13B1009CD413 /* RuntimeDxe */, - A5AAF588237F13B1009CD413 /* Pei */, - A5AAF590237F13B1009CD413 /* Smm */, - ); - path = StatusCodeHandler; - sourceTree = ""; - }; - A5AAF580237F13B1009CD413 /* RuntimeDxe */ = { - isa = PBXGroup; - children = ( - A5AAF581237F13B1009CD413 /* StatusCodeHandlerRuntimeDxe.c */, - A5AAF582237F13B1009CD413 /* MemoryStatusCodeWorker.c */, - A5AAF583237F13B1009CD413 /* StatusCodeHandlerRuntimeDxeExtra.uni */, - A5AAF584237F13B1009CD413 /* StatusCodeHandlerRuntimeDxe.uni */, - A5AAF585237F13B1009CD413 /* StatusCodeHandlerRuntimeDxe.inf */, - A5AAF586237F13B1009CD413 /* StatusCodeHandlerRuntimeDxe.h */, - A5AAF587237F13B1009CD413 /* SerialStatusCodeWorker.c */, - ); - path = RuntimeDxe; - sourceTree = ""; - }; - A5AAF588237F13B1009CD413 /* Pei */ = { - isa = PBXGroup; - children = ( - A5AAF589237F13B1009CD413 /* StatusCodeHandlerPei.uni */, - A5AAF58A237F13B1009CD413 /* StatusCodeHandlerPeiExtra.uni */, - A5AAF58B237F13B1009CD413 /* StatusCodeHandlerPei.inf */, - A5AAF58C237F13B1009CD413 /* StatusCodeHandlerPei.h */, - A5AAF58D237F13B1009CD413 /* MemoryStausCodeWorker.c */, - A5AAF58E237F13B1009CD413 /* SerialStatusCodeWorker.c */, - A5AAF58F237F13B1009CD413 /* StatusCodeHandlerPei.c */, - ); - path = Pei; - sourceTree = ""; - }; - A5AAF590237F13B1009CD413 /* Smm */ = { - isa = PBXGroup; - children = ( - A5AAF591237F13B1009CD413 /* MemoryStatusCodeWorker.c */, - A5AAF592237F13B1009CD413 /* StatusCodeHandlerSmm.c */, - A5AAF593237F13B1009CD413 /* StatusCodeHandlerSmmExtra.uni */, - A5AAF594237F13B1009CD413 /* StatusCodeHandlerSmm.inf */, - A5AAF595237F13B1009CD413 /* SerialStatusCodeWorker.c */, - A5AAF596237F13B1009CD413 /* StatusCodeHandlerSmm.h */, - A5AAF597237F13B1009CD413 /* StatusCodeHandlerSmm.uni */, - ); - path = Smm; - sourceTree = ""; - }; - A5AAF598237F13B1009CD413 /* DebugServicePei */ = { - isa = PBXGroup; - children = ( - A5AAF599237F13B1009CD413 /* DebugServicePei.c */, - A5AAF59A237F13B1009CD413 /* DebugService.h */, - A5AAF59B237F13B1009CD413 /* DebugServicePei.inf */, - A5AAF59C237F13B1009CD413 /* DebugServicePei.uni */, - ); - path = DebugServicePei; - sourceTree = ""; - }; - A5AAF59D237F13B1009CD413 /* TimestampDxe */ = { - isa = PBXGroup; - children = ( - A5AAF59E237F13B1009CD413 /* TimestampDxe.c */, - A5AAF59F237F13B1009CD413 /* TimestampDxe.uni */, - A5AAF5A0237F13B1009CD413 /* TimestampDxe.inf */, - A5AAF5A1237F13B1009CD413 /* TimestampDxeExtra.uni */, - ); - path = TimestampDxe; - sourceTree = ""; - }; - A5AAF5A2237F13B1009CD413 /* ResetSystemPei */ = { - isa = PBXGroup; - children = ( - A5AAF5A3237F13B1009CD413 /* ResetSystemPeiExtra.uni */, - A5AAF5A4237F13B1009CD413 /* ResetSystem.h */, - A5AAF5A5237F13B1009CD413 /* ResetSystemPei.inf */, - A5AAF5A6237F13B1009CD413 /* ResetSystem.c */, - A5AAF5A7237F13B1009CD413 /* ResetSystemPei.uni */, - ); - path = ResetSystemPei; - sourceTree = ""; - }; - A5AAF5A8237F13B1009CD413 /* FvSimpleFileSystemDxe */ = { - isa = PBXGroup; - children = ( - A5AAF5A9237F13B1009CD413 /* FvSimpleFileSystemEntryPoint.c */, - A5AAF5AA237F13B1009CD413 /* FvSimpleFileSystem.c */, - A5AAF5AB237F13B1009CD413 /* FvSimpleFileSystemDxe.inf */, - A5AAF5AC237F13B1009CD413 /* ComponentName.c */, - A5AAF5AD237F13B1009CD413 /* FvSimpleFileSystemInternal.h */, - A5AAF5AE237F13B1009CD413 /* FvSimpleFileSystem.uni */, - A5AAF5AF237F13B1009CD413 /* FvSimpleFileSystemExtra.uni */, - ); - path = FvSimpleFileSystemDxe; - sourceTree = ""; - }; - A5AAF5B0237F13B1009CD413 /* SecurityStubDxe */ = { - isa = PBXGroup; - children = ( - A5AAF5B1237F13B1009CD413 /* Defer3rdPartyImageLoad.c */, - A5AAF5B2237F13B1009CD413 /* SecurityStubDxe.uni */, - A5AAF5B3237F13B1009CD413 /* SecurityStub.c */, - A5AAF5B4237F13B1009CD413 /* SecurityStubDxe.inf */, - A5AAF5B5237F13B1009CD413 /* SecurityStubDxeExtra.uni */, - A5AAF5B6237F13B1009CD413 /* Defer3rdPartyImageLoad.h */, - ); - path = SecurityStubDxe; - sourceTree = ""; - }; - A5AAF5B7237F13B1009CD413 /* Disk */ = { - isa = PBXGroup; - children = ( - A5AAF5B8237F13B1009CD413 /* DiskIoDxe */, - A5AAF5BF237F13B1009CD413 /* CdExpressPei */, - A5AAF5C5237F13B1009CD413 /* PartitionDxe */, - A5AAF5D0237F13B1009CD413 /* RamDiskDxe */, - A5AAF5DD237F13B1009CD413 /* UnicodeCollation */, - A5AAF5E4237F13B1009CD413 /* UdfDxe */, - ); - path = Disk; - sourceTree = ""; - }; - A5AAF5B8237F13B1009CD413 /* DiskIoDxe */ = { - isa = PBXGroup; - children = ( - A5AAF5B9237F13B1009CD413 /* DiskIoDxe.uni */, - A5AAF5BA237F13B1009CD413 /* DiskIo.h */, - A5AAF5BB237F13B1009CD413 /* DiskIoDxe.inf */, - A5AAF5BC237F13B1009CD413 /* ComponentName.c */, - A5AAF5BD237F13B1009CD413 /* DiskIoDxeExtra.uni */, - A5AAF5BE237F13B1009CD413 /* DiskIo.c */, - ); - path = DiskIoDxe; - sourceTree = ""; - }; - A5AAF5BF237F13B1009CD413 /* CdExpressPei */ = { - isa = PBXGroup; - children = ( - A5AAF5C0237F13B1009CD413 /* CdExpressPei.inf */, - A5AAF5C1237F13B1009CD413 /* PeiCdExpress.c */, - A5AAF5C2237F13B1009CD413 /* CdExpressPei.uni */, - A5AAF5C3237F13B1009CD413 /* PeiCdExpress.h */, - A5AAF5C4237F13B1009CD413 /* CdExpressPeiExtra.uni */, - ); - path = CdExpressPei; - sourceTree = ""; - }; - A5AAF5C5237F13B1009CD413 /* PartitionDxe */ = { - isa = PBXGroup; - children = ( - A5AAF5C6237F13B1009CD413 /* Partition.c */, - A5AAF5C7237F13B1009CD413 /* Udf.c */, - A5AAF5C8237F13B1009CD413 /* PartitionDxeExtra.uni */, - A5AAF5C9237F13B1009CD413 /* ComponentName.c */, - A5AAF5CA237F13B1009CD413 /* ElTorito.c */, - A5AAF5CB237F13B1009CD413 /* PartitionDxe.uni */, - A5AAF5CC237F13B1009CD413 /* Partition.h */, - A5AAF5CD237F13B1009CD413 /* PartitionDxe.inf */, - A5AAF5CE237F13B1009CD413 /* Mbr.c */, - A5AAF5CF237F13B1009CD413 /* Gpt.c */, - ); - path = PartitionDxe; - sourceTree = ""; - }; - A5AAF5D0237F13B1009CD413 /* RamDiskDxe */ = { - isa = PBXGroup; - children = ( - A5AAF5D1237F13B1009CD413 /* RamDiskImpl.h */, - A5AAF5D2237F13B1009CD413 /* RamDiskFileExplorer.c */, - A5AAF5D3237F13B1009CD413 /* RamDiskNVData.h */, - A5AAF5D4237F13B1009CD413 /* RamDiskHiiStrings.uni */, - A5AAF5D5237F13B1009CD413 /* RamDiskImpl.c */, - A5AAF5D6237F13B1009CD413 /* RamDiskBlockIo.c */, - A5AAF5D7237F13B1009CD413 /* RamDiskProtocol.c */, - A5AAF5D8237F13B1009CD413 /* RamDiskHii.vfr */, - A5AAF5D9237F13B1009CD413 /* RamDisk.asl */, - A5AAF5DA237F13B1009CD413 /* RamDiskDxe.inf */, - A5AAF5DB237F13B1009CD413 /* RamDiskDriver.c */, - A5AAF5DC237F13B1009CD413 /* RamDiskDxe.uni */, - ); - path = RamDiskDxe; - sourceTree = ""; - }; - A5AAF5DD237F13B1009CD413 /* UnicodeCollation */ = { - isa = PBXGroup; - children = ( - A5AAF5DE237F13B1009CD413 /* EnglishDxe */, - ); - path = UnicodeCollation; - sourceTree = ""; - }; - A5AAF5DE237F13B1009CD413 /* EnglishDxe */ = { - isa = PBXGroup; - children = ( - A5AAF5DF237F13B1009CD413 /* EnglishDxe.uni */, - A5AAF5E0237F13B1009CD413 /* EnglishDxeExtra.uni */, - A5AAF5E1237F13B1009CD413 /* UnicodeCollationEng.c */, - A5AAF5E2237F13B1009CD413 /* EnglishDxe.inf */, - A5AAF5E3237F13B1009CD413 /* UnicodeCollationEng.h */, - ); - path = EnglishDxe; - sourceTree = ""; - }; - A5AAF5E4237F13B1009CD413 /* UdfDxe */ = { - isa = PBXGroup; - children = ( - A5AAF5E5237F13B1009CD413 /* FileName.c */, - A5AAF5E6237F13B1009CD413 /* Udf.c */, - A5AAF5E7237F13B1009CD413 /* FileSystemOperations.c */, - A5AAF5E8237F13B1009CD413 /* ComponentName.c */, - A5AAF5E9237F13B1009CD413 /* UdfDxe.inf */, - A5AAF5EA237F13B1009CD413 /* Udf.h */, - A5AAF5EB237F13B1009CD413 /* File.c */, - ); - path = UdfDxe; - sourceTree = ""; - }; - A5AAF5EC237F13B1009CD413 /* MemoryTest */ = { - isa = PBXGroup; - children = ( - A5AAF5ED237F13B1009CD413 /* GenericMemoryTestDxe */, - A5AAF5F3237F13B1009CD413 /* NullMemoryTestDxe */, - ); - path = MemoryTest; - sourceTree = ""; - }; - A5AAF5ED237F13B1009CD413 /* GenericMemoryTestDxe */ = { - isa = PBXGroup; - children = ( - A5AAF5EE237F13B1009CD413 /* LightMemoryTest.c */, - A5AAF5EF237F13B1009CD413 /* GenericMemoryTestDxe.inf */, - A5AAF5F0237F13B1009CD413 /* GenericMemoryTestDxeExtra.uni */, - A5AAF5F1237F13B1009CD413 /* GenericMemoryTestDxe.uni */, - A5AAF5F2237F13B1009CD413 /* LightMemoryTest.h */, - ); - path = GenericMemoryTestDxe; - sourceTree = ""; - }; - A5AAF5F3237F13B1009CD413 /* NullMemoryTestDxe */ = { - isa = PBXGroup; - children = ( - A5AAF5F4237F13B1009CD413 /* NullMemoryTest.h */, - A5AAF5F5237F13B1009CD413 /* NullMemoryTestDxeExtra.uni */, - A5AAF5F6237F13B1009CD413 /* NullMemoryTestDxe.inf */, - A5AAF5F7237F13B1009CD413 /* NullMemoryTest.c */, - A5AAF5F8237F13B1009CD413 /* NullMemoryTestDxe.uni */, - ); - path = NullMemoryTestDxe; - sourceTree = ""; - }; - A5AAF5F9237F13B1009CD413 /* HiiDatabaseDxe */ = { - isa = PBXGroup; - children = ( - A5AAF5FA237F13B1009CD413 /* HiiDatabaseDxe.inf */, - A5AAF5FB237F13B1009CD413 /* HiiDatabase.uni */, - A5AAF5FC237F13B1009CD413 /* Database.c */, - A5AAF5FD237F13B1009CD413 /* ConfigRouting.c */, - A5AAF5FE237F13B1009CD413 /* Font.c */, - A5AAF5FF237F13B1009CD413 /* String.c */, - A5AAF600237F13B1009CD413 /* Image.c */, - A5AAF601237F13B1009CD413 /* HiiDatabaseExtra.uni */, - A5AAF602237F13B1009CD413 /* HiiDatabase.h */, - A5AAF603237F13B1009CD413 /* ConfigKeywordHandler.c */, - A5AAF604237F13B1009CD413 /* HiiDatabaseEntry.c */, - A5AAF605237F13B1009CD413 /* ImageEx.c */, - ); - path = HiiDatabaseDxe; - sourceTree = ""; - }; - A5AAF606237F13B1009CD413 /* PcatSingleSegmentPciCfg2Pei */ = { - isa = PBXGroup; - children = ( - A5AAF607237F13B1009CD413 /* PciCfg2.c */, - A5AAF608237F13B1009CD413 /* PcatSingleSegmentPciCfg2Pei.inf */, - A5AAF609237F13B1009CD413 /* PcatSingleSegmentPciCfg2Pei.uni */, - A5AAF60A237F13B1009CD413 /* PcatSingleSegmentPciCfg2PeiExtra.uni */, - ); - path = PcatSingleSegmentPciCfg2Pei; - sourceTree = ""; - }; - A5AAF60B237F13B1009CD413 /* FaultTolerantWritePei */ = { - isa = PBXGroup; - children = ( - A5AAF60C237F13B1009CD413 /* FaultTolerantWritePei.inf */, - A5AAF60D237F13B1009CD413 /* FaultTolerantWritePei.uni */, - A5AAF60E237F13B1009CD413 /* FaultTolerantWritePei.c */, - A5AAF60F237F13B1009CD413 /* FaultTolerantWritePeiExtra.uni */, - ); - path = FaultTolerantWritePei; - sourceTree = ""; - }; - A5AAF610237F13B1009CD413 /* BdsDxe */ = { - isa = PBXGroup; - children = ( - A5AAF611237F13B1009CD413 /* Language.h */, - A5AAF612237F13B1009CD413 /* BdsEntry.c */, - A5AAF613237F13B1009CD413 /* HwErrRecSupport.c */, - A5AAF614237F13B1009CD413 /* BdsDxe.inf */, - A5AAF615237F13B1009CD413 /* BdsDxeExtra.uni */, - A5AAF616237F13B1009CD413 /* BdsDxe.uni */, - A5AAF617237F13B1009CD413 /* Bds.h */, - A5AAF618237F13B1009CD413 /* Language.c */, - A5AAF619237F13B1009CD413 /* HwErrRecSupport.h */, - ); - path = BdsDxe; - sourceTree = ""; - }; - A5AAF61A237F13B1009CD413 /* SmmCommunicationBufferDxe */ = { - isa = PBXGroup; - children = ( - A5AAF61B237F13B1009CD413 /* SmmCommunicationBufferExtraDxe.uni */, - A5AAF61C237F13B1009CD413 /* SmmCommunicationBufferDxe.c */, - A5AAF61D237F13B1009CD413 /* SmmCommunicationBufferDxe.uni */, - A5AAF61E237F13B1009CD413 /* SmmCommunicationBufferDxe.inf */, - ); - path = SmmCommunicationBufferDxe; - sourceTree = ""; - }; - A5AAF61F237F13B1009CD413 /* CapsulePei */ = { - isa = PBXGroup; - children = ( - A5AAF620237F13B1009CD413 /* CapsulePei.uni */, - A5AAF621237F13B1009CD413 /* CapsulePei.inf */, - A5AAF622237F13B1009CD413 /* CapsuleX64Extra.uni */, - A5AAF623237F13B1009CD413 /* CapsulePeiExtra.uni */, - A5AAF624237F13B1009CD413 /* X64 */, - A5AAF627237F13B1009CD413 /* Common */, - A5AAF62A237F13B1009CD413 /* CapsuleX64.uni */, - A5AAF62B237F13B1009CD413 /* Capsule.h */, - A5AAF62C237F13B1009CD413 /* CapsuleX64.inf */, - A5AAF62D237F13B1009CD413 /* UefiCapsule.c */, - ); - path = CapsulePei; - sourceTree = ""; - }; - A5AAF624237F13B1009CD413 /* X64 */ = { - isa = PBXGroup; - children = ( - A5AAF625237F13B1009CD413 /* X64Entry.c */, - A5AAF626237F13B1009CD413 /* PageFaultHandler.nasm */, - ); - path = X64; - sourceTree = ""; - }; - A5AAF627237F13B1009CD413 /* Common */ = { - isa = PBXGroup; - children = ( - A5AAF628237F13B1009CD413 /* CapsuleCoalesce.c */, - A5AAF629237F13B1009CD413 /* CommonHeader.h */, - ); - path = Common; - sourceTree = ""; - }; - A5AAF62E237F13B1009CD413 /* ResetSystemRuntimeDxe */ = { - isa = PBXGroup; - children = ( - A5AAF62F237F13B1009CD413 /* ResetSystem.h */, - A5AAF630237F13B1009CD413 /* ResetSystemRuntimeDxeExtra.uni */, - A5AAF631237F13B1009CD413 /* ResetSystemRuntimeDxe.uni */, - A5AAF632237F13B1009CD413 /* ResetSystemRuntimeDxe.inf */, - A5AAF633237F13B1009CD413 /* ResetSystem.c */, - ); - path = ResetSystemRuntimeDxe; - sourceTree = ""; - }; - A5AAF634237F13B1009CD413 /* PrintDxe */ = { - isa = PBXGroup; - children = ( - A5AAF635237F13B1009CD413 /* Print.c */, - A5AAF636237F13B1009CD413 /* PrintDxeExtra.uni */, - A5AAF637237F13B1009CD413 /* PrintDxe.uni */, - A5AAF638237F13B1009CD413 /* PrintDxe.inf */, - ); - path = PrintDxe; - sourceTree = ""; - }; - A5AAF639237F13B1009CD413 /* SerialDxe */ = { - isa = PBXGroup; - children = ( - A5AAF63A237F13B1009CD413 /* SerialIo.c */, - A5AAF63B237F13B1009CD413 /* SerialDxe.inf */, - A5AAF63C237F13B1009CD413 /* SerialDxe.uni */, - A5AAF63D237F13B1009CD413 /* SerialDxeExtra.uni */, - ); - path = SerialDxe; - sourceTree = ""; - }; - A5AAF63E237F13B1009CD413 /* LockBox */ = { - isa = PBXGroup; - children = ( - A5AAF63F237F13B1009CD413 /* SmmLockBox */, - ); - path = LockBox; - sourceTree = ""; - }; - A5AAF63F237F13B1009CD413 /* SmmLockBox */ = { - isa = PBXGroup; - children = ( - A5AAF640237F13B1009CD413 /* SmmLockBoxExtra.uni */, - A5AAF641237F13B1009CD413 /* SmmLockBox.inf */, - A5AAF642237F13B1009CD413 /* SmmLockBox.uni */, - A5AAF643237F13B1009CD413 /* SmmLockBox.c */, - ); - path = SmmLockBox; - sourceTree = ""; - }; - A5AAF644237F13B1009CD413 /* FileExplorerDxe */ = { - isa = PBXGroup; - children = ( - A5AAF645237F13B1009CD413 /* FileExplorerDxe.c */, - A5AAF646237F13B1009CD413 /* FileExplorerDxe.uni */, - A5AAF647237F13B1009CD413 /* FileExplorerDxeExtra.uni */, - A5AAF648237F13B1009CD413 /* FileExplorerDxe.inf */, - ); - path = FileExplorerDxe; - sourceTree = ""; - }; - A5AAF649237F13B1009CD413 /* ReportStatusCodeRouter */ = { - isa = PBXGroup; - children = ( - A5AAF64A237F13B1009CD413 /* RuntimeDxe */, - A5AAF650237F13B1009CD413 /* Pei */, - A5AAF656237F13B1009CD413 /* Smm */, - ); - path = ReportStatusCodeRouter; - sourceTree = ""; - }; - A5AAF64A237F13B1009CD413 /* RuntimeDxe */ = { - isa = PBXGroup; - children = ( - A5AAF64B237F13B1009CD413 /* ReportStatusCodeRouterRuntimeDxe.c */, - A5AAF64C237F13B1009CD413 /* ReportStatusCodeRouterRuntimeDxeExtra.uni */, - A5AAF64D237F13B1009CD413 /* ReportStatusCodeRouterRuntimeDxe.uni */, - A5AAF64E237F13B1009CD413 /* ReportStatusCodeRouterRuntimeDxe.inf */, - A5AAF64F237F13B1009CD413 /* ReportStatusCodeRouterRuntimeDxe.h */, - ); - path = RuntimeDxe; - sourceTree = ""; - }; - A5AAF650237F13B1009CD413 /* Pei */ = { - isa = PBXGroup; - children = ( - A5AAF651237F13B1009CD413 /* ReportStatusCodeRouterPei.inf */, - A5AAF652237F13B1009CD413 /* ReportStatusCodeRouterPei.uni */, - A5AAF653237F13B1009CD413 /* ReportStatusCodeRouterPeiExtra.uni */, - A5AAF654237F13B1009CD413 /* ReportStatusCodeRouterPei.h */, - A5AAF655237F13B1009CD413 /* ReportStatusCodeRouterPei.c */, - ); - path = Pei; - sourceTree = ""; - }; - A5AAF656237F13B1009CD413 /* Smm */ = { - isa = PBXGroup; - children = ( - A5AAF657237F13B1009CD413 /* ReportStatusCodeRouterSmm.c */, - A5AAF658237F13B1009CD413 /* ReportStatusCodeRouterSmmExtra.uni */, - A5AAF659237F13B1009CD413 /* ReportStatusCodeRouterSmm.uni */, - A5AAF65A237F13B1009CD413 /* ReportStatusCodeRouterSmm.h */, - A5AAF65B237F13B1009CD413 /* ReportStatusCodeRouterSmm.inf */, - ); - path = Smm; - sourceTree = ""; - }; - A5AAF65C237F13B1009CD413 /* CapsuleRuntimeDxe */ = { - isa = PBXGroup; - children = ( - A5AAF65D237F13B1009CD413 /* CapsuleCache.c */, - A5AAF65E237F13B1009CD413 /* CapsuleCacheNull.c */, - A5AAF65F237F13B1009CD413 /* X64 */, - A5AAF661237F13B1009CD413 /* CapsuleService.h */, - A5AAF662237F13B1009CD413 /* CapsuleRuntimeDxe.uni */, - A5AAF663237F13B1009CD413 /* CapsuleRuntimeDxe.inf */, - A5AAF664237F13B1009CD413 /* CapsuleRuntimeDxeExtra.uni */, - A5AAF665237F13B1009CD413 /* CapsuleReset.c */, - A5AAF666237F13B1009CD413 /* SaveLongModeContext.c */, - A5AAF667237F13B1009CD413 /* Arm */, - A5AAF669237F13B1009CD413 /* CapsuleService.c */, - ); - path = CapsuleRuntimeDxe; - sourceTree = ""; - }; - A5AAF65F237F13B1009CD413 /* X64 */ = { - isa = PBXGroup; - children = ( - A5AAF660237F13B1009CD413 /* SaveLongModeContext.c */, - ); - path = X64; - sourceTree = ""; - }; - A5AAF667237F13B1009CD413 /* Arm */ = { - isa = PBXGroup; - children = ( - A5AAF668237F13B1009CD413 /* CapsuleReset.c */, - ); - path = Arm; - sourceTree = ""; - }; - A5AAF66A237F13B1009CD413 /* SetupBrowserDxe */ = { - isa = PBXGroup; - children = ( - A5AAF66B237F13B1009CD413 /* Expression.c */, - A5AAF66C237F13B1009CD413 /* SetupBrowserExtra.uni */, - A5AAF66D237F13B1009CD413 /* Setup.h */, - A5AAF66E237F13B1009CD413 /* Presentation.c */, - A5AAF66F237F13B1009CD413 /* SetupBrowserDxe.inf */, - A5AAF670237F13B1009CD413 /* Setup.c */, - A5AAF671237F13B1009CD413 /* Expression.h */, - A5AAF672237F13B1009CD413 /* IfrParse.c */, - A5AAF673237F13B1009CD413 /* SetupBrowser.uni */, - ); - path = SetupBrowserDxe; - sourceTree = ""; - }; - A5AAF674237F13B1009CD413 /* Console */ = { - isa = PBXGroup; - children = ( - A5AAF675237F13B1009CD413 /* GraphicsConsoleDxe */, - A5AAF67D237F13B1009CD413 /* TerminalDxe */, - A5AAF688237F13B1009CD413 /* ConPlatformDxe */, - A5AAF68F237F13B1009CD413 /* ConSplitterDxe */, - A5AAF697237F13B1009CD413 /* GraphicsOutputDxe */, - ); - path = Console; - sourceTree = ""; - }; - A5AAF675237F13B1009CD413 /* GraphicsConsoleDxe */ = { - isa = PBXGroup; - children = ( - A5AAF676237F13B1009CD413 /* GraphicsConsoleDxeExtra.uni */, - A5AAF677237F13B1009CD413 /* GraphicsConsole.h */, - A5AAF678237F13B1009CD413 /* ComponentName.c */, - A5AAF679237F13B1009CD413 /* GraphicsConsoleDxe.inf */, - A5AAF67A237F13B1009CD413 /* GraphicsConsoleDxe.uni */, - A5AAF67B237F13B1009CD413 /* LaffStd.c */, - A5AAF67C237F13B1009CD413 /* GraphicsConsole.c */, - ); - path = GraphicsConsoleDxe; - sourceTree = ""; - }; - A5AAF67D237F13B1009CD413 /* TerminalDxe */ = { - isa = PBXGroup; - children = ( - A5AAF67E237F13B1009CD413 /* TerminalDxeExtra.uni */, - A5AAF67F237F13B1009CD413 /* TerminalDxe.uni */, - A5AAF680237F13B1009CD413 /* TerminalConOut.c */, - A5AAF681237F13B1009CD413 /* TerminalConIn.c */, - A5AAF682237F13B1009CD413 /* TerminalDxe.inf */, - A5AAF683237F13B1009CD413 /* Terminal.c */, - A5AAF684237F13B1009CD413 /* Vtutf8.c */, - A5AAF685237F13B1009CD413 /* ComponentName.c */, - A5AAF686237F13B1009CD413 /* Terminal.h */, - A5AAF687237F13B1009CD413 /* Ansi.c */, - ); - path = TerminalDxe; - sourceTree = ""; - }; - A5AAF688237F13B1009CD413 /* ConPlatformDxe */ = { - isa = PBXGroup; - children = ( - A5AAF689237F13B1009CD413 /* ConPlatformDxeExtra.uni */, - A5AAF68A237F13B1009CD413 /* ConPlatform.c */, - A5AAF68B237F13B1009CD413 /* ConPlatformDxe.inf */, - A5AAF68C237F13B1009CD413 /* ComponentName.c */, - A5AAF68D237F13B1009CD413 /* ConPlatformDxe.uni */, - A5AAF68E237F13B1009CD413 /* ConPlatform.h */, - ); - path = ConPlatformDxe; - sourceTree = ""; - }; - A5AAF68F237F13B1009CD413 /* ConSplitterDxe */ = { - isa = PBXGroup; - children = ( - A5AAF690237F13B1009CD413 /* ConSplitter.h */, - A5AAF691237F13B1009CD413 /* ConSplitterGraphics.c */, - A5AAF692237F13B1009CD413 /* ComponentName.c */, - A5AAF693237F13B1009CD413 /* ConSplitter.c */, - A5AAF694237F13B1009CD413 /* ConSplitterDxe.uni */, - A5AAF695237F13B1009CD413 /* ConSplitterDxeExtra.uni */, - A5AAF696237F13B1009CD413 /* ConSplitterDxe.inf */, - ); - path = ConSplitterDxe; - sourceTree = ""; - }; - A5AAF697237F13B1009CD413 /* GraphicsOutputDxe */ = { - isa = PBXGroup; - children = ( - A5AAF698237F13B1009CD413 /* GraphicsOutput.h */, - A5AAF699237F13B1009CD413 /* ComponentName.c */, - A5AAF69A237F13B1009CD413 /* GraphicsOutputDxe.inf */, - A5AAF69B237F13B1009CD413 /* GraphicsOutput.c */, - ); - path = GraphicsOutputDxe; - sourceTree = ""; - }; - A5AAF69C237F13B1009CD413 /* Metronome */ = { - isa = PBXGroup; - children = ( - A5AAF69D237F13B1009CD413 /* Metronome.inf */, - A5AAF69E237F13B1009CD413 /* Metronome.c */, - A5AAF69F237F13B1009CD413 /* Metronome.uni */, - A5AAF6A0237F13B1009CD413 /* MetronomeExtra.uni */, - A5AAF6A1237F13B1009CD413 /* Metronome.h */, - ); - path = Metronome; - sourceTree = ""; - }; - A5AAF6A2237F13B1009CD413 /* Include */ = { - isa = PBXGroup; - children = ( - A5AAF6A3237F13B1009CD413 /* Library */, - A5AAF6C8237F13B1009CD413 /* Protocol */, - A5AAF6F1237F13B1009CD413 /* Guid */, - A5AAF72A237F13B1009CD413 /* Ppi */, - ); - path = Include; - sourceTree = ""; - }; - A5AAF6A3237F13B1009CD413 /* Library */ = { - isa = PBXGroup; - children = ( - A5AAF6BE237F13B1009CD413 /* AuthVariableLib.h */, - A5AAF6B9237F13B1009CD413 /* BmpSupportLib.h */, - A5AAF6C2237F13B1009CD413 /* BootLogoLib.h */, - A5AAF6C5237F13B1009CD413 /* CapsuleLib.h */, - A5AAF6C4237F13B1009CD413 /* CpuExceptionHandlerLib.h */, - A5AAF6B3237F13B1009CD413 /* CustomizedDisplayLib.h */, - A5AAF6AD237F13B1009CD413 /* DebugAgentLib.h */, - A5AAF6AB237F13B1009CD413 /* DisplayUpdateProgressLib.h */, - A5AAF6C7237F13B1009CD413 /* FileExplorerLib.h */, - A5AAF6A4237F13B1009CD413 /* FmpAuthenticationLib.h */, - A5AAF6B6237F13B1009CD413 /* FrameBufferBltLib.h */, - A5AAF6BF237F13B1009CD413 /* HiiLib.h */, - A5AAF6A7237F13B1009CD413 /* HttpLib.h */, - A5AAF6AC237F13B1009CD413 /* IpmiLib.h */, - A5AAF6BA237F13B1009CD413 /* LockBoxLib.h */, - A5AAF6B1237F13B1009CD413 /* MemoryProfileLib.h */, - A5AAF6B7237F13B1009CD413 /* NetLib.h */, - A5AAF6C0237F13B1009CD413 /* NonDiscoverableDeviceRegistrationLib.h */, - A5AAF6B8237F13B1009CD413 /* OemHookStatusCodeLib.h */, - A5AAF6A9237F13B1009CD413 /* PciHostBridgeLib.h */, - A5AAF6AF237F13B1009CD413 /* PlatformBootManagerLib.h */, - A5AAF6A5237F13B1009CD413 /* PlatformHookLib.h */, - A5AAF6C3237F13B1009CD413 /* PlatformVarCleanupLib.h */, - A5AAF6BD237F13B1009CD413 /* RecoveryLib.h */, - A5AAF6BB237F13B1009CD413 /* ResetSystemLib.h */, - A5AAF6B4237F13B1009CD413 /* ResetUtilityLib.h */, - A5AAF6C6237F13B1009CD413 /* S3Lib.h */, - A5AAF6AA237F13B1009CD413 /* SecurityManagementLib.h */, - A5AAF6B2237F13B1009CD413 /* SmmCorePlatformHookLib.h */, - A5AAF6B5237F13B1009CD413 /* SortLib.h */, - A5AAF6C1237F13B1009CD413 /* TcpIoLib.h */, - A5AAF6A8237F13B1009CD413 /* TpmMeasurementLib.h */, - A5AAF6B0237F13B1009CD413 /* UdpIoLib.h */, - A5AAF6A6237F13B1009CD413 /* UefiBootManagerLib.h */, - A5AAF6AE237F13B1009CD413 /* UefiHiiServicesLib.h */, - A5AAF6BC237F13B1009CD413 /* VarCheckLib.h */, - ); - path = Library; - sourceTree = ""; - }; - A5AAF6C8237F13B1009CD413 /* Protocol */ = { - isa = PBXGroup; - children = ( - A5AAF6D7237F13B1009CD413 /* AtaAtapiPolicy.h */, - A5AAF6E2237F13B1009CD413 /* BootLogo.h */, - A5AAF6EA237F13B1009CD413 /* BootLogo2.h */, - A5AAF6D1237F13B1009CD413 /* DebuggerConfiguration.h */, - A5AAF6E9237F13B1009CD413 /* DisplayProtocol.h */, - A5AAF6ED237F13B1009CD413 /* EbcSimpleDebugger.h */, - A5AAF6DE237F13B1009CD413 /* EbcVmTest.h */, - A5AAF6CC237F13B1009CD413 /* EsrtManagement.h */, - A5AAF6F0237F13B1009CD413 /* FaultTolerantWrite.h */, - A5AAF6CA237F13B1009CD413 /* FileExplorer.h */, - A5AAF6D6237F13B1009CD413 /* FirmwareManagementProgress.h */, - A5AAF6EB237F13B1009CD413 /* FormBrowserEx.h */, - A5AAF6DA237F13B1009CD413 /* FormBrowserEx2.h */, - A5AAF6E8237F13B1009CD413 /* GenericMemoryTest.h */, - A5AAF6D2237F13B1009CD413 /* IoMmu.h */, - A5AAF6CF237F13B1009CD413 /* IpmiProtocol.h */, - A5AAF6D4237F13B1009CD413 /* LoadPe32Image.h */, - A5AAF6E7237F13B1009CD413 /* LockBox.h */, - A5AAF6CD237F13B1009CD413 /* NonDiscoverableDevice.h */, - A5AAF6E0237F13B1009CD413 /* PeCoffImageEmulator.h */, - A5AAF6DF237F13B1009CD413 /* PlatformLogo.h */, - A5AAF6CE237F13B1009CD413 /* PlatformSpecificResetFilter.h */, - A5AAF6D3237F13B1009CD413 /* PlatformSpecificResetHandler.h */, - A5AAF6E1237F13B1009CD413 /* Print2.h */, - A5AAF6C9237F13B1009CD413 /* Ps2Policy.h */, - A5AAF6D9237F13B1009CD413 /* SdMmcOverride.h */, - A5AAF6EF237F13B1009CD413 /* SmmExitBootServices.h */, - A5AAF6E6237F13B1009CD413 /* SmmFaultTolerantWrite.h */, - A5AAF6DD237F13B1009CD413 /* SmmFirmwareVolumeBlock.h */, - A5AAF6E4237F13B1009CD413 /* SmmLegacyBoot.h */, - A5AAF6D8237F13B1009CD413 /* SmmMemoryAttribute.h */, - A5AAF6E3237F13B1009CD413 /* SmmReadyToBoot.h */, - A5AAF6DB237F13B1009CD413 /* SmmSwapAddressRange.h */, - A5AAF6EE237F13B1009CD413 /* SmmVarCheck.h */, - A5AAF6E5237F13B1009CD413 /* SmmVariable.h */, - A5AAF6D0237F13B1009CD413 /* SwapAddressRange.h */, - A5AAF6DC237F13B1009CD413 /* UfsHostController.h */, - A5AAF6CB237F13B1009CD413 /* UfsHostControllerPlatform.h */, - A5AAF6D5237F13B1009CD413 /* VarCheck.h */, - A5AAF6EC237F13B1009CD413 /* VariableLock.h */, - ); - path = Protocol; - sourceTree = ""; - }; - A5AAF6F1237F13B1009CD413 /* Guid */ = { - isa = PBXGroup; - children = ( - A5AAF71F237F13B1009CD413 /* AcpiS3Context.h */, - A5AAF70D237F13B1009CD413 /* BootScriptExecutorVariable.h */, - A5AAF716237F13B1009CD413 /* CapsuleVendor.h */, - A5AAF717237F13B1009CD413 /* ConnectConInEvent.h */, - A5AAF6FF237F13B1009CD413 /* ConsoleInDevice.h */, - A5AAF70B237F13B1009CD413 /* ConsoleOutDevice.h */, - A5AAF722237F13B1009CD413 /* Crc32GuidedSectionExtraction.h */, - A5AAF71D237F13B1009CD413 /* DebugMask.h */, - A5AAF70F237F13B1009CD413 /* DriverSampleHii.h */, - A5AAF6F2237F13B1009CD413 /* EndOfS3Resume.h */, - A5AAF714237F13B1009CD413 /* EventExitBootServiceFailed.h */, - A5AAF6F6237F13B1009CD413 /* ExtendedFirmwarePerformance.h */, - A5AAF729237F13B1009CD413 /* FaultTolerantWrite.h */, - A5AAF728237F13B1009CD413 /* FirmwarePerformance.h */, - A5AAF71B237F13B1009CD413 /* HiiBootMaintenanceFormset.h */, - A5AAF726237F13B1009CD413 /* HiiResourceSampleHii.h */, - A5AAF702237F13B1009CD413 /* IdleLoopEvent.h */, - A5AAF708237F13B1009CD413 /* Ip4Config2Hii.h */, - A5AAF721237F13B1009CD413 /* Ip4IScsiConfigHii.h */, - A5AAF6F4237F13B1009CD413 /* LoadModuleAtFixedAddress.h */, - A5AAF707237F13B1009CD413 /* LzmaDecompress.h */, - A5AAF6F7237F13B1009CD413 /* MdeModuleHii.h */, - A5AAF6F3237F13B1009CD413 /* MdeModulePkgTokenSpace.h */, - A5AAF6FB237F13B1009CD413 /* MemoryProfile.h */, - A5AAF711237F13B1009CD413 /* MemoryStatusCodeRecord.h */, - A5AAF727237F13B1009CD413 /* MemoryTypeInformation.h */, - A5AAF70E237F13B1009CD413 /* MtcVendor.h */, - A5AAF6F8237F13B1009CD413 /* NonDiscoverableDevice.h */, - A5AAF706237F13B1009CD413 /* PcdDataBaseHobGuid.h */, - A5AAF6FD237F13B1009CD413 /* PcdDataBaseSignatureGuid.h */, - A5AAF703237F13B1009CD413 /* Performance.h */, - A5AAF71A237F13B1009CD413 /* PerformanceMeasurement.h */, - A5AAF724237F13B1009CD413 /* PiSmmCommunicationRegionTable.h */, - A5AAF709237F13B1009CD413 /* PiSmmMemoryAttributesTable.h */, - A5AAF71C237F13B1009CD413 /* PlatDriOverrideHii.h */, - A5AAF6F9237F13B1009CD413 /* PlatformHasAcpi.h */, - A5AAF6FC237F13B1009CD413 /* RamDiskHii.h */, - A5AAF701237F13B1009CD413 /* RecoveryDevice.h */, - A5AAF712237F13B1009CD413 /* S3SmmInitDone.h */, - A5AAF715237F13B1009CD413 /* S3StorageDeviceInitList.h */, - A5AAF700237F13B1009CD413 /* SerialPortLibVendor.h */, - A5AAF719237F13B1009CD413 /* SmiHandlerProfile.h */, - A5AAF70C237F13B1009CD413 /* SmmLockBox.h */, - A5AAF6FA237F13B1009CD413 /* SmmVariableCommon.h */, - A5AAF710237F13B1009CD413 /* StandardErrorDevice.h */, - A5AAF725237F13B1009CD413 /* StatusCodeCallbackGuid.h */, - A5AAF713237F13B1009CD413 /* StatusCodeDataTypeDebug.h */, - A5AAF720237F13B1009CD413 /* StatusCodeDataTypeVariable.h */, - A5AAF6F5237F13B1009CD413 /* SystemNvDataGuid.h */, - A5AAF723237F13B1009CD413 /* TtyTerm.h */, - A5AAF704237F13B1009CD413 /* UsbKeyBoardLayout.h */, - A5AAF70A237F13B1009CD413 /* VarErrorFlag.h */, - A5AAF71E237F13B1009CD413 /* VariableFormat.h */, - A5AAF6FE237F13B1009CD413 /* VariableIndexTable.h */, - A5AAF718237F13B1009CD413 /* VlanConfigHii.h */, - A5AAF705237F13B1009CD413 /* ZeroGuid.h */, - ); - path = Guid; - sourceTree = ""; - }; - A5AAF72A237F13B1009CD413 /* Ppi */ = { - isa = PBXGroup; - children = ( - A5AAF732237F13B1009CD413 /* AtaAhciController.h */, - A5AAF731237F13B1009CD413 /* AtaController.h */, - A5AAF734237F13B1009CD413 /* AtaPassThru.h */, - A5AAF741237F13B1009CD413 /* CapsuleOnDisk.h */, - A5AAF72D237F13B1009CD413 /* Debug.h */, - A5AAF72F237F13B1009CD413 /* IoMmu.h */, - A5AAF735237F13B1009CD413 /* IpmiPpi.h */, - A5AAF73E237F13B1009CD413 /* NvmExpressHostController.h */, - A5AAF73B237F13B1009CD413 /* NvmExpressPassThru.h */, - A5AAF72C237F13B1009CD413 /* PlatformSpecificResetFilter.h */, - A5AAF733237F13B1009CD413 /* PlatformSpecificResetHandler.h */, - A5AAF737237F13B1009CD413 /* PlatformSpecificResetNotification.h */, - A5AAF742237F13B1009CD413 /* PostBootScriptTable.h */, - A5AAF72E237F13B1009CD413 /* SdMmcHostController.h */, - A5AAF743237F13B1009CD413 /* SecPerformance.h */, - A5AAF72B237F13B1009CD413 /* SerialPortPei.h */, - A5AAF740237F13B1009CD413 /* SmmAccess.h */, - A5AAF73A237F13B1009CD413 /* SmmCommunication.h */, - A5AAF739237F13B1009CD413 /* SmmControl.h */, - A5AAF738237F13B1009CD413 /* StorageSecurityCommand.h */, - A5AAF736237F13B1009CD413 /* UfsHostController.h */, - A5AAF730237F13B1009CD413 /* Usb2HostController.h */, - A5AAF73F237F13B1009CD413 /* UsbController.h */, - A5AAF73C237F13B1009CD413 /* UsbHostController.h */, - A5AAF73D237F13B1009CD413 /* UsbIo.h */, - ); - path = Ppi; - sourceTree = ""; - }; - A5AAF745237F13B1009CD413 /* Bus */ = { - isa = PBXGroup; - children = ( - A5AAF8EA237F13B2009CD413 /* Ata */, - A5AAF88B237F13B2009CD413 /* I2c */, - A5AAF84B237F13B2009CD413 /* Isa */, - A5AAF773237F13B2009CD413 /* Pci */, - A5AAF866237F13B2009CD413 /* Scsi */, - A5AAF746237F13B1009CD413 /* Sd */, - A5AAF875237F13B2009CD413 /* Ufs */, - A5AAF89A237F13B2009CD413 /* Usb */, - ); - path = Bus; - sourceTree = ""; - }; - A5AAF746237F13B1009CD413 /* Sd */ = { - isa = PBXGroup; - children = ( - A5AAF747237F13B1009CD413 /* SdBlockIoPei */, - A5AAF752237F13B2009CD413 /* EmmcBlockIoPei */, - A5AAF75D237F13B2009CD413 /* SdDxe */, - A5AAF768237F13B2009CD413 /* EmmcDxe */, - ); - path = Sd; - sourceTree = ""; - }; - A5AAF747237F13B1009CD413 /* SdBlockIoPei */ = { - isa = PBXGroup; - children = ( - A5AAF748237F13B1009CD413 /* SdBlockIoPei.c */, - A5AAF749237F13B1009CD413 /* SdHcMem.c */, - A5AAF74A237F13B2009CD413 /* SdBlockIoPeiExtra.uni */, - A5AAF74B237F13B2009CD413 /* SdHci.h */, - A5AAF74C237F13B2009CD413 /* SdBlockIoPei.uni */, - A5AAF74D237F13B2009CD413 /* SdBlockIoPei.inf */, - A5AAF74E237F13B2009CD413 /* SdHcMem.h */, - A5AAF74F237F13B2009CD413 /* SdBlockIoPei.h */, - A5AAF750237F13B2009CD413 /* DmaMem.c */, - A5AAF751237F13B2009CD413 /* SdHci.c */, - ); - path = SdBlockIoPei; - sourceTree = ""; - }; - A5AAF752237F13B2009CD413 /* EmmcBlockIoPei */ = { - isa = PBXGroup; - children = ( - A5AAF753237F13B2009CD413 /* EmmcHcMem.c */, - A5AAF754237F13B2009CD413 /* EmmcHci.c */, - A5AAF755237F13B2009CD413 /* EmmcBlockIoPei.c */, - A5AAF756237F13B2009CD413 /* EmmcBlockIoPeiExtra.uni */, - A5AAF757237F13B2009CD413 /* EmmcHcMem.h */, - A5AAF758237F13B2009CD413 /* EmmcHci.h */, - A5AAF759237F13B2009CD413 /* EmmcBlockIoPei.h */, - A5AAF75A237F13B2009CD413 /* DmaMem.c */, - A5AAF75B237F13B2009CD413 /* EmmcBlockIoPei.uni */, - A5AAF75C237F13B2009CD413 /* EmmcBlockIoPei.inf */, - ); - path = EmmcBlockIoPei; - sourceTree = ""; - }; - A5AAF75D237F13B2009CD413 /* SdDxe */ = { - isa = PBXGroup; - children = ( - A5AAF75E237F13B2009CD413 /* SdBlockIo.c */, - A5AAF75F237F13B2009CD413 /* SdDxe.uni */, - A5AAF760237F13B2009CD413 /* SdDxe.c */, - A5AAF761237F13B2009CD413 /* SdDxe.inf */, - A5AAF762237F13B2009CD413 /* ComponentName.c */, - A5AAF763237F13B2009CD413 /* SdDiskInfo.h */, - A5AAF764237F13B2009CD413 /* SdBlockIo.h */, - A5AAF765237F13B2009CD413 /* SdDxe.h */, - A5AAF766237F13B2009CD413 /* SdDxeExtra.uni */, - A5AAF767237F13B2009CD413 /* SdDiskInfo.c */, - ); - path = SdDxe; - sourceTree = ""; - }; - A5AAF768237F13B2009CD413 /* EmmcDxe */ = { - isa = PBXGroup; - children = ( - A5AAF769237F13B2009CD413 /* EmmcDxe.h */, - A5AAF76A237F13B2009CD413 /* EmmcDiskInfo.h */, - A5AAF76B237F13B2009CD413 /* EmmcDxe.uni */, - A5AAF76C237F13B2009CD413 /* EmmcBlockIo.c */, - A5AAF76D237F13B2009CD413 /* ComponentName.c */, - A5AAF76E237F13B2009CD413 /* EmmcDxe.inf */, - A5AAF76F237F13B2009CD413 /* EmmcDxe.c */, - A5AAF770237F13B2009CD413 /* EmmcDiskInfo.c */, - A5AAF771237F13B2009CD413 /* EmmcBlockIo.h */, - A5AAF772237F13B2009CD413 /* EmmcDxeExtra.uni */, - ); - path = EmmcDxe; - sourceTree = ""; - }; - A5AAF773237F13B2009CD413 /* Pci */ = { - isa = PBXGroup; - children = ( - A5AAF774237F13B2009CD413 /* IdeBusPei */, - A5AAF77A237F13B2009CD413 /* SdMmcPciHcDxe */, - A5AAF785237F13B2009CD413 /* IncompatiblePciDeviceSupportDxe */, - A5AAF78A237F13B2009CD413 /* PciBusDxe */, - A5AAF7AA237F13B2009CD413 /* XhciPei */, - A5AAF7B6237F13B2009CD413 /* EhciPei */, - A5AAF7C4237F13B2009CD413 /* UfsPciHcDxe */, - A5AAF7CB237F13B2009CD413 /* UhciDxe */, - A5AAF7DD237F13B2009CD413 /* NvmExpressPei */, - A5AAF7EE237F13B2009CD413 /* SdMmcPciHcPei */, - A5AAF7F4237F13B2009CD413 /* SataControllerDxe */, - A5AAF7FB237F13B2009CD413 /* PciSioSerialDxe */, - A5AAF803237F13B2009CD413 /* PciHostBridgeDxe */, - A5AAF80A237F13B2009CD413 /* XhciDxe */, - A5AAF818237F13B2009CD413 /* UhciPei */, - A5AAF81F237F13B2009CD413 /* NvmExpressDxe */, - A5AAF82D237F13B2009CD413 /* NonDiscoverablePciDeviceDxe */, - A5AAF833237F13B2009CD413 /* EhciDxe */, - A5AAF845237F13B2009CD413 /* UfsPciHcPei */, - ); - path = Pci; - sourceTree = ""; - }; - A5AAF774237F13B2009CD413 /* IdeBusPei */ = { - isa = PBXGroup; - children = ( - A5AAF775237F13B2009CD413 /* AtapiPeim.h */, - A5AAF776237F13B2009CD413 /* IdeBusPei.uni */, - A5AAF777237F13B2009CD413 /* IdeBusPeiExtra.uni */, - A5AAF778237F13B2009CD413 /* IdeBusPei.inf */, - A5AAF779237F13B2009CD413 /* AtapiPeim.c */, - ); - path = IdeBusPei; - sourceTree = ""; - }; - A5AAF77A237F13B2009CD413 /* SdMmcPciHcDxe */ = { - isa = PBXGroup; - children = ( - A5AAF77B237F13B2009CD413 /* SdMmcPciHci.c */, - A5AAF77C237F13B2009CD413 /* SdMmcPciHcDxeExtra.uni */, - A5AAF77D237F13B2009CD413 /* SdDevice.c */, - A5AAF77E237F13B2009CD413 /* ComponentName.c */, - A5AAF77F237F13B2009CD413 /* SdMmcPciHcDxe.h */, - A5AAF780237F13B2009CD413 /* SdMmcPciHci.h */, - A5AAF781237F13B2009CD413 /* EmmcDevice.c */, - A5AAF782237F13B2009CD413 /* SdMmcPciHcDxe.inf */, - A5AAF783237F13B2009CD413 /* SdMmcPciHcDxe.uni */, - A5AAF784237F13B2009CD413 /* SdMmcPciHcDxe.c */, - ); - path = SdMmcPciHcDxe; - sourceTree = ""; - }; - A5AAF785237F13B2009CD413 /* IncompatiblePciDeviceSupportDxe */ = { - isa = PBXGroup; - children = ( - A5AAF786237F13B2009CD413 /* IncompatiblePciDeviceSupportDxe.inf */, - A5AAF787237F13B2009CD413 /* IncompatiblePciDeviceSupportExtra.uni */, - A5AAF788237F13B2009CD413 /* IncompatiblePciDeviceSupport.uni */, - A5AAF789237F13B2009CD413 /* IncompatiblePciDeviceSupport.c */, - ); - path = IncompatiblePciDeviceSupportDxe; - sourceTree = ""; - }; - A5AAF78A237F13B2009CD413 /* PciBusDxe */ = { - isa = PBXGroup; - children = ( - A5AAF78B237F13B2009CD413 /* PciEnumerator.c */, - A5AAF78C237F13B2009CD413 /* PciDriverOverride.c */, - A5AAF78D237F13B2009CD413 /* PciResourceSupport.c */, - A5AAF78E237F13B2009CD413 /* PciDeviceSupport.c */, - A5AAF78F237F13B2009CD413 /* PciIo.c */, - A5AAF790237F13B2009CD413 /* PciCommand.c */, - A5AAF791237F13B2009CD413 /* PciHotPlugSupport.c */, - A5AAF792237F13B2009CD413 /* PciOptionRomSupport.h */, - A5AAF793237F13B2009CD413 /* PciRomTable.h */, - A5AAF794237F13B2009CD413 /* PciEnumeratorSupport.c */, - A5AAF795237F13B2009CD413 /* PciLib.h */, - A5AAF796237F13B2009CD413 /* PciBusDxeExtra.uni */, - A5AAF797237F13B2009CD413 /* ComponentName.c */, - A5AAF798237F13B2009CD413 /* PciBus.c */, - A5AAF799237F13B2009CD413 /* PciPowerManagement.c */, - A5AAF79A237F13B2009CD413 /* PciResourceSupport.h */, - A5AAF79B237F13B2009CD413 /* PciDriverOverride.h */, - A5AAF79C237F13B2009CD413 /* PciEnumerator.h */, - A5AAF79D237F13B2009CD413 /* PciCommand.h */, - A5AAF79E237F13B2009CD413 /* PciIo.h */, - A5AAF79F237F13B2009CD413 /* PciDeviceSupport.h */, - A5AAF7A0237F13B2009CD413 /* PciRomTable.c */, - A5AAF7A1237F13B2009CD413 /* PciBusDxe.inf */, - A5AAF7A2237F13B2009CD413 /* PciOptionRomSupport.c */, - A5AAF7A3237F13B2009CD413 /* PciHotPlugSupport.h */, - A5AAF7A4237F13B2009CD413 /* PciPowerManagement.h */, - A5AAF7A5237F13B2009CD413 /* PciBus.h */, - A5AAF7A6237F13B2009CD413 /* ComponentName.h */, - A5AAF7A7237F13B2009CD413 /* PciBusDxe.uni */, - A5AAF7A8237F13B2009CD413 /* PciEnumeratorSupport.h */, - A5AAF7A9237F13B2009CD413 /* PciLib.c */, - ); - path = PciBusDxe; - sourceTree = ""; - }; - A5AAF7AA237F13B2009CD413 /* XhciPei */ = { - isa = PBXGroup; - children = ( - A5AAF7AB237F13B2009CD413 /* XhciSched.h */, - A5AAF7AC237F13B2009CD413 /* XhciPei.inf */, - A5AAF7AD237F13B2009CD413 /* XhcPeim.h */, - A5AAF7AE237F13B2009CD413 /* XhciPei.uni */, - A5AAF7AF237F13B2009CD413 /* UsbHcMem.h */, - A5AAF7B0237F13B2009CD413 /* XhciSched.c */, - A5AAF7B1237F13B2009CD413 /* DmaMem.c */, - A5AAF7B2237F13B2009CD413 /* XhciPeiExtra.uni */, - A5AAF7B3237F13B2009CD413 /* UsbHcMem.c */, - A5AAF7B4237F13B2009CD413 /* XhciReg.h */, - A5AAF7B5237F13B2009CD413 /* XhcPeim.c */, - ); - path = XhciPei; - sourceTree = ""; - }; - A5AAF7B6237F13B2009CD413 /* EhciPei */ = { - isa = PBXGroup; - children = ( - A5AAF7B7237F13B2009CD413 /* EhciPeiExtra.uni */, - A5AAF7B8237F13B2009CD413 /* EhciUrb.h */, - A5AAF7B9237F13B2009CD413 /* EhcPeim.h */, - A5AAF7BA237F13B2009CD413 /* UsbHcMem.h */, - A5AAF7BB237F13B2009CD413 /* EhciSched.c */, - A5AAF7BC237F13B2009CD413 /* EhciPei.uni */, - A5AAF7BD237F13B2009CD413 /* EhciPei.inf */, - A5AAF7BE237F13B2009CD413 /* DmaMem.c */, - A5AAF7BF237F13B2009CD413 /* EhciReg.h */, - A5AAF7C0237F13B2009CD413 /* EhcPeim.c */, - A5AAF7C1237F13B2009CD413 /* EhciUrb.c */, - A5AAF7C2237F13B2009CD413 /* EhciSched.h */, - A5AAF7C3237F13B2009CD413 /* UsbHcMem.c */, - ); - path = EhciPei; - sourceTree = ""; - }; - A5AAF7C4237F13B2009CD413 /* UfsPciHcDxe */ = { - isa = PBXGroup; - children = ( - A5AAF7C5237F13B2009CD413 /* UfsPciHcDxeExtra.uni */, - A5AAF7C6237F13B2009CD413 /* ComponentName.c */, - A5AAF7C7237F13B2009CD413 /* UfsPciHcDxe.c */, - A5AAF7C8237F13B2009CD413 /* UfsPciHcDxe.uni */, - A5AAF7C9237F13B2009CD413 /* UfsPciHcDxe.h */, - A5AAF7CA237F13B2009CD413 /* UfsPciHcDxe.inf */, - ); - path = UfsPciHcDxe; - sourceTree = ""; - }; - A5AAF7CB237F13B2009CD413 /* UhciDxe */ = { - isa = PBXGroup; - children = ( - A5AAF7CC237F13B2009CD413 /* UhciSched.h */, - A5AAF7CD237F13B2009CD413 /* UhciReg.h */, - A5AAF7CE237F13B2009CD413 /* UhciDebug.c */, - A5AAF7CF237F13B2009CD413 /* UhciQueue.h */, - A5AAF7D0237F13B2009CD413 /* Uhci.c */, - A5AAF7D1237F13B2009CD413 /* UhciDxeExtra.uni */, - A5AAF7D2237F13B2009CD413 /* ComponentName.c */, - A5AAF7D3237F13B2009CD413 /* UsbHcMem.h */, - A5AAF7D4237F13B2009CD413 /* UhciSched.c */, - A5AAF7D5237F13B2009CD413 /* UhciDxe.inf */, - A5AAF7D6237F13B2009CD413 /* UhciDebug.h */, - A5AAF7D7237F13B2009CD413 /* UhciReg.c */, - A5AAF7D8237F13B2009CD413 /* UhciDxe.uni */, - A5AAF7D9237F13B2009CD413 /* UhciQueue.c */, - A5AAF7DA237F13B2009CD413 /* UsbHcMem.c */, - A5AAF7DB237F13B2009CD413 /* Uhci.h */, - A5AAF7DC237F13B2009CD413 /* ComponentName.h */, - ); - path = UhciDxe; - sourceTree = ""; - }; - A5AAF7DD237F13B2009CD413 /* NvmExpressPei */ = { - isa = PBXGroup; - children = ( - A5AAF7DE237F13B2009CD413 /* DevicePath.c */, - A5AAF7DF237F13B2009CD413 /* NvmExpressPeiHci.h */, - A5AAF7E0237F13B2009CD413 /* NvmExpressPeiStorageSecurity.h */, - A5AAF7E1237F13B2009CD413 /* NvmExpressPei.c */, - A5AAF7E2237F13B2009CD413 /* NvmExpressPeiBlockIo.c */, - A5AAF7E3237F13B2009CD413 /* NvmExpressPeiExtra.uni */, - A5AAF7E4237F13B2009CD413 /* NvmExpressPeiPassThru.h */, - A5AAF7E5237F13B2009CD413 /* NvmExpressPeiS3.c */, - A5AAF7E6237F13B2009CD413 /* NvmExpressPeiStorageSecurity.c */, - A5AAF7E7237F13B2009CD413 /* NvmExpressPei.h */, - A5AAF7E8237F13B2009CD413 /* NvmExpressPei.inf */, - A5AAF7E9237F13B2009CD413 /* NvmExpressPeiHci.c */, - A5AAF7EA237F13B2009CD413 /* NvmExpressPei.uni */, - A5AAF7EB237F13B2009CD413 /* NvmExpressPeiBlockIo.h */, - A5AAF7EC237F13B2009CD413 /* DmaMem.c */, - A5AAF7ED237F13B2009CD413 /* NvmExpressPeiPassThru.c */, - ); - path = NvmExpressPei; - sourceTree = ""; - }; - A5AAF7EE237F13B2009CD413 /* SdMmcPciHcPei */ = { - isa = PBXGroup; - children = ( - A5AAF7EF237F13B2009CD413 /* SdMmcPciHcPei.inf */, - A5AAF7F0237F13B2009CD413 /* SdMmcPciHcPei.c */, - A5AAF7F1237F13B2009CD413 /* SdMmcPciHcPei.uni */, - A5AAF7F2237F13B2009CD413 /* SdMmcPciHcPeiExtra.uni */, - A5AAF7F3237F13B2009CD413 /* SdMmcPciHcPei.h */, - ); - path = SdMmcPciHcPei; - sourceTree = ""; - }; - A5AAF7F4237F13B2009CD413 /* SataControllerDxe */ = { - isa = PBXGroup; - children = ( - A5AAF7F5237F13B2009CD413 /* SataController.c */, - A5AAF7F6237F13B2009CD413 /* SataControllerDxe.uni */, - A5AAF7F7237F13B2009CD413 /* SataControllerDxeExtra.uni */, - A5AAF7F8237F13B2009CD413 /* ComponentName.c */, - A5AAF7F9237F13B2009CD413 /* SataControllerDxe.inf */, - A5AAF7FA237F13B2009CD413 /* SataController.h */, - ); - path = SataControllerDxe; - sourceTree = ""; - }; - A5AAF7FB237F13B2009CD413 /* PciSioSerialDxe */ = { - isa = PBXGroup; - children = ( - A5AAF7FC237F13B2009CD413 /* PciSioSerialDxe.inf */, - A5AAF7FD237F13B2009CD413 /* Serial.c */, - A5AAF7FE237F13B2009CD413 /* SerialIo.c */, - A5AAF7FF237F13B2009CD413 /* PciSioSerialDxe.uni */, - A5AAF800237F13B2009CD413 /* PciSioSerialDxeExtra.uni */, - A5AAF801237F13B2009CD413 /* ComponentName.c */, - A5AAF802237F13B2009CD413 /* Serial.h */, - ); - path = PciSioSerialDxe; - sourceTree = ""; - }; - A5AAF803237F13B2009CD413 /* PciHostBridgeDxe */ = { - isa = PBXGroup; - children = ( - A5AAF804237F13B2009CD413 /* PciRootBridgeIo.c */, - A5AAF805237F13B2009CD413 /* PciHostResource.h */, - A5AAF806237F13B2009CD413 /* PciHostBridge.h */, - A5AAF807237F13B2009CD413 /* PciRootBridge.h */, - A5AAF808237F13B2009CD413 /* PciHostBridgeDxe.inf */, - A5AAF809237F13B2009CD413 /* PciHostBridge.c */, - ); - path = PciHostBridgeDxe; - sourceTree = ""; - }; - A5AAF80A237F13B2009CD413 /* XhciDxe */ = { - isa = PBXGroup; - children = ( - A5AAF80B237F13B2009CD413 /* XhciDxeExtra.uni */, - A5AAF80C237F13B2009CD413 /* XhciSched.h */, - A5AAF80D237F13B2009CD413 /* Xhci.c */, - A5AAF80E237F13B2009CD413 /* XhciReg.c */, - A5AAF80F237F13B2009CD413 /* ComponentName.c */, - A5AAF810237F13B2009CD413 /* UsbHcMem.h */, - A5AAF811237F13B2009CD413 /* XhciSched.c */, - A5AAF812237F13B2009CD413 /* XhciDxe.inf */, - A5AAF813237F13B2009CD413 /* XhciDxe.uni */, - A5AAF814237F13B2009CD413 /* Xhci.h */, - A5AAF815237F13B2009CD413 /* UsbHcMem.c */, - A5AAF816237F13B2009CD413 /* ComponentName.h */, - A5AAF817237F13B2009CD413 /* XhciReg.h */, - ); - path = XhciDxe; - sourceTree = ""; - }; - A5AAF818237F13B2009CD413 /* UhciPei */ = { - isa = PBXGroup; - children = ( - A5AAF819237F13B2009CD413 /* UhcPeim.c */, - A5AAF81A237F13B2009CD413 /* UhciPei.inf */, - A5AAF81B237F13B2009CD413 /* UhciPei.uni */, - A5AAF81C237F13B2009CD413 /* UhciPeiExtra.uni */, - A5AAF81D237F13B2009CD413 /* UhcPeim.h */, - A5AAF81E237F13B2009CD413 /* DmaMem.c */, - ); - path = UhciPei; - sourceTree = ""; - }; - A5AAF81F237F13B2009CD413 /* NvmExpressDxe */ = { - isa = PBXGroup; - children = ( - A5AAF820237F13B2009CD413 /* NvmExpressHci.c */, - A5AAF821237F13B2009CD413 /* NvmExpressPassthru.c */, - A5AAF822237F13B2009CD413 /* NvmExpressBlockIo.c */, - A5AAF823237F13B2009CD413 /* NvmExpressDxe.inf */, - A5AAF824237F13B2009CD413 /* NvmExpressDxe.uni */, - A5AAF825237F13B2009CD413 /* NvmExpress.c */, - A5AAF826237F13B2009CD413 /* NvmExpressDiskInfo.h */, - A5AAF827237F13B2009CD413 /* ComponentName.c */, - A5AAF828237F13B2009CD413 /* NvmExpressBlockIo.h */, - A5AAF829237F13B2009CD413 /* NvmExpressHci.h */, - A5AAF82A237F13B2009CD413 /* NvmExpressDxeExtra.uni */, - A5AAF82B237F13B2009CD413 /* NvmExpressDiskInfo.c */, - A5AAF82C237F13B2009CD413 /* NvmExpress.h */, - ); - path = NvmExpressDxe; - sourceTree = ""; - }; - A5AAF82D237F13B2009CD413 /* NonDiscoverablePciDeviceDxe */ = { - isa = PBXGroup; - children = ( - A5AAF82E237F13B2009CD413 /* NonDiscoverablePciDeviceDxe.inf */, - A5AAF82F237F13B2009CD413 /* NonDiscoverablePciDeviceIo.c */, - A5AAF830237F13B2009CD413 /* ComponentName.c */, - A5AAF831237F13B2009CD413 /* NonDiscoverablePciDeviceDxe.c */, - A5AAF832237F13B2009CD413 /* NonDiscoverablePciDeviceIo.h */, - ); - path = NonDiscoverablePciDeviceDxe; - sourceTree = ""; - }; - A5AAF833237F13B2009CD413 /* EhciDxe */ = { - isa = PBXGroup; - children = ( - A5AAF834237F13B2009CD413 /* EhciReg.c */, - A5AAF835237F13B2009CD413 /* EhciUrb.h */, - A5AAF836237F13B2009CD413 /* EhciDebug.h */, - A5AAF837237F13B2009CD413 /* EhciDxe.uni */, - A5AAF838237F13B2009CD413 /* Ehci.h */, - A5AAF839237F13B2009CD413 /* ComponentName.c */, - A5AAF83A237F13B2009CD413 /* EhciDxe.inf */, - A5AAF83B237F13B2009CD413 /* UsbHcMem.h */, - A5AAF83C237F13B2009CD413 /* EhciSched.c */, - A5AAF83D237F13B2009CD413 /* EhciDxeExtra.uni */, - A5AAF83E237F13B2009CD413 /* Ehci.c */, - A5AAF83F237F13B2009CD413 /* EhciDebug.c */, - A5AAF840237F13B2009CD413 /* EhciReg.h */, - A5AAF841237F13B2009CD413 /* EhciUrb.c */, - A5AAF842237F13B2009CD413 /* EhciSched.h */, - A5AAF843237F13B2009CD413 /* UsbHcMem.c */, - A5AAF844237F13B2009CD413 /* ComponentName.h */, - ); - path = EhciDxe; - sourceTree = ""; - }; - A5AAF845237F13B2009CD413 /* UfsPciHcPei */ = { - isa = PBXGroup; - children = ( - A5AAF846237F13B2009CD413 /* UfsPciHcPei.uni */, - A5AAF847237F13B2009CD413 /* UfsPciHcPei.inf */, - A5AAF848237F13B2009CD413 /* UfsPciHcPei.h */, - A5AAF849237F13B2009CD413 /* UfsPciHcPeiExtra.uni */, - A5AAF84A237F13B2009CD413 /* UfsPciHcPei.c */, - ); - path = UfsPciHcPei; - sourceTree = ""; - }; - A5AAF84B237F13B2009CD413 /* Isa */ = { - isa = PBXGroup; - children = ( - A5AAF84C237F13B2009CD413 /* IsaBusDxe */, - A5AAF854237F13B2009CD413 /* Ps2KeyboardDxe */, - A5AAF85D237F13B2009CD413 /* Ps2MouseDxe */, - ); - path = Isa; - sourceTree = ""; - }; - A5AAF84C237F13B2009CD413 /* IsaBusDxe */ = { - isa = PBXGroup; - children = ( - A5AAF84D237F13B2009CD413 /* IsaBusDxeExtra.uni */, - A5AAF84E237F13B2009CD413 /* ComponentName.c */, - A5AAF84F237F13B2009CD413 /* IsaBusDxe.h */, - A5AAF850237F13B2009CD413 /* IsaBusDxe.inf */, - A5AAF851237F13B2009CD413 /* IsaBusDxe.uni */, - A5AAF852237F13B2009CD413 /* IsaBusDxe.c */, - A5AAF853237F13B2009CD413 /* ComponentName.h */, - ); - path = IsaBusDxe; - sourceTree = ""; - }; - A5AAF854237F13B2009CD413 /* Ps2KeyboardDxe */ = { - isa = PBXGroup; - children = ( - A5AAF855237F13B2009CD413 /* Ps2KbdTextIn.c */, - A5AAF856237F13B2009CD413 /* Ps2KeyboardDxeExtra.uni */, - A5AAF857237F13B2009CD413 /* Ps2Keyboard.c */, - A5AAF858237F13B2009CD413 /* Ps2KbdCtrller.c */, - A5AAF859237F13B2009CD413 /* ComponentName.c */, - A5AAF85A237F13B2009CD413 /* Ps2KeyboardDxe.inf */, - A5AAF85B237F13B2009CD413 /* Ps2KeyboardDxe.uni */, - A5AAF85C237F13B2009CD413 /* Ps2Keyboard.h */, - ); - path = Ps2KeyboardDxe; - sourceTree = ""; - }; - A5AAF85D237F13B2009CD413 /* Ps2MouseDxe */ = { - isa = PBXGroup; - children = ( - A5AAF85E237F13B2009CD413 /* Ps2Mouse.c */, - A5AAF85F237F13B2009CD413 /* ComponentName.c */, - A5AAF860237F13B2009CD413 /* CommPs2.h */, - A5AAF861237F13B2009CD413 /* Ps2Mouse.h */, - A5AAF862237F13B2009CD413 /* Ps2MouseDxeExtra.uni */, - A5AAF863237F13B2009CD413 /* Ps2MouseDxe.inf */, - A5AAF864237F13B2009CD413 /* CommPs2.c */, - A5AAF865237F13B2009CD413 /* Ps2MouseDxe.uni */, - ); - path = Ps2MouseDxe; - sourceTree = ""; - }; - A5AAF866237F13B2009CD413 /* Scsi */ = { - isa = PBXGroup; - children = ( - A5AAF867237F13B2009CD413 /* ScsiDiskDxe */, - A5AAF86E237F13B2009CD413 /* ScsiBusDxe */, - ); - path = Scsi; - sourceTree = ""; - }; - A5AAF867237F13B2009CD413 /* ScsiDiskDxe */ = { - isa = PBXGroup; - children = ( - A5AAF868237F13B2009CD413 /* ScsiDiskDxe.inf */, - A5AAF869237F13B2009CD413 /* ScsiDisk.c */, - A5AAF86A237F13B2009CD413 /* ComponentName.c */, - A5AAF86B237F13B2009CD413 /* ScsiDisk.uni */, - A5AAF86C237F13B2009CD413 /* ScsiDiskExtra.uni */, - A5AAF86D237F13B2009CD413 /* ScsiDisk.h */, - ); - path = ScsiDiskDxe; - sourceTree = ""; - }; - A5AAF86E237F13B2009CD413 /* ScsiBusDxe */ = { - isa = PBXGroup; - children = ( - A5AAF86F237F13B2009CD413 /* ScsiBusExtra.uni */, - A5AAF870237F13B2009CD413 /* ScsiBus.c */, - A5AAF871237F13B2009CD413 /* ComponentName.c */, - A5AAF872237F13B2009CD413 /* ScsiBus.uni */, - A5AAF873237F13B2009CD413 /* ScsiBusDxe.inf */, - A5AAF874237F13B2009CD413 /* ScsiBus.h */, - ); - path = ScsiBusDxe; - sourceTree = ""; - }; - A5AAF875237F13B2009CD413 /* Ufs */ = { - isa = PBXGroup; - children = ( - A5AAF876237F13B2009CD413 /* UfsBlockIoPei */, - A5AAF881237F13B2009CD413 /* UfsPassThruDxe */, - ); - path = Ufs; - sourceTree = ""; - }; - A5AAF876237F13B2009CD413 /* UfsBlockIoPei */ = { - isa = PBXGroup; - children = ( - A5AAF877237F13B2009CD413 /* UfsBlockIoPei.inf */, - A5AAF878237F13B2009CD413 /* UfsHcMem.c */, - A5AAF879237F13B2009CD413 /* UfsBlockIoPeiExtra.uni */, - A5AAF87A237F13B2009CD413 /* UfsHci.c */, - A5AAF87B237F13B2009CD413 /* UfsBlockIoPei.uni */, - A5AAF87C237F13B2009CD413 /* UfsBlockIoPei.c */, - A5AAF87D237F13B2009CD413 /* UfsHcMem.h */, - A5AAF87E237F13B2009CD413 /* UfsHci.h */, - A5AAF87F237F13B2009CD413 /* UfsBlockIoPei.h */, - A5AAF880237F13B2009CD413 /* DmaMem.c */, - ); - path = UfsBlockIoPei; - sourceTree = ""; - }; - A5AAF881237F13B2009CD413 /* UfsPassThruDxe */ = { - isa = PBXGroup; - children = ( - A5AAF882237F13B2009CD413 /* UfsPassThru.uni */, - A5AAF883237F13B2009CD413 /* UfsPassThruHci.c */, - A5AAF884237F13B2009CD413 /* UfsPassThru.h */, - A5AAF885237F13B2009CD413 /* ComponentName.c */, - A5AAF886237F13B2009CD413 /* UfsDevConfigProtocol.c */, - A5AAF887237F13B2009CD413 /* UfsPassThruHci.h */, - A5AAF888237F13B2009CD413 /* UfsPassThruDxe.inf */, - A5AAF889237F13B2009CD413 /* UfsPassThruExtra.uni */, - A5AAF88A237F13B2009CD413 /* UfsPassThru.c */, - ); - path = UfsPassThruDxe; - sourceTree = ""; - }; - A5AAF88B237F13B2009CD413 /* I2c */ = { - isa = PBXGroup; - children = ( - A5AAF88C237F13B2009CD413 /* I2cDxe */, - ); - path = I2c; - sourceTree = ""; - }; - A5AAF88C237F13B2009CD413 /* I2cDxe */ = { - isa = PBXGroup; - children = ( - A5AAF88D237F13B2009CD413 /* I2cBusDxeExtra.uni */, - A5AAF88E237F13B2009CD413 /* I2cDxeExtra.uni */, - A5AAF88F237F13B2009CD413 /* I2cDxe.inf */, - A5AAF890237F13B2009CD413 /* I2cBus.c */, - A5AAF891237F13B2009CD413 /* I2cDxe.h */, - A5AAF892237F13B2009CD413 /* I2cDxe.uni */, - A5AAF893237F13B2009CD413 /* I2cHost.c */, - A5AAF894237F13B2009CD413 /* I2cBusDxe.uni */, - A5AAF895237F13B2009CD413 /* I2cBusDxe.inf */, - A5AAF896237F13B2009CD413 /* I2cHostDxe.inf */, - A5AAF897237F13B2009CD413 /* I2cHostDxeExtra.uni */, - A5AAF898237F13B2009CD413 /* I2cDxe.c */, - A5AAF899237F13B2009CD413 /* I2cHostDxe.uni */, - ); - path = I2cDxe; - sourceTree = ""; - }; - A5AAF89A237F13B2009CD413 /* Usb */ = { - isa = PBXGroup; - children = ( - A5AAF89B237F13B2009CD413 /* UsbMouseDxe */, - A5AAF8A3237F13B2009CD413 /* UsbMouseAbsolutePointerDxe */, - A5AAF8AB237F13B2009CD413 /* UsbBusDxe */, - A5AAF8BA237F13B2009CD413 /* UsbKbDxe */, - A5AAF8C3237F13B2009CD413 /* UsbBusPei */, - A5AAF8CE237F13B2009CD413 /* UsbBotPei */, - A5AAF8DA237F13B2009CD413 /* UsbMassStorageDxe */, - ); - path = Usb; - sourceTree = ""; - }; - A5AAF89B237F13B2009CD413 /* UsbMouseDxe */ = { - isa = PBXGroup; - children = ( - A5AAF89C237F13B2009CD413 /* UsbMouseDxeExtra.uni */, - A5AAF89D237F13B2009CD413 /* UsbMouse.h */, - A5AAF89E237F13B2009CD413 /* ComponentName.c */, - A5AAF89F237F13B2009CD413 /* UsbMouseDxe.inf */, - A5AAF8A0237F13B2009CD413 /* UsbMouse.c */, - A5AAF8A1237F13B2009CD413 /* MouseHid.c */, - A5AAF8A2237F13B2009CD413 /* UsbMouseDxe.uni */, - ); - path = UsbMouseDxe; - sourceTree = ""; - }; - A5AAF8A3237F13B2009CD413 /* UsbMouseAbsolutePointerDxe */ = { - isa = PBXGroup; - children = ( - A5AAF8A4237F13B2009CD413 /* UsbMouseAbsolutePointerDxeExtra.uni */, - A5AAF8A5237F13B2009CD413 /* UsbMouseAbsolutePointer.c */, - A5AAF8A6237F13B2009CD413 /* UsbMouseAbsolutePointerDxe.inf */, - A5AAF8A7237F13B2009CD413 /* ComponentName.c */, - A5AAF8A8237F13B2009CD413 /* UsbMouseAbsolutePointerDxe.uni */, - A5AAF8A9237F13B2009CD413 /* UsbMouseAbsolutePointer.h */, - A5AAF8AA237F13B2009CD413 /* MouseHid.c */, - ); - path = UsbMouseAbsolutePointerDxe; - sourceTree = ""; - }; - A5AAF8AB237F13B2009CD413 /* UsbBusDxe */ = { - isa = PBXGroup; - children = ( - A5AAF8AC237F13B2009CD413 /* UsbEnumer.h */, - A5AAF8AD237F13B2009CD413 /* UsbBusDxe.uni */, - A5AAF8AE237F13B2009CD413 /* UsbDesc.c */, - A5AAF8AF237F13B2009CD413 /* UsbBusDxe.inf */, - A5AAF8B0237F13B2009CD413 /* UsbHub.h */, - A5AAF8B1237F13B2009CD413 /* UsbBus.c */, - A5AAF8B2237F13B2009CD413 /* ComponentName.c */, - A5AAF8B3237F13B2009CD413 /* UsbUtility.h */, - A5AAF8B4237F13B2009CD413 /* UsbEnumer.c */, - A5AAF8B5237F13B2009CD413 /* UsbBusDxeExtra.uni */, - A5AAF8B6237F13B2009CD413 /* UsbDesc.h */, - A5AAF8B7237F13B2009CD413 /* UsbHub.c */, - A5AAF8B8237F13B2009CD413 /* UsbUtility.c */, - A5AAF8B9237F13B2009CD413 /* UsbBus.h */, - ); - path = UsbBusDxe; - sourceTree = ""; - }; - A5AAF8BA237F13B2009CD413 /* UsbKbDxe */ = { - isa = PBXGroup; - children = ( - A5AAF8BB237F13B2009CD413 /* UsbKbDxeExtra.uni */, - A5AAF8BC237F13B2009CD413 /* KeyBoard.c */, - A5AAF8BD237F13B2009CD413 /* UsbKbDxe.inf */, - A5AAF8BE237F13B2009CD413 /* EfiKey.h */, - A5AAF8BF237F13B2009CD413 /* UsbKbDxe.uni */, - A5AAF8C0237F13B2009CD413 /* ComponentName.c */, - A5AAF8C1237F13B2009CD413 /* KeyBoard.h */, - A5AAF8C2237F13B2009CD413 /* EfiKey.c */, - ); - path = UsbKbDxe; - sourceTree = ""; - }; - A5AAF8C3237F13B2009CD413 /* UsbBusPei */ = { - isa = PBXGroup; - children = ( - A5AAF8C4237F13B2009CD413 /* PeiUsbLib.c */, - A5AAF8C5237F13B2009CD413 /* HubPeim.h */, - A5AAF8C6237F13B2009CD413 /* UsbBusPeiExtra.uni */, - A5AAF8C7237F13B2009CD413 /* UsbPeim.h */, - A5AAF8C8237F13B2009CD413 /* UsbIoPeim.c */, - A5AAF8C9237F13B2009CD413 /* PeiUsbLib.h */, - A5AAF8CA237F13B2009CD413 /* HubPeim.c */, - A5AAF8CB237F13B2009CD413 /* UsbBusPei.uni */, - A5AAF8CC237F13B2009CD413 /* UsbPeim.c */, - A5AAF8CD237F13B2009CD413 /* UsbBusPei.inf */, - ); - path = UsbBusPei; - sourceTree = ""; - }; - A5AAF8CE237F13B2009CD413 /* UsbBotPei */ = { - isa = PBXGroup; - children = ( - A5AAF8CF237F13B2009CD413 /* PeiUsbLib.c */, - A5AAF8D0237F13B2009CD413 /* UsbBotPeiExtra.uni */, - A5AAF8D1237F13B2009CD413 /* UsbBotPeim.h */, - A5AAF8D2237F13B2009CD413 /* UsbPeim.h */, - A5AAF8D3237F13B2009CD413 /* BotPeim.c */, - A5AAF8D4237F13B2009CD413 /* UsbBotPei.inf */, - A5AAF8D5237F13B2009CD413 /* PeiUsbLib.h */, - A5AAF8D6237F13B2009CD413 /* PeiAtapi.c */, - A5AAF8D7237F13B2009CD413 /* UsbBotPei.uni */, - A5AAF8D8237F13B2009CD413 /* UsbBotPeim.c */, - A5AAF8D9237F13B2009CD413 /* BotPeim.h */, - ); - path = UsbBotPei; - sourceTree = ""; - }; - A5AAF8DA237F13B2009CD413 /* UsbMassStorageDxe */ = { - isa = PBXGroup; - children = ( - A5AAF8DB237F13B2009CD413 /* UsbMassDiskInfo.c */, - A5AAF8DC237F13B2009CD413 /* UsbMassCbi.h */, - A5AAF8DD237F13B2009CD413 /* UsbMassImpl.h */, - A5AAF8DE237F13B2009CD413 /* UsbMassBoot.c */, - A5AAF8DF237F13B2009CD413 /* UsbMassBot.h */, - A5AAF8E0237F13B2009CD413 /* UsbMassStorageDxe.uni */, - A5AAF8E1237F13B2009CD413 /* UsbMassStorageDxeExtra.uni */, - A5AAF8E2237F13B2009CD413 /* UsbMassStorageDxe.inf */, - A5AAF8E3237F13B2009CD413 /* ComponentName.c */, - A5AAF8E4237F13B2009CD413 /* UsbMassCbi.c */, - A5AAF8E5237F13B2009CD413 /* UsbMass.h */, - A5AAF8E6237F13B2009CD413 /* UsbMassImpl.c */, - A5AAF8E7237F13B2009CD413 /* UsbMassDiskInfo.h */, - A5AAF8E8237F13B2009CD413 /* UsbMassBoot.h */, - A5AAF8E9237F13B2009CD413 /* UsbMassBot.c */, - ); - path = UsbMassStorageDxe; - sourceTree = ""; - }; - A5AAF8EA237F13B2009CD413 /* Ata */ = { - isa = PBXGroup; - children = ( - A5AAF8EB237F13B2009CD413 /* AhciPei */, - A5AAF8FB237F13B2009CD413 /* AtaAtapiPassThru */, - A5AAF906237F13B2009CD413 /* AtaBusDxe */, - ); - path = Ata; - sourceTree = ""; - }; - A5AAF8EB237F13B2009CD413 /* AhciPei */ = { - isa = PBXGroup; - children = ( - A5AAF8EC237F13B2009CD413 /* DevicePath.c */, - A5AAF8ED237F13B2009CD413 /* AhciPei.inf */, - A5AAF8EE237F13B2009CD413 /* AhciPei.h */, - A5AAF8EF237F13B2009CD413 /* AhciPeiBlockIo.c */, - A5AAF8F0237F13B2009CD413 /* AhciPei.uni */, - A5AAF8F1237F13B2009CD413 /* AhciPeiPassThru.c */, - A5AAF8F2237F13B2009CD413 /* AhciPeiExtra.uni */, - A5AAF8F3237F13B2009CD413 /* AhciPeiStorageSecurity.c */, - A5AAF8F4237F13B2009CD413 /* AhciPeiBlockIo.h */, - A5AAF8F5237F13B2009CD413 /* AhciPei.c */, - A5AAF8F6237F13B2009CD413 /* AhciPeiPassThru.h */, - A5AAF8F7237F13B2009CD413 /* DmaMem.c */, - A5AAF8F8237F13B2009CD413 /* AhciPeiStorageSecurity.h */, - A5AAF8F9237F13B2009CD413 /* AhciMode.c */, - A5AAF8FA237F13B2009CD413 /* AhciPeiS3.c */, - ); - path = AhciPei; - sourceTree = ""; - }; - A5AAF8FB237F13B2009CD413 /* AtaAtapiPassThru */ = { - isa = PBXGroup; - children = ( - A5AAF8FC237F13B2009CD413 /* AtaAtapiPassThru.h */, - A5AAF8FD237F13B2009CD413 /* AhciMode.h */, - A5AAF8FE237F13B2009CD413 /* ComponentName.c */, - A5AAF8FF237F13B2009CD413 /* AtaAtapiPassThru.inf */, - A5AAF900237F13B2009CD413 /* IdeMode.c */, - A5AAF901237F13B2009CD413 /* AtaAtapiPassThruDxeExtra.uni */, - A5AAF902237F13B2009CD413 /* AtaAtapiPassThru.c */, - A5AAF903237F13B2009CD413 /* AtaAtapiPassThruDxe.uni */, - A5AAF904237F13B2009CD413 /* IdeMode.h */, - A5AAF905237F13B2009CD413 /* AhciMode.c */, - ); - path = AtaAtapiPassThru; - sourceTree = ""; - }; - A5AAF906237F13B2009CD413 /* AtaBusDxe */ = { - isa = PBXGroup; - children = ( - A5AAF907237F13B2009CD413 /* AtaBusDxe.inf */, - A5AAF908237F13B2009CD413 /* AtaPassThruExecute.c */, - A5AAF909237F13B2009CD413 /* AtaBusDxe.uni */, - A5AAF90A237F13B2009CD413 /* ComponentName.c */, - A5AAF90B237F13B2009CD413 /* AtaBus.h */, - A5AAF90C237F13B2009CD413 /* AtaBusDxeExtra.uni */, - A5AAF90D237F13B2009CD413 /* AtaBus.c */, - ); - path = AtaBusDxe; - sourceTree = ""; - }; - A5AAF90E237F13B2009CD413 /* Library */ = { - isa = PBXGroup; - children = ( - A5AAF990237F13B2009CD413 /* AuthVariableLibNull */, - A5AAFAAB237F13B3009CD413 /* BaseBmpSupportLib */, - A5AAFA2E237F13B2009CD413 /* BaseHobLibNull */, - A5AAF963237F13B2009CD413 /* BaseIpmiLibNull */, - A5AAF9F8237F13B2009CD413 /* BaseMemoryAllocationLibNull */, - A5AAF9C8237F13B2009CD413 /* BasePlatformHookLibNull */, - A5AAF9CC237F13B2009CD413 /* BaseResetSystemLibNull */, - A5AAFA2A237F13B2009CD413 /* BaseSerialPortLib16550 */, - A5AAFABA237F13B3009CD413 /* BaseSortLib */, - A5AAF928237F13B2009CD413 /* BootLogoLib */, - A5AAFA14237F13B2009CD413 /* BootMaintenanceManagerUiLib */, - A5AAFAA4237F13B3009CD413 /* BootManagerUiLib */, - A5AAFA42237F13B2009CD413 /* BrotliCustomDecompressLib */, - A5AAFAAF237F13B3009CD413 /* CpuExceptionHandlerLibNull */, - A5AAFA00237F13B2009CD413 /* CustomizedDisplayLib */, - A5AAFA0C237F13B2009CD413 /* DebugAgentLibNull */, - A5AAF95C237F13B2009CD413 /* DeviceManagerUiLib */, - A5AAF98C237F13B2009CD413 /* DisplayUpdateProgressLibGraphics */, - A5AAF9FC237F13B2009CD413 /* DisplayUpdateProgressLibText */, - A5AAF90F237F13B2009CD413 /* DxeCapsuleLibFmp */, - A5AAFA36237F13B2009CD413 /* DxeCapsuleLibNull */, - A5AAFA9A237F13B3009CD413 /* DxeCoreMemoryAllocationLib */, - A5AAFABE237F13B3009CD413 /* DxeCorePerformanceLib */, - A5AAF924237F13B2009CD413 /* DxeCrc32GuidedSectionExtractLib */, - A5AAFA3A237F13B2009CD413 /* DxeDebugPrintErrorLevelLib */, - A5AAF9B8237F13B2009CD413 /* DxeFileExplorerProtocol */, - A5AAF9C3237F13B2009CD413 /* DxeHttpLib */, - A5AAF984237F13B2009CD413 /* DxeIpmiLibIpmiProtocol */, - A5AAF977237F13B2009CD413 /* DxeNetLib */, - A5AAF9AB237F13B2009CD413 /* DxePerformanceLib */, - A5AAFA96237F13B3009CD413 /* DxePrintLibPrint2Protocol */, - A5AAFA77237F13B3009CD413 /* DxeReportStatusCodeLib */, - A5AAFAC3237F13B3009CD413 /* DxeResetSystemLib */, - A5AAFA88237F13B3009CD413 /* DxeSecurityManagementLib */, - A5AAF97C237F13B2009CD413 /* FileExplorerLib */, - A5AAF930237F13B2009CD413 /* FmpAuthenticationLibNull */, - A5AAF9D3237F13B2009CD413 /* FrameBufferBltLib */, - A5AAF92C237F13B2009CD413 /* LockBoxNullLib */, - A5AAF940237F13B2009CD413 /* LzmaCustomDecompressLib */, - A5AAF9D0237F13B2009CD413 /* NonDiscoverableDeviceRegistrationLib */, - A5AAF920237F13B2009CD413 /* OemHookStatusCodeLibNull */, - A5AAF9D6237F13B2009CD413 /* PciHostBridgeLibNull */, - A5AAF967237F13B2009CD413 /* PeiCrc32GuidedSectionExtractLib */, - A5AAFA70237F13B3009CD413 /* PeiDebugLibDebugPpi */, - A5AAF9E2237F13B2009CD413 /* PeiDebugPrintHobLib */, - A5AAF9DA237F13B2009CD413 /* PeiDxeDebugLibReportStatusCode */, - A5AAF93C237F13B2009CD413 /* PeiIpmiLibIpmiPpi */, - A5AAF99C237F13B2009CD413 /* PeiPerformanceLib */, - A5AAF998237F13B2009CD413 /* PeiReportStatusCodeLib */, - A5AAFAC7237F13B3009CD413 /* PeiResetSystemLib */, - A5AAF9BC237F13B2009CD413 /* PiDxeS3BootScriptLib */, - A5AAFA8C237F13B3009CD413 /* PiSmmCoreMemoryAllocationLib */, - A5AAFA3E237F13B2009CD413 /* PiSmmCoreSmmServicesTableLib */, - A5AAF9B4237F13B2009CD413 /* PlatformBootManagerLibNull */, - A5AAFA26237F13B2009CD413 /* PlatformHookLibSerialPortPpi */, - A5AAF934237F13B2009CD413 /* PlatformVarCleanupLib */, - A5AAFA63237F13B3009CD413 /* ResetUtilityLib */, - A5AAF9E6237F13B2009CD413 /* RuntimeDxeReportStatusCodeLib */, - A5AAFA7F237F13B3009CD413 /* RuntimeResetSystemLib */, - A5AAFA66237F13B3009CD413 /* SmmCorePerformanceLib */, - A5AAFA08237F13B2009CD413 /* SmmCorePlatformHookLibNull */, - A5AAF91C237F13B2009CD413 /* SmmIpmiLibSmmIpmiProtocol */, - A5AAF9A0237F13B2009CD413 /* SmmLockBoxLib */, - A5AAF9AF237F13B2009CD413 /* SmmMemoryAllocationProfileLib */, - A5AAFA32237F13B2009CD413 /* SmmPerformanceLib */, - A5AAF994237F13B2009CD413 /* SmmReportStatusCodeLib */, - A5AAFA73237F13B3009CD413 /* SmmSmiHandlerProfileLib */, - A5AAF9DE237F13B2009CD413 /* TpmMeasurementLibNull */, - A5AAF96B237F13B2009CD413 /* UefiBootManagerLib */, - A5AAFAB3237F13B3009CD413 /* UefiHiiLib */, - A5AAFA10237F13B2009CD413 /* UefiHiiServicesLib */, - A5AAFA6B237F13B3009CD413 /* UefiMemoryAllocationProfileLib */, - A5AAF9EA237F13B2009CD413 /* UefiSortLib */, - A5AAF9EE237F13B2009CD413 /* VarCheckHiiLib */, - A5AAF988237F13B2009CD413 /* VarCheckLib */, - A5AAFA83237F13B3009CD413 /* VarCheckPcdLib */, - A5AAFA7B237F13B3009CD413 /* VarCheckUefiLib */, - ); - path = Library; - sourceTree = ""; - }; - A5AAF90F237F13B2009CD413 /* DxeCapsuleLibFmp */ = { - isa = PBXGroup; - children = ( - A5AAF910237F13B2009CD413 /* DxeCapsuleRuntime.c */, - A5AAF911237F13B2009CD413 /* CapsuleOnDisk.c */, - A5AAF912237F13B2009CD413 /* DxeCapsuleProcessLibNull.c */, - A5AAF913237F13B2009CD413 /* DxeCapsuleReportLibNull.c */, - A5AAF914237F13B2009CD413 /* DxeCapsuleProcessLib.c */, - A5AAF915237F13B2009CD413 /* DxeCapsuleReportLib.c */, - A5AAF916237F13B2009CD413 /* CapsuleOnDisk.h */, - A5AAF917237F13B2009CD413 /* DxeRuntimeCapsuleLib.inf */, - A5AAF918237F13B2009CD413 /* DxeCapsuleLib.uni */, - A5AAF919237F13B2009CD413 /* DxeCapsuleLib.c */, - A5AAF91A237F13B2009CD413 /* DxeRuntimeCapsuleLib.uni */, - A5AAF91B237F13B2009CD413 /* DxeCapsuleLib.inf */, - ); - path = DxeCapsuleLibFmp; - sourceTree = ""; - }; - A5AAF91C237F13B2009CD413 /* SmmIpmiLibSmmIpmiProtocol */ = { - isa = PBXGroup; - children = ( - A5AAF91D237F13B2009CD413 /* SmmIpmiLibSmmIpmiProtocol.c */, - A5AAF91E237F13B2009CD413 /* SmmIpmiLibSmmIpmiProtocol.inf */, - A5AAF91F237F13B2009CD413 /* SmmIpmiLibSmmIpmiProtocol.uni */, - ); - path = SmmIpmiLibSmmIpmiProtocol; - sourceTree = ""; - }; - A5AAF920237F13B2009CD413 /* OemHookStatusCodeLibNull */ = { - isa = PBXGroup; - children = ( - A5AAF921237F13B2009CD413 /* OemHookStatusCodeLibNull.inf */, - A5AAF922237F13B2009CD413 /* OemHookStatusCodeLibNull.c */, - A5AAF923237F13B2009CD413 /* OemHookStatusCodeLibNull.uni */, - ); - path = OemHookStatusCodeLibNull; - sourceTree = ""; - }; - A5AAF924237F13B2009CD413 /* DxeCrc32GuidedSectionExtractLib */ = { - isa = PBXGroup; - children = ( - A5AAF925237F13B2009CD413 /* DxeCrc32GuidedSectionExtractLib.c */, - A5AAF926237F13B2009CD413 /* DxeCrc32GuidedSectionExtractLib.inf */, - A5AAF927237F13B2009CD413 /* DxeCrc32GuidedSectionExtractLib.uni */, - ); - path = DxeCrc32GuidedSectionExtractLib; - sourceTree = ""; - }; - A5AAF928237F13B2009CD413 /* BootLogoLib */ = { - isa = PBXGroup; - children = ( - A5AAF929237F13B2009CD413 /* BootLogoLib.c */, - A5AAF92A237F13B2009CD413 /* BootLogoLib.inf */, - A5AAF92B237F13B2009CD413 /* BootLogoLib.uni */, - ); - path = BootLogoLib; - sourceTree = ""; - }; - A5AAF92C237F13B2009CD413 /* LockBoxNullLib */ = { - isa = PBXGroup; - children = ( - A5AAF92D237F13B2009CD413 /* LockBoxNullLib.inf */, - A5AAF92E237F13B2009CD413 /* LockBoxNullLib.c */, - A5AAF92F237F13B2009CD413 /* LockBoxNullLib.uni */, - ); - path = LockBoxNullLib; - sourceTree = ""; - }; - A5AAF930237F13B2009CD413 /* FmpAuthenticationLibNull */ = { - isa = PBXGroup; - children = ( - A5AAF931237F13B2009CD413 /* FmpAuthenticationLibNull.c */, - A5AAF932237F13B2009CD413 /* FmpAuthenticationLibNull.inf */, - A5AAF933237F13B2009CD413 /* FmpAuthenticationLibNull.uni */, - ); - path = FmpAuthenticationLibNull; - sourceTree = ""; - }; - A5AAF934237F13B2009CD413 /* PlatformVarCleanupLib */ = { - isa = PBXGroup; - children = ( - A5AAF935237F13B2009CD413 /* PlatVarCleanup.vfr */, - A5AAF936237F13B2009CD413 /* PlatVarCleanupLib.c */, - A5AAF937237F13B2009CD413 /* PlatVarCleanup.h */, - A5AAF938237F13B2009CD413 /* PlatformVarCleanupLib.inf */, - A5AAF939237F13B2009CD413 /* PlatVarCleanupHii.h */, - A5AAF93A237F13B2009CD413 /* VfrStrings.uni */, - A5AAF93B237F13B2009CD413 /* PlatformVarCleanupLib.uni */, - ); - path = PlatformVarCleanupLib; - sourceTree = ""; - }; - A5AAF93C237F13B2009CD413 /* PeiIpmiLibIpmiPpi */ = { - isa = PBXGroup; - children = ( - A5AAF93D237F13B2009CD413 /* PeiIpmiLibIpmiPpi.c */, - A5AAF93E237F13B2009CD413 /* PeiIpmiLibIpmiPpi.inf */, - A5AAF93F237F13B2009CD413 /* PeiIpmiLibIpmiPpi.uni */, - ); - path = PeiIpmiLibIpmiPpi; - sourceTree = ""; - }; - A5AAF940237F13B2009CD413 /* LzmaCustomDecompressLib */ = { - isa = PBXGroup; - children = ( - A5AAF941237F13B2009CD413 /* LzmaArchCustomDecompressLib.inf */, - A5AAF942237F13B2009CD413 /* F86GuidedSectionExtraction.c */, - A5AAF943237F13B2009CD413 /* LzmaCustomDecompressLib.inf */, - A5AAF944237F13B2009CD413 /* Sdk */, - A5AAF955237F13B2009CD413 /* LzmaDecompressLibInternal.h */, - A5AAF956237F13B2009CD413 /* LZMA-SDK-README.txt */, - A5AAF957237F13B2009CD413 /* LzmaArchDecompressLib.uni */, - A5AAF958237F13B2009CD413 /* LzmaDecompress.c */, - A5AAF959237F13B2009CD413 /* LzmaDecompressLib.uni */, - A5AAF95A237F13B2009CD413 /* GuidedSectionExtraction.c */, - A5AAF95B237F13B2009CD413 /* UefiLzma.h */, - ); - path = LzmaCustomDecompressLib; - sourceTree = ""; - }; - A5AAF944237F13B2009CD413 /* Sdk */ = { - isa = PBXGroup; - children = ( - A5AAF945237F13B2009CD413 /* DOC */, - A5AAF948237F13B2009CD413 /* C */, - ); - path = Sdk; - sourceTree = ""; - }; - A5AAF945237F13B2009CD413 /* DOC */ = { - isa = PBXGroup; - children = ( - A5AAF946237F13B2009CD413 /* lzma-sdk.txt */, - A5AAF947237F13B2009CD413 /* lzma-history.txt */, - ); - path = DOC; - sourceTree = ""; - }; - A5AAF948237F13B2009CD413 /* C */ = { - isa = PBXGroup; - children = ( - A5AAF949237F13B2009CD413 /* LzHash.h */, - A5AAF94A237F13B2009CD413 /* 7zTypes.h */, - A5AAF94B237F13B2009CD413 /* Compiler.h */, - A5AAF94C237F13B2009CD413 /* LzFind.c */, - A5AAF94D237F13B2009CD413 /* Precomp.h */, - A5AAF94E237F13B2009CD413 /* CpuArch.h */, - A5AAF94F237F13B2009CD413 /* Bra86.c */, - A5AAF950237F13B2009CD413 /* LzmaDec.c */, - A5AAF951237F13B2009CD413 /* LzFind.h */, - A5AAF952237F13B2009CD413 /* 7zVersion.h */, - A5AAF953237F13B2009CD413 /* Bra.h */, - A5AAF954237F13B2009CD413 /* LzmaDec.h */, - ); - path = C; - sourceTree = ""; - }; - A5AAF95C237F13B2009CD413 /* DeviceManagerUiLib */ = { - isa = PBXGroup; - children = ( - A5AAF95D237F13B2009CD413 /* DeviceManagerUiLib.uni */, - A5AAF95E237F13B2009CD413 /* DeviceManagerStrings.uni */, - A5AAF95F237F13B2009CD413 /* DeviceManagerUiLib.inf */, - A5AAF960237F13B2009CD413 /* DeviceManager.h */, - A5AAF961237F13B2009CD413 /* DeviceManagerVfr.Vfr */, - A5AAF962237F13B2009CD413 /* DeviceManager.c */, - ); - path = DeviceManagerUiLib; - sourceTree = ""; - }; - A5AAF963237F13B2009CD413 /* BaseIpmiLibNull */ = { - isa = PBXGroup; - children = ( - A5AAF964237F13B2009CD413 /* BaseIpmiLibNull.c */, - A5AAF965237F13B2009CD413 /* BaseIpmiLibNull.inf */, - A5AAF966237F13B2009CD413 /* BaseIpmiLibNull.uni */, - ); - path = BaseIpmiLibNull; - sourceTree = ""; - }; - A5AAF967237F13B2009CD413 /* PeiCrc32GuidedSectionExtractLib */ = { - isa = PBXGroup; - children = ( - A5AAF968237F13B2009CD413 /* PeiCrc32GuidedSectionExtractLib.uni */, - A5AAF969237F13B2009CD413 /* PeiCrc32GuidedSectionExtractLib.inf */, - A5AAF96A237F13B2009CD413 /* PeiCrc32GuidedSectionExtractLib.c */, - ); - path = PeiCrc32GuidedSectionExtractLib; - sourceTree = ""; - }; - A5AAF96B237F13B2009CD413 /* UefiBootManagerLib */ = { - isa = PBXGroup; - children = ( - A5AAF96C237F13B2009CD413 /* BmConnect.c */, - A5AAF96D237F13B2009CD413 /* BmConsole.c */, - A5AAF96E237F13B2009CD413 /* BmHotkey.c */, - A5AAF96F237F13B2009CD413 /* InternalBm.h */, - A5AAF970237F13B2009CD413 /* UefiBootManagerLib.inf */, - A5AAF971237F13B2009CD413 /* BmLoadOption.c */, - A5AAF972237F13B2009CD413 /* BmBootDescription.c */, - A5AAF973237F13B2009CD413 /* UefiBootManagerLib.uni */, - A5AAF974237F13B2009CD413 /* BmDriverHealth.c */, - A5AAF975237F13B2009CD413 /* BmBoot.c */, - A5AAF976237F13B2009CD413 /* BmMisc.c */, - ); - path = UefiBootManagerLib; - sourceTree = ""; - }; - A5AAF977237F13B2009CD413 /* DxeNetLib */ = { - isa = PBXGroup; - children = ( - A5AAF978237F13B2009CD413 /* DxeNetLib.inf */, - A5AAF979237F13B2009CD413 /* DxeNetLib.uni */, - A5AAF97A237F13B2009CD413 /* NetBuffer.c */, - A5AAF97B237F13B2009CD413 /* DxeNetLib.c */, - ); - path = DxeNetLib; - sourceTree = ""; - }; - A5AAF97C237F13B2009CD413 /* FileExplorerLib */ = { - isa = PBXGroup; - children = ( - A5AAF97D237F13B2009CD413 /* FileExplorer.h */, - A5AAF97E237F13B2009CD413 /* FileExplorerString.uni */, - A5AAF97F237F13B2009CD413 /* FormGuid.h */, - A5AAF980237F13B2009CD413 /* FileExplorer.c */, - A5AAF981237F13B2009CD413 /* FileExplorerVfr.vfr */, - A5AAF982237F13B2009CD413 /* FileExplorerLib.inf */, - A5AAF983237F13B2009CD413 /* FileExplorerLib.uni */, - ); - path = FileExplorerLib; - sourceTree = ""; - }; - A5AAF984237F13B2009CD413 /* DxeIpmiLibIpmiProtocol */ = { - isa = PBXGroup; - children = ( - A5AAF985237F13B2009CD413 /* DxeIpmiLibIpmiProtocol.uni */, - A5AAF986237F13B2009CD413 /* DxeIpmiLibIpmiProtocol.inf */, - A5AAF987237F13B2009CD413 /* DxeIpmiLibIpmiProtocol.c */, - ); - path = DxeIpmiLibIpmiProtocol; - sourceTree = ""; - }; - A5AAF988237F13B2009CD413 /* VarCheckLib */ = { - isa = PBXGroup; - children = ( - A5AAF989237F13B2009CD413 /* VarCheckLib.c */, - A5AAF98A237F13B2009CD413 /* VarCheckLib.inf */, - A5AAF98B237F13B2009CD413 /* VarCheckLib.uni */, - ); - path = VarCheckLib; - sourceTree = ""; - }; - A5AAF98C237F13B2009CD413 /* DisplayUpdateProgressLibGraphics */ = { - isa = PBXGroup; - children = ( - A5AAF98D237F13B2009CD413 /* DisplayUpdateProgressLibGraphics.uni */, - A5AAF98E237F13B2009CD413 /* DisplayUpdateProgressLibGraphics.inf */, - A5AAF98F237F13B2009CD413 /* DisplayUpdateProgressLibGraphics.c */, - ); - path = DisplayUpdateProgressLibGraphics; - sourceTree = ""; - }; - A5AAF990237F13B2009CD413 /* AuthVariableLibNull */ = { - isa = PBXGroup; - children = ( - A5AAF991237F13B2009CD413 /* AuthVariableLibNull.uni */, - A5AAF992237F13B2009CD413 /* AuthVariableLibNull.inf */, - A5AAF993237F13B2009CD413 /* AuthVariableLibNull.c */, - ); - path = AuthVariableLibNull; - sourceTree = ""; - }; - A5AAF994237F13B2009CD413 /* SmmReportStatusCodeLib */ = { - isa = PBXGroup; - children = ( - A5AAF995237F13B2009CD413 /* SmmReportStatusCodeLib.uni */, - A5AAF996237F13B2009CD413 /* ReportStatusCodeLib.c */, - A5AAF997237F13B2009CD413 /* SmmReportStatusCodeLib.inf */, - ); - path = SmmReportStatusCodeLib; - sourceTree = ""; - }; - A5AAF998237F13B2009CD413 /* PeiReportStatusCodeLib */ = { - isa = PBXGroup; - children = ( - A5AAF999237F13B2009CD413 /* PeiReportStatusCodeLib.uni */, - A5AAF99A237F13B2009CD413 /* PeiReportStatusCodeLib.inf */, - A5AAF99B237F13B2009CD413 /* ReportStatusCodeLib.c */, - ); - path = PeiReportStatusCodeLib; - sourceTree = ""; - }; - A5AAF99C237F13B2009CD413 /* PeiPerformanceLib */ = { - isa = PBXGroup; - children = ( - A5AAF99D237F13B2009CD413 /* PeiPerformanceLib.uni */, - A5AAF99E237F13B2009CD413 /* PeiPerformanceLib.c */, - A5AAF99F237F13B2009CD413 /* PeiPerformanceLib.inf */, - ); - path = PeiPerformanceLib; - sourceTree = ""; - }; - A5AAF9A0237F13B2009CD413 /* SmmLockBoxLib */ = { - isa = PBXGroup; - children = ( - A5AAF9A1237F13B2009CD413 /* SmmLockBoxSmmLib.c */, - A5AAF9A2237F13B2009CD413 /* SmmLockBoxPeiLib.uni */, - A5AAF9A3237F13B2009CD413 /* SmmLockBoxDxeLib.uni */, - A5AAF9A4237F13B2009CD413 /* SmmLockBoxPeiLib.inf */, - A5AAF9A5237F13B2009CD413 /* SmmLockBoxDxeLib.inf */, - A5AAF9A6237F13B2009CD413 /* SmmLockBoxSmmLib.inf */, - A5AAF9A7237F13B2009CD413 /* SmmLockBoxSmmLib.uni */, - A5AAF9A8237F13B2009CD413 /* SmmLockBoxPeiLib.c */, - A5AAF9A9237F13B2009CD413 /* SmmLockBoxLibPrivate.h */, - A5AAF9AA237F13B2009CD413 /* SmmLockBoxDxeLib.c */, - ); - path = SmmLockBoxLib; - sourceTree = ""; - }; - A5AAF9AB237F13B2009CD413 /* DxePerformanceLib */ = { - isa = PBXGroup; - children = ( - A5AAF9AC237F13B2009CD413 /* DxePerformanceLib.c */, - A5AAF9AD237F13B2009CD413 /* DxePerformanceLib.uni */, - A5AAF9AE237F13B2009CD413 /* DxePerformanceLib.inf */, - ); - path = DxePerformanceLib; - sourceTree = ""; - }; - A5AAF9AF237F13B2009CD413 /* SmmMemoryAllocationProfileLib */ = { - isa = PBXGroup; - children = ( - A5AAF9B0237F13B2009CD413 /* SmmMemoryAllocationProfileLib.uni */, - A5AAF9B1237F13B2009CD413 /* MemoryAllocationLib.c */, - A5AAF9B2237F13B2009CD413 /* SmmMemoryAllocationProfileLib.inf */, - A5AAF9B3237F13B2009CD413 /* SmmMemoryProfileLib.c */, - ); - path = SmmMemoryAllocationProfileLib; - sourceTree = ""; - }; - A5AAF9B4237F13B2009CD413 /* PlatformBootManagerLibNull */ = { - isa = PBXGroup; - children = ( - A5AAF9B5237F13B2009CD413 /* PlatformBootManager.c */, - A5AAF9B6237F13B2009CD413 /* PlatformBootManagerLibNull.inf */, - A5AAF9B7237F13B2009CD413 /* PlatformBootManagerLibNull.uni */, - ); - path = PlatformBootManagerLibNull; - sourceTree = ""; - }; - A5AAF9B8237F13B2009CD413 /* DxeFileExplorerProtocol */ = { - isa = PBXGroup; - children = ( - A5AAF9B9237F13B2009CD413 /* DxeFileExplorerProtocol.inf */, - A5AAF9BA237F13B2009CD413 /* DxeFileExplorerProtocol.uni */, - A5AAF9BB237F13B2009CD413 /* DxeFileExplorerProtocol.c */, - ); - path = DxeFileExplorerProtocol; - sourceTree = ""; - }; - A5AAF9BC237F13B2009CD413 /* PiDxeS3BootScriptLib */ = { - isa = PBXGroup; - children = ( - A5AAF9BD237F13B2009CD413 /* InternalBootScriptLib.h */, - A5AAF9BE237F13B2009CD413 /* BootScriptInternalFormat.h */, - A5AAF9BF237F13B2009CD413 /* BootScriptSave.c */, - A5AAF9C0237F13B2009CD413 /* BootScriptExecute.c */, - A5AAF9C1237F13B2009CD413 /* DxeS3BootScriptLib.inf */, - A5AAF9C2237F13B2009CD413 /* DxeS3BootScriptLib.uni */, - ); - path = PiDxeS3BootScriptLib; - sourceTree = ""; - }; - A5AAF9C3237F13B2009CD413 /* DxeHttpLib */ = { - isa = PBXGroup; - children = ( - A5AAF9C4237F13B2009CD413 /* DxeHttpLib.c */, - A5AAF9C5237F13B2009CD413 /* DxeHttpLib.inf */, - A5AAF9C6237F13B2009CD413 /* DxeHttpLib.uni */, - A5AAF9C7237F13B2009CD413 /* DxeHttpLib.h */, - ); - path = DxeHttpLib; - sourceTree = ""; - }; - A5AAF9C8237F13B2009CD413 /* BasePlatformHookLibNull */ = { - isa = PBXGroup; - children = ( - A5AAF9C9237F13B2009CD413 /* BasePlatformHookLibNull.inf */, - A5AAF9CA237F13B2009CD413 /* BasePlatformHookLibNull.uni */, - A5AAF9CB237F13B2009CD413 /* BasePlatformHookLibNull.c */, - ); - path = BasePlatformHookLibNull; - sourceTree = ""; - }; - A5AAF9CC237F13B2009CD413 /* BaseResetSystemLibNull */ = { - isa = PBXGroup; - children = ( - A5AAF9CD237F13B2009CD413 /* BaseResetSystemLibNull.uni */, - A5AAF9CE237F13B2009CD413 /* BaseResetSystemLibNull.inf */, - A5AAF9CF237F13B2009CD413 /* BaseResetSystemLibNull.c */, - ); - path = BaseResetSystemLibNull; - sourceTree = ""; - }; - A5AAF9D0237F13B2009CD413 /* NonDiscoverableDeviceRegistrationLib */ = { - isa = PBXGroup; - children = ( - A5AAF9D1237F13B2009CD413 /* NonDiscoverableDeviceRegistrationLib.c */, - A5AAF9D2237F13B2009CD413 /* NonDiscoverableDeviceRegistrationLib.inf */, - ); - path = NonDiscoverableDeviceRegistrationLib; - sourceTree = ""; - }; - A5AAF9D3237F13B2009CD413 /* FrameBufferBltLib */ = { - isa = PBXGroup; - children = ( - A5AAF9D4237F13B2009CD413 /* FrameBufferBltLib.c */, - A5AAF9D5237F13B2009CD413 /* FrameBufferBltLib.inf */, - ); - path = FrameBufferBltLib; - sourceTree = ""; - }; - A5AAF9D6237F13B2009CD413 /* PciHostBridgeLibNull */ = { - isa = PBXGroup; - children = ( - A5AAF9D7237F13B2009CD413 /* PciHostBridgeLibNull.uni */, - A5AAF9D8237F13B2009CD413 /* PciHostBridgeLibNull.inf */, - A5AAF9D9237F13B2009CD413 /* PciHostBridgeLibNull.c */, - ); - path = PciHostBridgeLibNull; - sourceTree = ""; - }; - A5AAF9DA237F13B2009CD413 /* PeiDxeDebugLibReportStatusCode */ = { - isa = PBXGroup; - children = ( - A5AAF9DB237F13B2009CD413 /* PeiDxeDebugLibReportStatusCode.uni */, - A5AAF9DC237F13B2009CD413 /* DebugLib.c */, - A5AAF9DD237F13B2009CD413 /* PeiDxeDebugLibReportStatusCode.inf */, - ); - path = PeiDxeDebugLibReportStatusCode; - sourceTree = ""; - }; - A5AAF9DE237F13B2009CD413 /* TpmMeasurementLibNull */ = { - isa = PBXGroup; - children = ( - A5AAF9DF237F13B2009CD413 /* TpmMeasurementLibNull.uni */, - A5AAF9E0237F13B2009CD413 /* TpmMeasurementLibNull.c */, - A5AAF9E1237F13B2009CD413 /* TpmMeasurementLibNull.inf */, - ); - path = TpmMeasurementLibNull; - sourceTree = ""; - }; - A5AAF9E2237F13B2009CD413 /* PeiDebugPrintHobLib */ = { - isa = PBXGroup; - children = ( - A5AAF9E3237F13B2009CD413 /* PeiDebugPrintHobLib.uni */, - A5AAF9E4237F13B2009CD413 /* PeiDebugPrintHobLib.c */, - A5AAF9E5237F13B2009CD413 /* PeiDebugPrintHobLib.inf */, - ); - path = PeiDebugPrintHobLib; - sourceTree = ""; - }; - A5AAF9E6237F13B2009CD413 /* RuntimeDxeReportStatusCodeLib */ = { - isa = PBXGroup; - children = ( - A5AAF9E7237F13B2009CD413 /* RuntimeDxeReportStatusCodeLib.inf */, - A5AAF9E8237F13B2009CD413 /* RuntimeDxeReportStatusCodeLib.uni */, - A5AAF9E9237F13B2009CD413 /* ReportStatusCodeLib.c */, - ); - path = RuntimeDxeReportStatusCodeLib; - sourceTree = ""; - }; - A5AAF9EA237F13B2009CD413 /* UefiSortLib */ = { - isa = PBXGroup; - children = ( - A5AAF9EB237F13B2009CD413 /* UefiSortLib.inf */, - A5AAF9EC237F13B2009CD413 /* UefiSortLib.c */, - A5AAF9ED237F13B2009CD413 /* UefiSortLib.uni */, - ); - path = UefiSortLib; - sourceTree = ""; - }; - A5AAF9EE237F13B2009CD413 /* VarCheckHiiLib */ = { - isa = PBXGroup; - children = ( - A5AAF9EF237F13B2009CD413 /* VarCheckHiiGen.c */, - A5AAF9F0237F13B2009CD413 /* VarCheckHii.h */, - A5AAF9F1237F13B2009CD413 /* VarCheckHiiLib.uni */, - A5AAF9F2237F13B2009CD413 /* VarCheckHiiGenFromFv.c */, - A5AAF9F3237F13B2009CD413 /* VarCheckHiiLib.inf */, - A5AAF9F4237F13B2009CD413 /* InternalVarCheckStructure.h */, - A5AAF9F5237F13B2009CD413 /* VarCheckHiiGenFromHii.c */, - A5AAF9F6237F13B2009CD413 /* VarCheckHiiLibNullClass.c */, - A5AAF9F7237F13B2009CD413 /* VarCheckHiiGen.h */, - ); - path = VarCheckHiiLib; - sourceTree = ""; - }; - A5AAF9F8237F13B2009CD413 /* BaseMemoryAllocationLibNull */ = { - isa = PBXGroup; - children = ( - A5AAF9F9237F13B2009CD413 /* BaseMemoryAllocationLibNull.c */, - A5AAF9FA237F13B2009CD413 /* BaseMemoryAllocationLibNull.inf */, - A5AAF9FB237F13B2009CD413 /* BaseMemoryAllocationLibNull.uni */, - ); - path = BaseMemoryAllocationLibNull; - sourceTree = ""; - }; - A5AAF9FC237F13B2009CD413 /* DisplayUpdateProgressLibText */ = { - isa = PBXGroup; - children = ( - A5AAF9FD237F13B2009CD413 /* DisplayUpdateProgressLibText.c */, - A5AAF9FE237F13B2009CD413 /* DisplayUpdateProgressLibText.inf */, - A5AAF9FF237F13B2009CD413 /* DisplayUpdateProgressLibText.uni */, - ); - path = DisplayUpdateProgressLibText; - sourceTree = ""; - }; - A5AAFA00237F13B2009CD413 /* CustomizedDisplayLib */ = { - isa = PBXGroup; - children = ( - A5AAFA01237F13B2009CD413 /* CustomizedDisplayLibModStrs.uni */, - A5AAFA02237F13B2009CD413 /* Colors.h */, - A5AAFA03237F13B2009CD413 /* CustomizedDisplayLibInternal.h */, - A5AAFA04237F13B2009CD413 /* CustomizedDisplayLib.inf */, - A5AAFA05237F13B2009CD413 /* CustomizedDisplayLib.uni */, - A5AAFA06237F13B2009CD413 /* CustomizedDisplayLibInternal.c */, - A5AAFA07237F13B2009CD413 /* CustomizedDisplayLib.c */, - ); - path = CustomizedDisplayLib; - sourceTree = ""; - }; - A5AAFA08237F13B2009CD413 /* SmmCorePlatformHookLibNull */ = { - isa = PBXGroup; - children = ( - A5AAFA09237F13B2009CD413 /* SmmCorePlatformHookLibNull.inf */, - A5AAFA0A237F13B2009CD413 /* SmmCorePlatformHookLibNull.uni */, - A5AAFA0B237F13B2009CD413 /* SmmCorePlatformHookLibNull.c */, - ); - path = SmmCorePlatformHookLibNull; - sourceTree = ""; - }; - A5AAFA0C237F13B2009CD413 /* DebugAgentLibNull */ = { - isa = PBXGroup; - children = ( - A5AAFA0D237F13B2009CD413 /* DebugAgentLibNull.uni */, - A5AAFA0E237F13B2009CD413 /* DebugAgentLibNull.inf */, - A5AAFA0F237F13B2009CD413 /* DebugAgentLibNull.c */, - ); - path = DebugAgentLibNull; - sourceTree = ""; - }; - A5AAFA10237F13B2009CD413 /* UefiHiiServicesLib */ = { - isa = PBXGroup; - children = ( - A5AAFA11237F13B2009CD413 /* UefiHiiServicesLib.inf */, - A5AAFA12237F13B2009CD413 /* UefiHiiServicesLib.uni */, - A5AAFA13237F13B2009CD413 /* UefiHiiServicesLib.c */, - ); - path = UefiHiiServicesLib; - sourceTree = ""; - }; - A5AAFA14237F13B2009CD413 /* BootMaintenanceManagerUiLib */ = { - isa = PBXGroup; - children = ( - A5AAFA15237F13B2009CD413 /* BmLib.c */, - A5AAFA16237F13B2009CD413 /* BootMaintenanceManagerUiLib.inf */, - A5AAFA17237F13B2009CD413 /* BootOption.c */, - A5AAFA18237F13B2009CD413 /* BootMaintenanceManagerUiLib.uni */, - A5AAFA19237F13B2009CD413 /* BootMaintenanceManagerCustomizedUiSupport.c */, - A5AAFA1A237F13B2009CD413 /* BootMaintenanceManagerCustomizedUi.c */, - A5AAFA1B237F13B2009CD413 /* BootMaintenanceManager.vfr */, - A5AAFA1C237F13B2009CD413 /* BootMaintenanceManagerStrings.uni */, - A5AAFA1D237F13B2009CD413 /* BootMaintenanceManager.h */, - A5AAFA1E237F13B2009CD413 /* BootMaintenance.c */, - A5AAFA1F237F13B2009CD413 /* FormGuid.h */, - A5AAFA20237F13B2009CD413 /* BootMaintenanceManagerCustomizedUiSupport.h */, - A5AAFA21237F13B2009CD413 /* UpdatePage.c */, - A5AAFA22237F13B2009CD413 /* Data.c */, - A5AAFA23237F13B2009CD413 /* BootMaintenanceManagerCustomizedUi.h */, - A5AAFA24237F13B2009CD413 /* ConsoleOption.c */, - A5AAFA25237F13B2009CD413 /* Variable.c */, - ); - path = BootMaintenanceManagerUiLib; - sourceTree = ""; - }; - A5AAFA26237F13B2009CD413 /* PlatformHookLibSerialPortPpi */ = { - isa = PBXGroup; - children = ( - A5AAFA27237F13B2009CD413 /* PlatformHookLibSerialPortPpi.inf */, - A5AAFA28237F13B2009CD413 /* PlatformHookLibSerialPortPpi.uni */, - A5AAFA29237F13B2009CD413 /* PlatformHookLibSerialPortPpi.c */, - ); - path = PlatformHookLibSerialPortPpi; - sourceTree = ""; - }; - A5AAFA2A237F13B2009CD413 /* BaseSerialPortLib16550 */ = { - isa = PBXGroup; - children = ( - A5AAFA2B237F13B2009CD413 /* BaseSerialPortLib16550.c */, - A5AAFA2C237F13B2009CD413 /* BaseSerialPortLib16550.inf */, - A5AAFA2D237F13B2009CD413 /* BaseSerialPortLib16550.uni */, - ); - path = BaseSerialPortLib16550; - sourceTree = ""; - }; - A5AAFA2E237F13B2009CD413 /* BaseHobLibNull */ = { - isa = PBXGroup; - children = ( - A5AAFA2F237F13B2009CD413 /* BaseHobLibNull.c */, - A5AAFA30237F13B2009CD413 /* BaseHobLibNull.inf */, - A5AAFA31237F13B2009CD413 /* BaseHobLibNull.uni */, - ); - path = BaseHobLibNull; - sourceTree = ""; - }; - A5AAFA32237F13B2009CD413 /* SmmPerformanceLib */ = { - isa = PBXGroup; - children = ( - A5AAFA33237F13B2009CD413 /* SmmPerformanceLib.c */, - A5AAFA34237F13B2009CD413 /* SmmPerformanceLib.inf */, - A5AAFA35237F13B2009CD413 /* SmmPerformanceLib.uni */, - ); - path = SmmPerformanceLib; - sourceTree = ""; - }; - A5AAFA36237F13B2009CD413 /* DxeCapsuleLibNull */ = { - isa = PBXGroup; - children = ( - A5AAFA37237F13B2009CD413 /* DxeCapsuleLibNull.inf */, - A5AAFA38237F13B2009CD413 /* DxeCapsuleLibNull.uni */, - A5AAFA39237F13B2009CD413 /* DxeCapsuleLibNull.c */, - ); - path = DxeCapsuleLibNull; - sourceTree = ""; - }; - A5AAFA3A237F13B2009CD413 /* DxeDebugPrintErrorLevelLib */ = { - isa = PBXGroup; - children = ( - A5AAFA3B237F13B2009CD413 /* DxeDebugPrintErrorLevelLib.inf */, - A5AAFA3C237F13B2009CD413 /* DxeDebugPrintErrorLevelLib.uni */, - A5AAFA3D237F13B2009CD413 /* DxeDebugPrintErrorLevelLib.c */, - ); - path = DxeDebugPrintErrorLevelLib; - sourceTree = ""; - }; - A5AAFA3E237F13B2009CD413 /* PiSmmCoreSmmServicesTableLib */ = { - isa = PBXGroup; - children = ( - A5AAFA3F237F13B2009CD413 /* PiSmmCoreSmmServicesTableLib.uni */, - A5AAFA40237F13B2009CD413 /* PiSmmCoreSmmServicesTableLib.inf */, - A5AAFA41237F13B2009CD413 /* PiSmmCoreSmmServicesTableLib.c */, - ); - path = PiSmmCoreSmmServicesTableLib; - sourceTree = ""; - }; - A5AAFA42237F13B2009CD413 /* BrotliCustomDecompressLib */ = { - isa = PBXGroup; - children = ( - A5AAFA43237F13B2009CD413 /* LICENSE */, - A5AAFA44237F13B2009CD413 /* BrotliDecompressLibInternal.h */, - A5AAFA45237F13B2009CD413 /* brotli */, - A5AAFA49237F13B2009CD413 /* BrotliDecompress.c */, - A5AAFA4A237F13B2009CD413 /* docs */, - A5AAFA4C237F13B2009CD413 /* README.md */, - A5AAFA4D237F13B2009CD413 /* common */, - A5AAFA56237F13B2009CD413 /* dec */, - A5AAFA5F237F13B3009CD413 /* ReadMe.txt */, - A5AAFA60237F13B3009CD413 /* BrotliDecompressLib.uni */, - A5AAFA61237F13B3009CD413 /* BrotliCustomDecompressLib.inf */, - A5AAFA62237F13B3009CD413 /* GuidedSectionExtraction.c */, - ); - path = BrotliCustomDecompressLib; - sourceTree = ""; - }; - A5AAFA45237F13B2009CD413 /* brotli */ = { - isa = PBXGroup; - children = ( - A5AAFA46237F13B2009CD413 /* port.h */, - A5AAFA47237F13B2009CD413 /* types.h */, - A5AAFA48237F13B2009CD413 /* decode.h */, - ); - path = brotli; - sourceTree = ""; - }; - A5AAFA4A237F13B2009CD413 /* docs */ = { - isa = PBXGroup; - children = ( - A5AAFA4B237F13B2009CD413 /* brotli-comparison-study-2015-09-22.pdf */, - ); - path = docs; - sourceTree = ""; - }; - A5AAFA4D237F13B2009CD413 /* common */ = { - isa = PBXGroup; - children = ( - A5AAFA4E237F13B2009CD413 /* dictionary.c */, - A5AAFA4F237F13B2009CD413 /* version.h */, - A5AAFA50237F13B2009CD413 /* transform.c */, - A5AAFA51237F13B2009CD413 /* context.h */, - A5AAFA52237F13B2009CD413 /* constants.h */, - A5AAFA53237F13B2009CD413 /* dictionary.h */, - A5AAFA54237F13B2009CD413 /* transform.h */, - A5AAFA55237F13B2009CD413 /* platform.h */, - ); - path = common; - sourceTree = ""; - }; - A5AAFA56237F13B2009CD413 /* dec */ = { - isa = PBXGroup; - children = ( - A5AAFA57237F13B2009CD413 /* state.c */, - A5AAFA58237F13B2009CD413 /* bit_reader.h */, - A5AAFA59237F13B3009CD413 /* decode.c */, - A5AAFA5A237F13B3009CD413 /* huffman.c */, - A5AAFA5B237F13B3009CD413 /* bit_reader.c */, - A5AAFA5C237F13B3009CD413 /* prefix.h */, - A5AAFA5D237F13B3009CD413 /* state.h */, - A5AAFA5E237F13B3009CD413 /* huffman.h */, - ); - path = dec; - sourceTree = ""; - }; - A5AAFA63237F13B3009CD413 /* ResetUtilityLib */ = { - isa = PBXGroup; - children = ( - A5AAFA64237F13B3009CD413 /* ResetUtility.c */, - A5AAFA65237F13B3009CD413 /* ResetUtilityLib.inf */, - ); - path = ResetUtilityLib; - sourceTree = ""; - }; - A5AAFA66237F13B3009CD413 /* SmmCorePerformanceLib */ = { - isa = PBXGroup; - children = ( - A5AAFA67237F13B3009CD413 /* SmmCorePerformanceLib.c */, - A5AAFA68237F13B3009CD413 /* SmmCorePerformanceLib.uni */, - A5AAFA69237F13B3009CD413 /* SmmCorePerformanceLib.inf */, - A5AAFA6A237F13B3009CD413 /* SmmCorePerformanceLibInternal.h */, - ); - path = SmmCorePerformanceLib; - sourceTree = ""; - }; - A5AAFA6B237F13B3009CD413 /* UefiMemoryAllocationProfileLib */ = { - isa = PBXGroup; - children = ( - A5AAFA6C237F13B3009CD413 /* MemoryAllocationLib.c */, - A5AAFA6D237F13B3009CD413 /* UefiMemoryAllocationProfileLib.uni */, - A5AAFA6E237F13B3009CD413 /* UefiMemoryAllocationProfileLib.inf */, - A5AAFA6F237F13B3009CD413 /* DxeMemoryProfileLib.c */, - ); - path = UefiMemoryAllocationProfileLib; - sourceTree = ""; - }; - A5AAFA70237F13B3009CD413 /* PeiDebugLibDebugPpi */ = { - isa = PBXGroup; - children = ( - A5AAFA71237F13B3009CD413 /* PeiDebugLibDebugPpi.inf */, - A5AAFA72237F13B3009CD413 /* DebugLib.c */, - ); - path = PeiDebugLibDebugPpi; - sourceTree = ""; - }; - A5AAFA73237F13B3009CD413 /* SmmSmiHandlerProfileLib */ = { - isa = PBXGroup; - children = ( - A5AAFA74237F13B3009CD413 /* SmmSmiHandlerProfileLib.c */, - A5AAFA75237F13B3009CD413 /* SmmSmiHandlerProfileLib.inf */, - A5AAFA76237F13B3009CD413 /* SmmSmiHandlerProfileLib.uni */, - ); - path = SmmSmiHandlerProfileLib; - sourceTree = ""; - }; - A5AAFA77237F13B3009CD413 /* DxeReportStatusCodeLib */ = { - isa = PBXGroup; - children = ( - A5AAFA78237F13B3009CD413 /* DxeReportStatusCodeLib.inf */, - A5AAFA79237F13B3009CD413 /* DxeReportStatusCodeLib.uni */, - A5AAFA7A237F13B3009CD413 /* ReportStatusCodeLib.c */, - ); - path = DxeReportStatusCodeLib; - sourceTree = ""; - }; - A5AAFA7B237F13B3009CD413 /* VarCheckUefiLib */ = { - isa = PBXGroup; - children = ( - A5AAFA7C237F13B3009CD413 /* VarCheckUefiLib.inf */, - A5AAFA7D237F13B3009CD413 /* VarCheckUefiLib.uni */, - A5AAFA7E237F13B3009CD413 /* VarCheckUefiLibNullClass.c */, - ); - path = VarCheckUefiLib; - sourceTree = ""; - }; - A5AAFA7F237F13B3009CD413 /* RuntimeResetSystemLib */ = { - isa = PBXGroup; - children = ( - A5AAFA80237F13B3009CD413 /* RuntimeResetSystemLib.inf */, - A5AAFA81237F13B3009CD413 /* RuntimeResetSystemLib.c */, - A5AAFA82237F13B3009CD413 /* RuntimeResetSystemLib.uni */, - ); - path = RuntimeResetSystemLib; - sourceTree = ""; - }; - A5AAFA83237F13B3009CD413 /* VarCheckPcdLib */ = { - isa = PBXGroup; - children = ( - A5AAFA84237F13B3009CD413 /* VarCheckPcdLibNullClass.c */, - A5AAFA85237F13B3009CD413 /* VarCheckPcdStructure.h */, - A5AAFA86237F13B3009CD413 /* VarCheckPcdLib.uni */, - A5AAFA87237F13B3009CD413 /* VarCheckPcdLib.inf */, - ); - path = VarCheckPcdLib; - sourceTree = ""; - }; - A5AAFA88237F13B3009CD413 /* DxeSecurityManagementLib */ = { - isa = PBXGroup; - children = ( - A5AAFA89237F13B3009CD413 /* DxeSecurityManagementLib.c */, - A5AAFA8A237F13B3009CD413 /* DxeSecurityManagementLib.uni */, - A5AAFA8B237F13B3009CD413 /* DxeSecurityManagementLib.inf */, - ); - path = DxeSecurityManagementLib; - sourceTree = ""; - }; - A5AAFA8C237F13B3009CD413 /* PiSmmCoreMemoryAllocationLib */ = { - isa = PBXGroup; - children = ( - A5AAFA8D237F13B3009CD413 /* PiSmmCoreMemoryProfileLib.c */, - A5AAFA8E237F13B3009CD413 /* PiSmmCoreMemoryAllocationServices.h */, - A5AAFA8F237F13B3009CD413 /* MemoryAllocationLib.c */, - A5AAFA90237F13B3009CD413 /* PiSmmCoreMemoryProfileServices.h */, - A5AAFA91237F13B3009CD413 /* PiSmmCoreMemoryAllocationLib.uni */, - A5AAFA92237F13B3009CD413 /* PiSmmCoreMemoryAllocationProfileLib.inf */, - A5AAFA93237F13B3009CD413 /* PiSmmCoreMemoryProfileLibNull.c */, - A5AAFA94237F13B3009CD413 /* PiSmmCoreMemoryAllocationLib.inf */, - A5AAFA95237F13B3009CD413 /* PiSmmCoreMemoryAllocationProfileLib.uni */, - ); - path = PiSmmCoreMemoryAllocationLib; - sourceTree = ""; - }; - A5AAFA96237F13B3009CD413 /* DxePrintLibPrint2Protocol */ = { - isa = PBXGroup; - children = ( - A5AAFA97237F13B3009CD413 /* DxePrintLibPrint2Protocol.uni */, - A5AAFA98237F13B3009CD413 /* PrintLib.c */, - A5AAFA99237F13B3009CD413 /* DxePrintLibPrint2Protocol.inf */, - ); - path = DxePrintLibPrint2Protocol; - sourceTree = ""; - }; - A5AAFA9A237F13B3009CD413 /* DxeCoreMemoryAllocationLib */ = { - isa = PBXGroup; - children = ( - A5AAFA9B237F13B3009CD413 /* MemoryAllocationLib.c */, - A5AAFA9C237F13B3009CD413 /* DxeCoreMemoryAllocationServices.h */, - A5AAFA9D237F13B3009CD413 /* DxeCoreMemoryProfileServices.h */, - A5AAFA9E237F13B3009CD413 /* DxeCoreMemoryAllocationProfileLib.inf */, - A5AAFA9F237F13B3009CD413 /* DxeCoreMemoryAllocationProfileLib.uni */, - A5AAFAA0237F13B3009CD413 /* DxeCoreMemoryProfileLib.c */, - A5AAFAA1237F13B3009CD413 /* DxeCoreMemoryAllocationLib.uni */, - A5AAFAA2237F13B3009CD413 /* DxeCoreMemoryAllocationLib.inf */, - A5AAFAA3237F13B3009CD413 /* DxeCoreMemoryProfileLibNull.c */, - ); - path = DxeCoreMemoryAllocationLib; - sourceTree = ""; - }; - A5AAFAA4237F13B3009CD413 /* BootManagerUiLib */ = { - isa = PBXGroup; - children = ( - A5AAFAA5237F13B3009CD413 /* BootManagerStrings.uni */, - A5AAFAA6237F13B3009CD413 /* BootManager.h */, - A5AAFAA7237F13B3009CD413 /* BootManagerUiLib.uni */, - A5AAFAA8237F13B3009CD413 /* BootManagerVfr.Vfr */, - A5AAFAA9237F13B3009CD413 /* BootManagerUiLib.inf */, - A5AAFAAA237F13B3009CD413 /* BootManager.c */, - ); - path = BootManagerUiLib; - sourceTree = ""; - }; - A5AAFAAB237F13B3009CD413 /* BaseBmpSupportLib */ = { - isa = PBXGroup; - children = ( - A5AAFAAC237F13B3009CD413 /* BmpSupportLib.c */, - A5AAFAAD237F13B3009CD413 /* BaseBmpSupportLib.inf */, - A5AAFAAE237F13B3009CD413 /* BaseBmpSupportLib.uni */, - ); - path = BaseBmpSupportLib; - sourceTree = ""; - }; - A5AAFAAF237F13B3009CD413 /* CpuExceptionHandlerLibNull */ = { - isa = PBXGroup; - children = ( - A5AAFAB0237F13B3009CD413 /* CpuExceptionHandlerLibNull.uni */, - A5AAFAB1237F13B3009CD413 /* CpuExceptionHandlerLibNull.inf */, - A5AAFAB2237F13B3009CD413 /* CpuExceptionHandlerLibNull.c */, - ); - path = CpuExceptionHandlerLibNull; - sourceTree = ""; - }; - A5AAFAB3237F13B3009CD413 /* UefiHiiLib */ = { - isa = PBXGroup; - children = ( - A5AAFAB4237F13B3009CD413 /* HiiLib.c */, - A5AAFAB5237F13B3009CD413 /* UefiHiiLib.uni */, - A5AAFAB6237F13B3009CD413 /* UefiHiiLib.inf */, - A5AAFAB7237F13B3009CD413 /* HiiString.c */, - A5AAFAB8237F13B3009CD413 /* HiiLanguage.c */, - A5AAFAB9237F13B3009CD413 /* InternalHiiLib.h */, - ); - path = UefiHiiLib; - sourceTree = ""; - }; - A5AAFABA237F13B3009CD413 /* BaseSortLib */ = { - isa = PBXGroup; - children = ( - A5AAFABB237F13B3009CD413 /* BaseSortLib.inf */, - A5AAFABC237F13B3009CD413 /* BaseSortLib.uni */, - A5AAFABD237F13B3009CD413 /* BaseSortLib.c */, - ); - path = BaseSortLib; - sourceTree = ""; - }; - A5AAFABE237F13B3009CD413 /* DxeCorePerformanceLib */ = { - isa = PBXGroup; - children = ( - A5AAFABF237F13B3009CD413 /* DxeCorePerformanceLib.c */, - A5AAFAC0237F13B3009CD413 /* DxeCorePerformanceLibInternal.h */, - A5AAFAC1237F13B3009CD413 /* DxeCorePerformanceLib.inf */, - A5AAFAC2237F13B3009CD413 /* DxeCorePerformanceLib.uni */, - ); - path = DxeCorePerformanceLib; - sourceTree = ""; - }; - A5AAFAC3237F13B3009CD413 /* DxeResetSystemLib */ = { - isa = PBXGroup; - children = ( - A5AAFAC4237F13B3009CD413 /* DxeResetSystemLib.uni */, - A5AAFAC5237F13B3009CD413 /* DxeResetSystemLib.inf */, - A5AAFAC6237F13B3009CD413 /* DxeResetSystemLib.c */, - ); - path = DxeResetSystemLib; - sourceTree = ""; - }; - A5AAFAC7237F13B3009CD413 /* PeiResetSystemLib */ = { - isa = PBXGroup; - children = ( - A5AAFAC8237F13B3009CD413 /* PeiResetSystemLib.uni */, - A5AAFAC9237F13B3009CD413 /* PeiResetSystemLib.inf */, - A5AAFACA237F13B3009CD413 /* PeiResetSystemLib.c */, - ); - path = PeiResetSystemLib; - sourceTree = ""; - }; - A5AAFACC237F13B3009CD413 /* Logo */ = { - isa = PBXGroup; - children = ( - A5AAFACD237F13B3009CD413 /* LogoDxe.uni */, - A5AAFACE237F13B3009CD413 /* LogoDxe.inf */, - A5AAFACF237F13B3009CD413 /* Logo.bmp */, - A5AAFAD0237F13B3009CD413 /* Logo.uni */, - A5AAFAD1237F13B3009CD413 /* LogoDxeExtra.uni */, - A5AAFAD2237F13B3009CD413 /* LogoExtra.uni */, - A5AAFAD3237F13B3009CD413 /* Logo.inf */, - A5AAFAD4237F13B3009CD413 /* Logo.idf */, - A5AAFAD5237F13B3009CD413 /* Logo.c */, - ); - path = Logo; - sourceTree = ""; - }; - A5AAFAD8237F13B3009CD413 /* Application */ = { - isa = PBXGroup; - children = ( - A5AAFAD9237F13B3009CD413 /* UiApp */, - A5AAFAE8237F13B3009CD413 /* HelloWorld */, - A5AAFAEE237F13B3009CD413 /* BootManagerMenuApp */, - A5AAFAF5237F13B3009CD413 /* CapsuleApp */, - A5AAFAFE237F13B3009CD413 /* MemoryProfileInfo */, - A5AAFB03237F13B3009CD413 /* DumpDynPcd */, - A5AAFB07237F13B3009CD413 /* VariableInfo */, - A5AAFB0C237F13B3009CD413 /* SmiHandlerProfileInfo */, - ); - path = Application; - sourceTree = ""; - }; - A5AAFAD9237F13B3009CD413 /* UiApp */ = { - isa = PBXGroup; - children = ( - A5AAFADA237F13B3009CD413 /* FrontPage.h */, - A5AAFADB237F13B3009CD413 /* FrontPageCustomizedUi.h */, - A5AAFADC237F13B3009CD413 /* Ui.h */, - A5AAFADD237F13B3009CD413 /* FrontPageCustomizedUiSupport.c */, - A5AAFADE237F13B3009CD413 /* FrontPageVfr.Vfr */, - A5AAFADF237F13B3009CD413 /* String.c */, - A5AAFAE0237F13B3009CD413 /* FrontPageCustomizedUi.c */, - A5AAFAE1237F13B3009CD413 /* UiApp.uni */, - A5AAFAE2237F13B3009CD413 /* FrontPage.c */, - A5AAFAE3237F13B3009CD413 /* FrontPageStrings.uni */, - A5AAFAE4237F13B3009CD413 /* UiAppExtra.uni */, - A5AAFAE5237F13B3009CD413 /* UiApp.inf */, - A5AAFAE6237F13B3009CD413 /* FrontPageCustomizedUiSupport.h */, - A5AAFAE7237F13B3009CD413 /* String.h */, - ); - path = UiApp; - sourceTree = ""; - }; - A5AAFAE8237F13B3009CD413 /* HelloWorld */ = { - isa = PBXGroup; - children = ( - A5AAFAE9237F13B3009CD413 /* HelloWorldStr.uni */, - A5AAFAEA237F13B3009CD413 /* HelloWorld.uni */, - A5AAFAEB237F13B3009CD413 /* HelloWorld.inf */, - A5AAFAEC237F13B3009CD413 /* HelloWorld.c */, - A5AAFAED237F13B3009CD413 /* HelloWorldExtra.uni */, - ); - path = HelloWorld; - sourceTree = ""; - }; - A5AAFAEE237F13B3009CD413 /* BootManagerMenuApp */ = { - isa = PBXGroup; - children = ( - A5AAFAEF237F13B3009CD413 /* BootManagerMenu.c */, - A5AAFAF0237F13B3009CD413 /* BootManagerMenuAppExtra.uni */, - A5AAFAF1237F13B3009CD413 /* BootManagerMenuStrings.uni */, - A5AAFAF2237F13B3009CD413 /* BootManagerMenu.h */, - A5AAFAF3237F13B3009CD413 /* BootManagerMenuApp.inf */, - A5AAFAF4237F13B3009CD413 /* BootManagerMenuApp.uni */, - ); - path = BootManagerMenuApp; - sourceTree = ""; - }; - A5AAFAF5237F13B3009CD413 /* CapsuleApp */ = { - isa = PBXGroup; - children = ( - A5AAFAF6237F13B3009CD413 /* CapsuleApp.h */, - A5AAFAF7237F13B3009CD413 /* CapsuleApp.inf */, - A5AAFAF8237F13B3009CD413 /* AppSupport.c */, - A5AAFAF9237F13B3009CD413 /* CapsuleApp.uni */, - A5AAFAFA237F13B3009CD413 /* CapsuleAppExtra.uni */, - A5AAFAFB237F13B3009CD413 /* CapsuleOnDisk.c */, - A5AAFAFC237F13B3009CD413 /* CapsuleApp.c */, - A5AAFAFD237F13B3009CD413 /* CapsuleDump.c */, - ); - path = CapsuleApp; - sourceTree = ""; - }; - A5AAFAFE237F13B3009CD413 /* MemoryProfileInfo */ = { - isa = PBXGroup; - children = ( - A5AAFAFF237F13B3009CD413 /* MemoryProfileInfo.inf */, - A5AAFB00237F13B3009CD413 /* MemoryProfileInfo.c */, - A5AAFB01237F13B3009CD413 /* MemoryProfileInfo.uni */, - A5AAFB02237F13B3009CD413 /* MemoryProfileInfoExtra.uni */, - ); - path = MemoryProfileInfo; - sourceTree = ""; - }; - A5AAFB03237F13B3009CD413 /* DumpDynPcd */ = { - isa = PBXGroup; - children = ( - A5AAFB04237F13B3009CD413 /* DumpDynPcd.inf */, - A5AAFB05237F13B3009CD413 /* DumpDynPcdStr.uni */, - A5AAFB06237F13B3009CD413 /* DumpDynPcd.c */, - ); - path = DumpDynPcd; - sourceTree = ""; - }; - A5AAFB07237F13B3009CD413 /* VariableInfo */ = { - isa = PBXGroup; - children = ( - A5AAFB08237F13B3009CD413 /* VariableInfoExtra.uni */, - A5AAFB09237F13B3009CD413 /* VariableInfo.inf */, - A5AAFB0A237F13B3009CD413 /* VariableInfo.uni */, - A5AAFB0B237F13B3009CD413 /* VariableInfo.c */, - ); - path = VariableInfo; - sourceTree = ""; - }; - A5AAFB0C237F13B3009CD413 /* SmiHandlerProfileInfo */ = { - isa = PBXGroup; - children = ( - A5AAFB0D237F13B3009CD413 /* SmiHandlerProfileInfoExtra.uni */, - A5AAFB0E237F13B3009CD413 /* SmiHandlerProfileInfo.uni */, - A5AAFB0F237F13B3009CD413 /* SmiHandlerProfileInfo.inf */, - A5AAFB10237F13B3009CD413 /* SmiHandlerProfileInfo.c */, - ); - path = SmiHandlerProfileInfo; - sourceTree = ""; - }; - A5AAFD72237F13BC009CD413 /* MdePkg */ = { - isa = PBXGroup; - children = ( - A5AAFD73237F13BC009CD413 /* Include */, - A5AAFFA4237F13BE009CD413 /* Library */, - A5AA0448237F13C0009CD413 /* MdePkg.dec */, - A5AA0449237F13C0009CD413 /* MdePkg.uni */, - A5AA044A237F13C0009CD413 /* MdePkgExtra.uni */, - A5AA044B237F13C0009CD413 /* MdePkg.dsc */, - ); - name = MdePkg; - path = ../../../MdePkg; - sourceTree = ""; - }; - A5AAFD73237F13BC009CD413 /* Include */ = { - isa = PBXGroup; - children = ( - A5AAFFA3237F13BE009CD413 /* Base.h */, - A5AAFF48237F13BE009CD413 /* Guid */, - A5AAFD84237F13BC009CD413 /* IndustryStandard */, - A5AAFDD5237F13BD009CD413 /* Library */, - A5AAFF10237F13BD009CD413 /* Pi */, - A5AAFF47237F13BE009CD413 /* PiDxe.h */, - A5AAFD77237F13BC009CD413 /* PiMm.h */, - A5AAFD74237F13BC009CD413 /* PiPei.h */, - A5AAFF21237F13BD009CD413 /* PiSmm.h */, - A5AAFF72237F13BE009CD413 /* Ppi */, - A5AAFE16237F13BD009CD413 /* Protocol */, - A5AAFF22237F13BD009CD413 /* Register */, - A5AAFD7C237F13BC009CD413 /* Uefi */, - A5AAFD78237F13BC009CD413 /* Uefi.h */, - A5AAFD79237F13BC009CD413 /* X64 */, - ); - path = Include; - sourceTree = ""; - }; - A5AAFD79237F13BC009CD413 /* X64 */ = { - isa = PBXGroup; - children = ( - A5AAFD7A237F13BC009CD413 /* Nasm.inc */, - A5AAFD7B237F13BC009CD413 /* ProcessorBind.h */, - ); - path = X64; - sourceTree = ""; - }; - A5AAFD7C237F13BC009CD413 /* Uefi */ = { - isa = PBXGroup; - children = ( - A5AAFD7D237F13BC009CD413 /* UefiAcpiDataTable.h */, - A5AAFD7E237F13BC009CD413 /* UefiPxe.h */, - A5AAFD7F237F13BC009CD413 /* UefiSpec.h */, - A5AAFD80237F13BC009CD413 /* UefiGpt.h */, - A5AAFD81237F13BC009CD413 /* UefiBaseType.h */, - A5AAFD82237F13BC009CD413 /* UefiInternalFormRepresentation.h */, - A5AAFD83237F13BC009CD413 /* UefiMultiPhase.h */, - ); - path = Uefi; - sourceTree = ""; - }; - A5AAFD84237F13BC009CD413 /* IndustryStandard */ = { - isa = PBXGroup; - children = ( - A5AAFD9C237F13BC009CD413 /* Acpi.h */, - A5AAFDA1237F13BC009CD413 /* Acpi10.h */, - A5AAFDAE237F13BD009CD413 /* Acpi20.h */, - A5AAFDBC237F13BD009CD413 /* Acpi30.h */, - A5AAFD92237F13BC009CD413 /* Acpi40.h */, - A5AAFDA8237F13BC009CD413 /* Acpi50.h */, - A5AAFDB9237F13BD009CD413 /* Acpi51.h */, - A5AAFDB3237F13BD009CD413 /* Acpi60.h */, - A5AAFD98237F13BC009CD413 /* Acpi61.h */, - A5AAFD89237F13BC009CD413 /* Acpi62.h */, - A5AAFDC5237F13BD009CD413 /* Acpi63.h */, - A5AAFDA7237F13BC009CD413 /* AcpiAml.h */, - A5AAFD91237F13BC009CD413 /* AlertStandardFormatTable.h */, - A5AAFDC1237F13BD009CD413 /* Atapi.h */, - A5AAFDA6237F13BC009CD413 /* Bluetooth.h */, - A5AAFD93237F13BC009CD413 /* Bmp.h */, - A5AAFDCC237F13BD009CD413 /* DebugPort2Table.h */, - A5AAFDBE237F13BD009CD413 /* DebugPortTable.h */, - A5AAFDAC237F13BD009CD413 /* Dhcp.h */, - A5AAFD90237F13BC009CD413 /* DmaRemappingReportingTable.h */, - A5AAFD87237F13BC009CD413 /* ElTorito.h */, - A5AAFD8E237F13BC009CD413 /* Emmc.h */, - A5AAFDB7237F13BD009CD413 /* HighPrecisionEventTimerTable.h */, - A5AAFDCF237F13BD009CD413 /* Hsti.h */, - A5AAFDC7237F13BD009CD413 /* Http11.h */, - A5AAFD8C237F13BC009CD413 /* IoRemappingTable.h */, - A5AAFDD2237F13BD009CD413 /* Ipmi.h */, - A5AAFDA3237F13BC009CD413 /* IpmiFruInformationStorage.h */, - A5AAFDB0237F13BD009CD413 /* IpmiNetFnApp.h */, - A5AAFDD3237F13BD009CD413 /* IpmiNetFnBridge.h */, - A5AAFD9B237F13BC009CD413 /* IpmiNetFnChassis.h */, - A5AAFD85237F13BC009CD413 /* IpmiNetFnFirmware.h */, - A5AAFDC9237F13BD009CD413 /* IpmiNetFnGroupExtension.h */, - A5AAFDB2237F13BD009CD413 /* IpmiNetFnSensorEvent.h */, - A5AAFDA4237F13BC009CD413 /* IpmiNetFnStorage.h */, - A5AAFDAB237F13BD009CD413 /* IpmiNetFnTransport.h */, - A5AAFDA5237F13BC009CD413 /* IScsiBootFirmwareTable.h */, - A5AAFDC3237F13BD009CD413 /* LegacyBiosMpTable.h */, - A5AAFD8D237F13BC009CD413 /* LowPowerIdleTable.h */, - A5AAFD97237F13BC009CD413 /* Mbr.h */, - A5AAFDA2237F13BC009CD413 /* MemoryMappedConfigurationSpaceAccessTable.h */, - A5AAFDC0237F13BD009CD413 /* MemoryOverwriteRequestControlLock.h */, - A5AAFD8B237F13BC009CD413 /* Nvme.h */, - A5AAFDCB237F13BD009CD413 /* Pci.h */, - A5AAFD96237F13BC009CD413 /* Pci22.h */, - A5AAFDAF237F13BD009CD413 /* Pci23.h */, - A5AAFDCE237F13BD009CD413 /* Pci30.h */, - A5AAFDAA237F13BC009CD413 /* PciCodeId.h */, - A5AAFDB4237F13BD009CD413 /* PciExpress21.h */, - A5AAFD9F237F13BC009CD413 /* PciExpress30.h */, - A5AAFDB5237F13BD009CD413 /* PciExpress31.h */, - A5AAFDB1237F13BD009CD413 /* PciExpress40.h */, - A5AAFD9E237F13BC009CD413 /* PeImage.h */, - A5AAFDCD237F13BD009CD413 /* Scsi.h */, - A5AAFDBA237F13BD009CD413 /* Sd.h */, - A5AAFDA0237F13BC009CD413 /* SdramSpd.h */, - A5AAFD88237F13BC009CD413 /* SdramSpdDdr3.h */, - A5AAFD99237F13BC009CD413 /* SdramSpdDdr4.h */, - A5AAFD86237F13BC009CD413 /* SdramSpdLpDdr.h */, - A5AAFD95237F13BC009CD413 /* SerialPortConsoleRedirectionTable.h */, - A5AAFDD4237F13BD009CD413 /* ServiceProcessorManagementInterfaceTable.h */, - A5AAFDBF237F13BD009CD413 /* SmBios.h */, - A5AAFDC6237F13BD009CD413 /* SmBus.h */, - A5AAFDC8237F13BD009CD413 /* TcgPhysicalPresence.h */, - A5AAFDB6237F13BD009CD413 /* TcgStorageCore.h */, - A5AAFD9A237F13BC009CD413 /* TcgStorageOpal.h */, - A5AAFDC2237F13BD009CD413 /* TcpaAcpi.h */, - A5AAFDCA237F13BD009CD413 /* Tls1.h */, - A5AAFD9D237F13BC009CD413 /* Tpm2Acpi.h */, - A5AAFDD1237F13BD009CD413 /* Tpm12.h */, - A5AAFDA9237F13BC009CD413 /* Tpm20.h */, - A5AAFDAD237F13BD009CD413 /* TpmPtp.h */, - A5AAFDC4237F13BD009CD413 /* TpmTis.h */, - A5AAFDBD237F13BD009CD413 /* Udf.h */, - A5AAFD94237F13BC009CD413 /* UefiTcgPlatform.h */, - A5AAFDB8237F13BD009CD413 /* Usb.h */, - A5AAFD8F237F13BC009CD413 /* WatchdogActionTable.h */, - A5AAFDBB237F13BD009CD413 /* WatchdogResourceTable.h */, - A5AAFD8A237F13BC009CD413 /* WindowsSmmSecurityMitigationTable.h */, - A5AAFDD0237F13BD009CD413 /* WindowsUxCapsule.h */, - ); - path = IndustryStandard; - sourceTree = ""; - }; - A5AAFDD5237F13BD009CD413 /* Library */ = { - isa = PBXGroup; - children = ( - A5AAFE01237F13BD009CD413 /* BaseLib.h */, - A5AAFDFD237F13BD009CD413 /* BaseMemoryLib.h */, - A5AAFE0B237F13BD009CD413 /* CacheMaintenanceLib.h */, - A5AAFE0C237F13BD009CD413 /* CpuLib.h */, - A5AAFDE4237F13BD009CD413 /* DebugLib.h */, - A5AAFE14237F13BD009CD413 /* DebugPrintErrorLevelLib.h */, - A5AAFDE8237F13BD009CD413 /* DevicePathLib.h */, - A5AAFDFA237F13BD009CD413 /* DxeCoreEntryPoint.h */, - A5AAFDFE237F13BD009CD413 /* DxeServicesLib.h */, - A5AAFE04237F13BD009CD413 /* DxeServicesTableLib.h */, - A5AAFE08237F13BD009CD413 /* ExtractGuidedSectionLib.h */, - A5AAFDEA237F13BD009CD413 /* FileHandleLib.h */, - A5AAFE13237F13BD009CD413 /* HobLib.h */, - A5AAFE07237F13BD009CD413 /* HstiLib.h */, - A5AAFE0F237F13BD009CD413 /* IoLib.h */, - A5AAFE06237F13BD009CD413 /* MemoryAllocationLib.h */, - A5AAFDF1237F13BD009CD413 /* MmServicesTableLib.h */, - A5AAFDD6237F13BD009CD413 /* OrderedCollectionLib.h */, - A5AAFDE9237F13BD009CD413 /* PcdLib.h */, - A5AAFDDF237F13BD009CD413 /* PciCf8Lib.h */, - A5AAFDF3237F13BD009CD413 /* PciExpressLib.h */, - A5AAFDEF237F13BD009CD413 /* PciLib.h */, - A5AAFE15237F13BD009CD413 /* PciSegmentInfoLib.h */, - A5AAFDE3237F13BD009CD413 /* PciSegmentLib.h */, - A5AAFDF2237F13BD009CD413 /* PeCoffExtraActionLib.h */, - A5AAFDFB237F13BD009CD413 /* PeCoffGetEntryPointLib.h */, - A5AAFDFF237F13BD009CD413 /* PeCoffLib.h */, - A5AAFDE1237F13BD009CD413 /* PeiCoreEntryPoint.h */, - A5AAFDDD237F13BD009CD413 /* PeimEntryPoint.h */, - A5AAFE03237F13BD009CD413 /* PeiServicesLib.h */, - A5AAFDD8237F13BD009CD413 /* PeiServicesTablePointerLib.h */, - A5AAFE12237F13BD009CD413 /* PerformanceLib.h */, - A5AAFDED237F13BD009CD413 /* PostCodeLib.h */, - A5AAFE10237F13BD009CD413 /* PrintLib.h */, - A5AAFDF5237F13BD009CD413 /* ReportStatusCodeLib.h */, - A5AAFE09237F13BD009CD413 /* ResourcePublicationLib.h */, - A5AAFDDE237F13BD009CD413 /* RngLib.h */, - A5AAFE0A237F13BD009CD413 /* S3BootScriptLib.h */, - A5AAFDF4237F13BD009CD413 /* S3IoLib.h */, - A5AAFDE2237F13BD009CD413 /* S3PciLib.h */, - A5AAFE00237F13BD009CD413 /* S3PciSegmentLib.h */, - A5AAFDE7237F13BD009CD413 /* S3SmbusLib.h */, - A5AAFDEE237F13BD009CD413 /* S3StallLib.h */, - A5AAFDE6237F13BD009CD413 /* SafeIntLib.h */, - A5AAFDF9237F13BD009CD413 /* SerialPortLib.h */, - A5AAFE05237F13BD009CD413 /* SmbusLib.h */, - A5AAFDD9237F13BD009CD413 /* SmiHandlerProfileLib.h */, - A5AAFE0E237F13BD009CD413 /* SmmIoLib.h */, - A5AAFE02237F13BD009CD413 /* SmmLib.h */, - A5AAFDEC237F13BD009CD413 /* SmmMemLib.h */, - A5AAFDE0237F13BD009CD413 /* SmmPeriodicSmiLib.h */, - A5AAFDF8237F13BD009CD413 /* SmmServicesTableLib.h */, - A5AAFE0D237F13BD009CD413 /* StandaloneMmDriverEntryPoint.h */, - A5AAFDE5237F13BD009CD413 /* SynchronizationLib.h */, - A5AAFDD7237F13BD009CD413 /* TimerLib.h */, - A5AAFE11237F13BD009CD413 /* UefiApplicationEntryPoint.h */, - A5AAFDF0237F13BD009CD413 /* UefiBootServicesTableLib.h */, - A5AAFDDB237F13BD009CD413 /* UefiDecompressLib.h */, - A5AAFDFC237F13BD009CD413 /* UefiDriverEntryPoint.h */, - A5AAFDEB237F13BD009CD413 /* UefiLib.h */, - A5AAFDF7237F13BD009CD413 /* UefiRuntimeLib.h */, - A5AAFDDC237F13BD009CD413 /* UefiRuntimeServicesTableLib.h */, - A5AAFDF6237F13BD009CD413 /* UefiScsiLib.h */, - A5AAFDDA237F13BD009CD413 /* UefiUsbLib.h */, - ); - path = Library; - sourceTree = ""; - }; - A5AAFE16237F13BD009CD413 /* Protocol */ = { - isa = PBXGroup; - children = ( - A5AAFEC0237F13BD009CD413 /* AbsolutePointer.h */, - A5AAFEDB237F13BD009CD413 /* AcpiSystemDescriptionTable.h */, - A5AAFEFE237F13BD009CD413 /* AcpiTable.h */, - A5AAFF0B237F13BD009CD413 /* AdapterInformation.h */, - A5AAFED2237F13BD009CD413 /* Arp.h */, - A5AAFE6D237F13BD009CD413 /* AtaPassThru.h */, - A5AAFEA9237F13BD009CD413 /* AuthenticationInfo.h */, - A5AAFECF237F13BD009CD413 /* Bds.h */, - A5AAFE22237F13BD009CD413 /* Bis.h */, - A5AAFE80237F13BD009CD413 /* BlockIo.h */, - A5AAFEC6237F13BD009CD413 /* BlockIo2.h */, - A5AAFEF3237F13BD009CD413 /* BlockIoCrypto.h */, - A5AAFEC4237F13BD009CD413 /* BluetoothAttribute.h */, - A5AAFF01237F13BD009CD413 /* BluetoothConfig.h */, - A5AAFE5D237F13BD009CD413 /* BluetoothHc.h */, - A5AAFF02237F13BD009CD413 /* BluetoothIo.h */, - A5AAFE66237F13BD009CD413 /* BluetoothLeConfig.h */, - A5AAFE47237F13BD009CD413 /* BootManagerPolicy.h */, - A5AAFEA3237F13BD009CD413 /* BusSpecificDriverOverride.h */, - A5AAFEBB237F13BD009CD413 /* Capsule.h */, - A5AAFF09237F13BD009CD413 /* ComponentName.h */, - A5AAFE73237F13BD009CD413 /* ComponentName2.h */, - A5AAFEBF237F13BD009CD413 /* Cpu.h */, - A5AAFE32237F13BD009CD413 /* CpuIo2.h */, - A5AAFE91237F13BD009CD413 /* DebugPort.h */, - A5AAFF08237F13BD009CD413 /* DebugSupport.h */, - A5AAFEAD237F13BD009CD413 /* Decompress.h */, - A5AAFEB8237F13BD009CD413 /* DeferredImageLoad.h */, - A5AAFE4E237F13BD009CD413 /* DeviceIo.h */, - A5AAFE9A237F13BD009CD413 /* DevicePath.h */, - A5AAFE2E237F13BD009CD413 /* DevicePathFromText.h */, - A5AAFE3F237F13BD009CD413 /* DevicePathToText.h */, - A5AAFE8D237F13BD009CD413 /* DevicePathUtilities.h */, - A5AAFE78237F13BD009CD413 /* Dhcp4.h */, - A5AAFEEB237F13BD009CD413 /* Dhcp6.h */, - A5AAFECE237F13BD009CD413 /* DiskInfo.h */, - A5AAFE36237F13BD009CD413 /* DiskIo.h */, - A5AAFE71237F13BD009CD413 /* DiskIo2.h */, - A5AAFEC7237F13BD009CD413 /* Dns4.h */, - A5AAFE4C237F13BD009CD413 /* Dns6.h */, - A5AAFE7E237F13BD009CD413 /* DriverBinding.h */, - A5AAFE34237F13BD009CD413 /* DriverConfiguration.h */, - A5AAFE42237F13BD009CD413 /* DriverConfiguration2.h */, - A5AAFE60237F13BD009CD413 /* DriverDiagnostics.h */, - A5AAFE76237F13BD009CD413 /* DriverDiagnostics2.h */, - A5AAFE1A237F13BD009CD413 /* DriverFamilyOverride.h */, - A5AAFED1237F13BD009CD413 /* DriverHealth.h */, - A5AAFE9D237F13BD009CD413 /* DriverSupportedEfiVersion.h */, - A5AAFE7D237F13BD009CD413 /* DxeMmReadyToLock.h */, - A5AAFEEC237F13BD009CD413 /* DxeSmmReadyToLock.h */, - A5AAFF0A237F13BD009CD413 /* Eap.h */, - A5AAFE24237F13BD009CD413 /* EapConfiguration.h */, - A5AAFED8237F13BD009CD413 /* EapManagement.h */, - A5AAFEAC237F13BD009CD413 /* EapManagement2.h */, - A5AAFF07237F13BD009CD413 /* Ebc.h */, - A5AAFE58237F13BD009CD413 /* EdidActive.h */, - A5AAFE45237F13BD009CD413 /* EdidDiscovered.h */, - A5AAFEFF237F13BD009CD413 /* EdidOverride.h */, - A5AAFED9237F13BD009CD413 /* EraseBlock.h */, - A5AAFE44237F13BD009CD413 /* FirmwareManagement.h */, - A5AAFE7F237F13BD009CD413 /* FirmwareVolume2.h */, - A5AAFEF5237F13BD009CD413 /* FirmwareVolumeBlock.h */, - A5AAFE2C237F13BD009CD413 /* FormBrowser2.h */, - A5AAFE6C237F13BD009CD413 /* Ftp4.h */, - A5AAFE6A237F13BD009CD413 /* GraphicsOutput.h */, - A5AAFE7A237F13BD009CD413 /* GuidedSectionExtraction.h */, - A5AAFEF9237F13BD009CD413 /* Hash.h */, - A5AAFE97237F13BD009CD413 /* Hash2.h */, - A5AAFE3D237F13BD009CD413 /* HiiConfigAccess.h */, - A5AAFE6F237F13BD009CD413 /* HiiConfigKeyword.h */, - A5AAFEC3237F13BD009CD413 /* HiiConfigRouting.h */, - A5AAFEC8237F13BD009CD413 /* HiiDatabase.h */, - A5AAFEFB237F13BD009CD413 /* HiiFont.h */, - A5AAFEB2237F13BD009CD413 /* HiiImage.h */, - A5AAFE61237F13BD009CD413 /* HiiImageDecoder.h */, - A5AAFEC9237F13BD009CD413 /* HiiImageEx.h */, - A5AAFEB0237F13BD009CD413 /* HiiPackageList.h */, - A5AAFE69237F13BD009CD413 /* HiiPopup.h */, - A5AAFE63237F13BD009CD413 /* HiiString.h */, - A5AAFE3B237F13BD009CD413 /* Http.h */, - A5AAFEF6237F13BD009CD413 /* HttpBootCallback.h */, - A5AAFF0E237F13BD009CD413 /* HttpUtilities.h */, - A5AAFEE1237F13BD009CD413 /* I2cBusConfigurationManagement.h */, - A5AAFF00237F13BD009CD413 /* I2cEnumerate.h */, - A5AAFE2D237F13BD009CD413 /* I2cHost.h */, - A5AAFE4B237F13BD009CD413 /* I2cIo.h */, - A5AAFED6237F13BD009CD413 /* I2cMaster.h */, - A5AAFEBE237F13BD009CD413 /* IdeControllerInit.h */, - A5AAFED4237F13BD009CD413 /* IncompatiblePciDeviceSupport.h */, - A5AAFE33237F13BD009CD413 /* Ip4.h */, - A5AAFE67237F13BD009CD413 /* Ip4Config.h */, - A5AAFEAA237F13BD009CD413 /* Ip4Config2.h */, - A5AAFEC5237F13BD009CD413 /* Ip6.h */, - A5AAFE4A237F13BD009CD413 /* Ip6Config.h */, - A5AAFE30237F13BD009CD413 /* IpSec.h */, - A5AAFEB7237F13BD009CD413 /* IpSecConfig.h */, - A5AAFE72237F13BD009CD413 /* IsaHc.h */, - A5AAFE6B237F13BD009CD413 /* IScsiInitiatorName.h */, - A5AAFEDF237F13BD009CD413 /* Kms.h */, - A5AAFE90237F13BD009CD413 /* LegacyRegion2.h */, - A5AAFE17237F13BD009CD413 /* LegacySpiController.h */, - A5AAFED5237F13BD009CD413 /* LegacySpiFlash.h */, - A5AAFE8F237F13BD009CD413 /* LegacySpiSmmController.h */, - A5AAFE8A237F13BD009CD413 /* LegacySpiSmmFlash.h */, - A5AAFE29237F13BD009CD413 /* LoadedImage.h */, - A5AAFEE2237F13BD009CD413 /* LoadFile.h */, - A5AAFF0F237F13BD009CD413 /* LoadFile2.h */, - A5AAFE5F237F13BD009CD413 /* ManagedNetwork.h */, - A5AAFE87237F13BD009CD413 /* Metronome.h */, - A5AAFE5A237F13BD009CD413 /* MmAccess.h */, - A5AAFE81237F13BD009CD413 /* MmBase.h */, - A5AAFEAB237F13BD009CD413 /* MmCommunication.h */, - A5AAFEE6237F13BD009CD413 /* MmConfiguration.h */, - A5AAFE54237F13BD009CD413 /* MmControl.h */, - A5AAFE1C237F13BD009CD413 /* MmCpu.h */, - A5AAFE40237F13BD009CD413 /* MmCpuIo.h */, - A5AAFE46237F13BD009CD413 /* MmEndOfDxe.h */, - A5AAFEEF237F13BD009CD413 /* MmGpiDispatch.h */, - A5AAFEF8237F13BD009CD413 /* MmIoTrapDispatch.h */, - A5AAFE68237F13BD009CD413 /* MmMp.h */, - A5AAFEE0237F13BD009CD413 /* MmPciRootBridgeIo.h */, - A5AAFECB237F13BD009CD413 /* MmPeriodicTimerDispatch.h */, - A5AAFE56237F13BD009CD413 /* MmPowerButtonDispatch.h */, - A5AAFE38237F13BD009CD413 /* MmReadyToLock.h */, - A5AAFE7C237F13BD009CD413 /* MmReportStatusCodeHandler.h */, - A5AAFF03237F13BD009CD413 /* MmStandbyButtonDispatch.h */, - A5AAFE3A237F13BD009CD413 /* MmStatusCode.h */, - A5AAFEA4237F13BD009CD413 /* MmSwDispatch.h */, - A5AAFE1B237F13BD009CD413 /* MmSxDispatch.h */, - A5AAFEB9237F13BD009CD413 /* MmUsbDispatch.h */, - A5AAFE5C237F13BD009CD413 /* MonotonicCounter.h */, - A5AAFEED237F13BD009CD413 /* MpService.h */, - A5AAFF04237F13BD009CD413 /* Mtftp4.h */, - A5AAFE84237F13BD009CD413 /* Mtftp6.h */, - A5AAFE55237F13BD009CD413 /* NetworkInterfaceIdentifier.h */, - A5AAFE27237F13BD009CD413 /* NvdimmLabel.h */, - A5AAFEB6237F13BD009CD413 /* NvmExpressPassthru.h */, - A5AAFE1F237F13BD009CD413 /* PartitionInfo.h */, - A5AAFE94237F13BD009CD413 /* Pcd.h */, - A5AAFEE3237F13BD009CD413 /* PcdInfo.h */, - A5AAFEDC237F13BD009CD413 /* PciEnumerationComplete.h */, - A5AAFEAF237F13BD009CD413 /* PciHostBridgeResourceAllocation.h */, - A5AAFEDE237F13BD009CD413 /* PciHotPlugInit.h */, - A5AAFEA8237F13BD009CD413 /* PciHotPlugRequest.h */, - A5AAFECA237F13BD009CD413 /* PciIo.h */, - A5AAFE70237F13BD009CD413 /* PciOverride.h */, - A5AAFE75237F13BD009CD413 /* PciPlatform.h */, - A5AAFE93237F13BD009CD413 /* PciRootBridgeIo.h */, - A5AAFEA0237F13BD009CD413 /* PiPcd.h */, - A5AAFEAE237F13BD009CD413 /* PiPcdInfo.h */, - A5AAFEB3237F13BD009CD413 /* Pkcs7Verify.h */, - A5AAFE5E237F13BD009CD413 /* PlatformDriverOverride.h */, - A5AAFE8B237F13BD009CD413 /* PlatformToDriverConfiguration.h */, - A5AAFE79237F13BD009CD413 /* PxeBaseCode.h */, - A5AAFE8E237F13BD009CD413 /* PxeBaseCodeCallBack.h */, - A5AAFECC237F13BD009CD413 /* RamDisk.h */, - A5AAFE48237F13BD009CD413 /* RealTimeClock.h */, - A5AAFEBD237F13BD009CD413 /* RegularExpressionProtocol.h */, - A5AAFE4F237F13BD009CD413 /* ReportStatusCodeHandler.h */, - A5AAFEEA237F13BD009CD413 /* Reset.h */, - A5AAFEDD237F13BD009CD413 /* ResetNotification.h */, - A5AAFE26237F13BD009CD413 /* Rest.h */, - A5AAFE77237F13BD009CD413 /* Rng.h */, - A5AAFE89237F13BD009CD413 /* Runtime.h */, - A5AAFEE8237F13BD009CD413 /* S3SaveState.h */, - A5AAFE85237F13BD009CD413 /* S3SmmSaveState.h */, - A5AAFE51237F13BD009CD413 /* ScsiIo.h */, - A5AAFECD237F13BD009CD413 /* ScsiPassThru.h */, - A5AAFE3C237F13BD009CD413 /* ScsiPassThruExt.h */, - A5AAFEE9237F13BD009CD413 /* SdMmcPassThru.h */, - A5AAFE52237F13BD009CD413 /* Security.h */, - A5AAFE57237F13BD009CD413 /* Security2.h */, - A5AAFEA1237F13BD009CD413 /* SecurityPolicy.h */, - A5AAFED0237F13BD009CD413 /* SerialIo.h */, - A5AAFE41237F13BD009CD413 /* ServiceBinding.h */, - A5AAFE2F237F13BD009CD413 /* Shell.h */, - A5AAFE25237F13BD009CD413 /* ShellDynamicCommand.h */, - A5AAFED3237F13BD009CD413 /* ShellParameters.h */, - A5AAFE39237F13BD009CD413 /* SimpleFileSystem.h */, - A5AAFE62237F13BD009CD413 /* SimpleNetwork.h */, - A5AAFE49237F13BD009CD413 /* SimplePointer.h */, - A5AAFEF7237F13BD009CD413 /* SimpleTextIn.h */, - A5AAFE31237F13BD009CD413 /* SimpleTextInEx.h */, - A5AAFE6E237F13BD009CD413 /* SimpleTextOut.h */, - A5AAFE23237F13BD009CD413 /* SmartCardEdge.h */, - A5AAFEF4237F13BD009CD413 /* SmartCardReader.h */, - A5AAFED7237F13BD009CD413 /* Smbios.h */, - A5AAFE3E237F13BD009CD413 /* SmbusHc.h */, - A5AAFEFC237F13BD009CD413 /* SmmAccess2.h */, - A5AAFF0C237F13BD009CD413 /* SmmBase2.h */, - A5AAFEB5237F13BD009CD413 /* SmmCommunication.h */, - A5AAFEEE237F13BD009CD413 /* SmmConfiguration.h */, - A5AAFEF0237F13BD009CD413 /* SmmControl2.h */, - A5AAFE9C237F13BD009CD413 /* SmmCpu.h */, - A5AAFE82237F13BD009CD413 /* SmmCpuIo2.h */, - A5AAFEE5237F13BD009CD413 /* SmmEndOfDxe.h */, - A5AAFEB4237F13BD009CD413 /* SmmGpiDispatch2.h */, - A5AAFF05237F13BD009CD413 /* SmmIoTrapDispatch2.h */, - A5AAFF0D237F13BD009CD413 /* SmmPciRootBridgeIo.h */, - A5AAFEE7237F13BD009CD413 /* SmmPeriodicTimerDispatch2.h */, - A5AAFE88237F13BD009CD413 /* SmmPowerButtonDispatch2.h */, - A5AAFEA7237F13BD009CD413 /* SmmReadyToLock.h */, - A5AAFE20237F13BD009CD413 /* SmmReportStatusCodeHandler.h */, - A5AAFEBA237F13BD009CD413 /* SmmStandbyButtonDispatch2.h */, - A5AAFE74237F13BD009CD413 /* SmmStatusCode.h */, - A5AAFE2B237F13BD009CD413 /* SmmSwDispatch2.h */, - A5AAFE53237F13BD009CD413 /* SmmSxDispatch2.h */, - A5AAFE83237F13BD009CD413 /* SmmUsbDispatch2.h */, - A5AAFE98237F13BD009CD413 /* SpiConfiguration.h */, - A5AAFE18237F13BD009CD413 /* SpiHc.h */, - A5AAFEB1237F13BD009CD413 /* SpiIo.h */, - A5AAFE86237F13BD009CD413 /* SpiNorFlash.h */, - A5AAFE35237F13BD009CD413 /* SpiSmmConfiguration.h */, - A5AAFF06237F13BD009CD413 /* SpiSmmHc.h */, - A5AAFE96237F13BD009CD413 /* SpiSmmNorFlash.h */, - A5AAFEF1237F13BD009CD413 /* StatusCode.h */, - A5AAFE9E237F13BD009CD413 /* StorageSecurityCommand.h */, - A5AAFEBC237F13BD009CD413 /* SuperIo.h */, - A5AAFE99237F13BD009CD413 /* SuperIoControl.h */, - A5AAFEA5237F13BD009CD413 /* Supplicant.h */, - A5AAFE9B237F13BD009CD413 /* TapeIo.h */, - A5AAFEDA237F13BD009CD413 /* Tcg2Protocol.h */, - A5AAFE1D237F13BD009CD413 /* TcgService.h */, - A5AAFE19237F13BD009CD413 /* Tcp4.h */, - A5AAFE92237F13BD009CD413 /* Tcp6.h */, - A5AAFE8C237F13BD009CD413 /* Timer.h */, - A5AAFEF2237F13BD009CD413 /* Timestamp.h */, - A5AAFE37237F13BD009CD413 /* Tls.h */, - A5AAFE50237F13BD009CD413 /* TlsConfig.h */, - A5AAFE64237F13BD009CD413 /* TrEEProtocol.h */, - A5AAFE28237F13BD009CD413 /* Udp4.h */, - A5AAFEA6237F13BD009CD413 /* Udp6.h */, - A5AAFE4D237F13BD009CD413 /* UfsDeviceConfig.h */, - A5AAFE21237F13BD009CD413 /* UgaDraw.h */, - A5AAFE95237F13BD009CD413 /* UgaIo.h */, - A5AAFE5B237F13BD009CD413 /* UnicodeCollation.h */, - A5AAFE43237F13BD009CD413 /* Usb2HostController.h */, - A5AAFEA2237F13BD009CD413 /* UsbFunctionIo.h */, - A5AAFEC1237F13BD009CD413 /* UsbHostController.h */, - A5AAFEC2237F13BD009CD413 /* UsbIo.h */, - A5AAFE59237F13BD009CD413 /* UserCredential.h */, - A5AAFEFD237F13BD009CD413 /* UserCredential2.h */, - A5AAFE9F237F13BD009CD413 /* UserManager.h */, - A5AAFE7B237F13BD009CD413 /* Variable.h */, - A5AAFE65237F13BD009CD413 /* VariableWrite.h */, - A5AAFEFA237F13BD009CD413 /* VlanConfig.h */, - A5AAFEE4237F13BD009CD413 /* WatchdogTimer.h */, - A5AAFE2A237F13BD009CD413 /* WiFi.h */, - A5AAFE1E237F13BD009CD413 /* WiFi2.h */, - ); - path = Protocol; - sourceTree = ""; - }; - A5AAFF10237F13BD009CD413 /* Pi */ = { - isa = PBXGroup; - children = ( - A5AAFF11237F13BD009CD413 /* PiFirmwareVolume.h */, - A5AAFF12237F13BD009CD413 /* PiMmCis.h */, - A5AAFF13237F13BD009CD413 /* PiDxeCis.h */, - A5AAFF14237F13BD009CD413 /* PiStatusCode.h */, - A5AAFF15237F13BD009CD413 /* PiBootMode.h */, - A5AAFF16237F13BD009CD413 /* PiHob.h */, - A5AAFF17237F13BD009CD413 /* PiPeiCis.h */, - A5AAFF18237F13BD009CD413 /* PiSmmCis.h */, - A5AAFF19237F13BD009CD413 /* PiDependency.h */, - A5AAFF1A237F13BD009CD413 /* PiS3BootScript.h */, - A5AAFF1B237F13BD009CD413 /* PiMultiPhase.h */, - A5AAFF1C237F13BD009CD413 /* PiFirmwareFile.h */, - A5AAFF1D237F13BD009CD413 /* PiI2c.h */, - ); - path = Pi; - sourceTree = ""; - }; - A5AAFF22237F13BD009CD413 /* Register */ = { - isa = PBXGroup; - children = ( - A5AAFF23237F13BD009CD413 /* Intel */, - A5AAFF43237F13BE009CD413 /* Amd */, - ); - path = Register; - sourceTree = ""; - }; - A5AAFF23237F13BD009CD413 /* Intel */ = { - isa = PBXGroup; - children = ( - A5AAFF41237F13BE009CD413 /* ArchitecturalMsr.h */, - A5AAFF3C237F13BD009CD413 /* Cpuid.h */, - A5AAFF3F237F13BE009CD413 /* LocalApic.h */, - A5AAFF24237F13BD009CD413 /* Microcode.h */, - A5AAFF26237F13BD009CD413 /* Msr */, - A5AAFF42237F13BE009CD413 /* Msr.h */, - A5AAFF25237F13BD009CD413 /* SmramSaveStateMap.h */, - A5AAFF40237F13BE009CD413 /* StmApi.h */, - A5AAFF3E237F13BE009CD413 /* StmResourceDescriptor.h */, - A5AAFF3D237F13BD009CD413 /* StmStatusCode.h */, - ); - path = Intel; - sourceTree = ""; - }; - A5AAFF26237F13BD009CD413 /* Msr */ = { - isa = PBXGroup; - children = ( - A5AAFF27237F13BD009CD413 /* Pentium4Msr.h */, - A5AAFF28237F13BD009CD413 /* GoldmontPlusMsr.h */, - A5AAFF29237F13BD009CD413 /* IvyBridgeMsr.h */, - A5AAFF2A237F13BD009CD413 /* BroadwellMsr.h */, - A5AAFF2B237F13BD009CD413 /* HaswellEMsr.h */, - A5AAFF2C237F13BD009CD413 /* XeonE7Msr.h */, - A5AAFF2D237F13BD009CD413 /* Core2Msr.h */, - A5AAFF2E237F13BD009CD413 /* NehalemMsr.h */, - A5AAFF2F237F13BD009CD413 /* SandyBridgeMsr.h */, - A5AAFF30237F13BD009CD413 /* P6Msr.h */, - A5AAFF31237F13BD009CD413 /* PentiumMsr.h */, - A5AAFF32237F13BD009CD413 /* SilvermontMsr.h */, - A5AAFF33237F13BD009CD413 /* Xeon5600Msr.h */, - A5AAFF34237F13BD009CD413 /* SkylakeMsr.h */, - A5AAFF35237F13BD009CD413 /* CoreMsr.h */, - A5AAFF36237F13BD009CD413 /* XeonDMsr.h */, - A5AAFF37237F13BD009CD413 /* XeonPhiMsr.h */, - A5AAFF38237F13BD009CD413 /* PentiumMMsr.h */, - A5AAFF39237F13BD009CD413 /* GoldmontMsr.h */, - A5AAFF3A237F13BD009CD413 /* HaswellMsr.h */, - A5AAFF3B237F13BD009CD413 /* AtomMsr.h */, - ); - path = Msr; - sourceTree = ""; - }; - A5AAFF43237F13BE009CD413 /* Amd */ = { - isa = PBXGroup; - children = ( - A5AAFF44237F13BE009CD413 /* Cpuid.h */, - A5AAFF45237F13BE009CD413 /* Fam17Msr.h */, - A5AAFF46237F13BE009CD413 /* Msr.h */, - ); - path = Amd; - sourceTree = ""; - }; - A5AAFF48237F13BE009CD413 /* Guid */ = { - isa = PBXGroup; - children = ( - A5AAFF59237F13BE009CD413 /* Acpi.h */, - A5AAFF5A237F13BE009CD413 /* Apriori.h */, - A5AAFF4D237F13BE009CD413 /* AprioriFileName.h */, - A5AAFF5C237F13BE009CD413 /* Btt.h */, - A5AAFF6F237F13BE009CD413 /* CapsuleReport.h */, - A5AAFF52237F13BE009CD413 /* Cper.h */, - A5AAFF63237F13BE009CD413 /* DebugImageInfoTable.h */, - A5AAFF5B237F13BE009CD413 /* DxeServices.h */, - A5AAFF50237F13BE009CD413 /* EventGroup.h */, - A5AAFF56237F13BE009CD413 /* EventLegacyBios.h */, - A5AAFF4B237F13BE009CD413 /* FileInfo.h */, - A5AAFF69237F13BE009CD413 /* FileSystemInfo.h */, - A5AAFF60237F13BE009CD413 /* FileSystemVolumeLabelInfo.h */, - A5AAFF58237F13BE009CD413 /* FirmwareContentsSigned.h */, - A5AAFF61237F13BE009CD413 /* FirmwareFileSystem2.h */, - A5AAFF51237F13BE009CD413 /* FirmwareFileSystem3.h */, - A5AAFF57237F13BE009CD413 /* FmpCapsule.h */, - A5AAFF6D237F13BE009CD413 /* GlobalVariable.h */, - A5AAFF54237F13BE009CD413 /* Gpt.h */, - A5AAFF5E237F13BE009CD413 /* GraphicsInfoHob.h */, - A5AAFF6A237F13BE009CD413 /* HardwareErrorVariable.h */, - A5AAFF5F237F13BE009CD413 /* HiiFormMapMethodGuid.h */, - A5AAFF64237F13BE009CD413 /* HiiKeyBoardLayout.h */, - A5AAFF6E237F13BE009CD413 /* HiiPlatformSetupFormset.h */, - A5AAFF5D237F13BE009CD413 /* HobList.h */, - A5AAFF67237F13BE009CD413 /* ImageAuthentication.h */, - A5AAFF49237F13BE009CD413 /* MdePkgTokenSpace.h */, - A5AAFF4F237F13BE009CD413 /* MemoryAllocationHob.h */, - A5AAFF55237F13BE009CD413 /* MemoryAttributesTable.h */, - A5AAFF53237F13BE009CD413 /* MemoryOverwriteControl.h */, - A5AAFF6B237F13BE009CD413 /* Mps.h */, - A5AAFF6C237F13BE009CD413 /* PcAnsi.h */, - A5AAFF4E237F13BE009CD413 /* PropertiesTable.h */, - A5AAFF66237F13BE009CD413 /* SmBios.h */, - A5AAFF4A237F13BE009CD413 /* SmramMemoryReserve.h */, - A5AAFF62237F13BE009CD413 /* StatusCodeDataTypeId.h */, - A5AAFF4C237F13BE009CD413 /* SystemResourceTable.h */, - A5AAFF68237F13BE009CD413 /* VectorHandoffTable.h */, - A5AAFF65237F13BE009CD413 /* WinCertificate.h */, - ); - path = Guid; - sourceTree = ""; - }; - A5AAFF72237F13BE009CD413 /* Ppi */ = { - isa = PBXGroup; - children = ( - A5AAFF84237F13BE009CD413 /* BlockIo.h */, - A5AAFF90237F13BE009CD413 /* BlockIo2.h */, - A5AAFF7F237F13BE009CD413 /* BootInRecoveryMode.h */, - A5AAFF8E237F13BE009CD413 /* Capsule.h */, - A5AAFF9F237F13BE009CD413 /* CpuIo.h */, - A5AAFF8B237F13BE009CD413 /* Decompress.h */, - A5AAFF99237F13BE009CD413 /* DeviceRecoveryModule.h */, - A5AAFF81237F13BE009CD413 /* DxeIpl.h */, - A5AAFF7D237F13BE009CD413 /* EndOfPeiPhase.h */, - A5AAFFA0237F13BE009CD413 /* FirmwareVolume.h */, - A5AAFF91237F13BE009CD413 /* FirmwareVolumeInfo.h */, - A5AAFF87237F13BE009CD413 /* FirmwareVolumeInfo2.h */, - A5AAFF95237F13BE009CD413 /* Graphics.h */, - A5AAFF82237F13BE009CD413 /* GuidedSectionExtraction.h */, - A5AAFF92237F13BE009CD413 /* I2cMaster.h */, - A5AAFF80237F13BE009CD413 /* IsaHc.h */, - A5AAFF9A237F13BE009CD413 /* LoadFile.h */, - A5AAFF86237F13BE009CD413 /* LoadImage.h */, - A5AAFF8D237F13BE009CD413 /* MasterBootMode.h */, - A5AAFF83237F13BE009CD413 /* MemoryDiscovered.h */, - A5AAFF7C237F13BE009CD413 /* MmAccess.h */, - A5AAFF79237F13BE009CD413 /* MmControl.h */, - A5AAFF96237F13BE009CD413 /* MpServices.h */, - A5AAFF85237F13BE009CD413 /* Pcd.h */, - A5AAFF9B237F13BE009CD413 /* PcdInfo.h */, - A5AAFF8A237F13BE009CD413 /* PciCfg2.h */, - A5AAFF73237F13BE009CD413 /* PeiCoreFvLocation.h */, - A5AAFF88237F13BE009CD413 /* PiPcd.h */, - A5AAFF8C237F13BE009CD413 /* PiPcdInfo.h */, - A5AAFF76237F13BE009CD413 /* ReadOnlyVariable2.h */, - A5AAFF93237F13BE009CD413 /* RecoveryModule.h */, - A5AAFF77237F13BE009CD413 /* ReportStatusCodeHandler.h */, - A5AAFF9C237F13BE009CD413 /* Reset.h */, - A5AAFF7A237F13BE009CD413 /* Reset2.h */, - A5AAFF78237F13BE009CD413 /* S3Resume2.h */, - A5AAFF74237F13BE009CD413 /* SecHobData.h */, - A5AAFF9E237F13BE009CD413 /* SecPlatformInformation.h */, - A5AAFF94237F13BE009CD413 /* SecPlatformInformation2.h */, - A5AAFF7B237F13BE009CD413 /* Security2.h */, - A5AAFF7E237F13BE009CD413 /* Smbus2.h */, - A5AAFF89237F13BE009CD413 /* Stall.h */, - A5AAFF9D237F13BE009CD413 /* StatusCode.h */, - A5AAFF8F237F13BE009CD413 /* SuperIo.h */, - A5AAFF98237F13BE009CD413 /* TemporaryRamDone.h */, - A5AAFF97237F13BE009CD413 /* TemporaryRamSupport.h */, - A5AAFF75237F13BE009CD413 /* VectorHandoffInfo.h */, - ); - path = Ppi; - sourceTree = ""; - }; - A5AAFFA4237F13BE009CD413 /* Library */ = { - isa = PBXGroup; - children = ( - A5AAFFBB237F13BE009CD413 /* BaseCacheMaintenanceLib */, - A5AA01E0237F13BF009CD413 /* BaseCpuLib */, - A5AAFFD0237F13BE009CD413 /* BaseDebugLibNull */, - A5AA02C3237F13BF009CD413 /* BaseDebugLibSerialPort */, - A5AAFFB7237F13BE009CD413 /* BaseDebugPrintErrorLevelLib */, - A5AA0321237F13BF009CD413 /* BaseExtractGuidedSectionLib */, - A5AA0354237F13C0009CD413 /* BaseIoLibIntrinsic */, - A5AAFFF8237F13BE009CD413 /* BaseLib */, - A5AA0296237F13BF009CD413 /* BaseMemoryLib */, - A5AA0397237F13C0009CD413 /* BaseMemoryLibMmx */, - A5AA020D237F13BF009CD413 /* BaseMemoryLibOptDxe */, - A5AA03EF237F13C0009CD413 /* BaseMemoryLibOptPei */, - A5AA0173237F13BF009CD413 /* BaseMemoryLibRepStr */, - A5AA02C7237F13BF009CD413 /* BaseMemoryLibSse2 */, - A5AA03C2237F13C0009CD413 /* BaseOrderedCollectionRedBlackTreeLib */, - A5AA0257237F13BF009CD413 /* BasePcdLibNull */, - A5AA027C237F13BF009CD413 /* BasePciCf8Lib */, - A5AAFFDD237F13BE009CD413 /* BasePciExpressLib */, - A5AAFFC8237F13BE009CD413 /* BasePciLibCf8 */, - A5AA03D3237F13C0009CD413 /* BasePciLibPciExpress */, - A5AA0319237F13BF009CD413 /* BasePciSegmentInfoLibNull */, - A5AA024F237F13BF009CD413 /* BasePciSegmentLibPci */, - A5AA043E237F13C0009CD413 /* BasePeCoffExtraActionLibNull */, - A5AA0373237F13C0009CD413 /* BasePeCoffGetEntryPointLib */, - A5AA0270237F13BF009CD413 /* BasePeCoffLib */, - A5AA024B237F13BF009CD413 /* BasePerformanceLibNull */, - A5AA03E7237F13C0009CD413 /* BasePostCodeLibDebug */, - A5AA0268237F13BF009CD413 /* BasePostCodeLibPort80 */, - A5AA042A237F13C0009CD413 /* BasePrintLib */, - A5AA0436237F13C0009CD413 /* BaseReportStatusCodeLibNull */, - A5AA0260237F13BF009CD413 /* BaseRngLib */, - A5AA02FD237F13BF009CD413 /* BaseS3BootScriptLibNull */, - A5AA02BF237F13BF009CD413 /* BaseS3IoLib */, - A5AA0426237F13C0009CD413 /* BaseS3PciLib */, - A5AA0315237F13BF009CD413 /* BaseS3PciSegmentLib */, - A5AAFFE1237F13BE009CD413 /* BaseS3SmbusLib */, - A5AA03EB237F13C0009CD413 /* BaseS3StallLib */, - A5AA0284237F13BF009CD413 /* BaseSafeIntLib */, - A5AA02F9237F13BF009CD413 /* BaseSerialPortLibNull */, - A5AA02B7237F13BF009CD413 /* BaseSmbusLibNull */, - A5AA025B237F13BF009CD413 /* BaseStackCheckLib */, - A5AA019E237F13BF009CD413 /* BaseSynchronizationLib */, - A5AA02BB237F13BF009CD413 /* BaseTimerLibNullTemplate */, - A5AA02F2237F13BF009CD413 /* BaseUefiDecompressLib */, - A5AA0264237F13BF009CD413 /* DxeCoreEntryPoint */, - A5AA037F237F13C0009CD413 /* DxeCoreHobLib */, - A5AA028E237F13BF009CD413 /* DxeExtractGuidedSectionLib */, - A5AA0311237F13BF009CD413 /* DxeHobLib */, - A5AA03E1237F13C0009CD413 /* DxeHstiLib */, - A5AAFFC1237F13BE009CD413 /* DxeIoLibCpuIo2 */, - A5AA0301237F13BF009CD413 /* DxePcdLib */, - A5AA0393237F13C0009CD413 /* DxeRuntimeDebugLibSerialPort */, - A5AA0209237F13BF009CD413 /* DxeRuntimePciExpressLib */, - A5AAFFE5237F13BE009CD413 /* DxeServicesLib */, - A5AA043A237F13C0009CD413 /* DxeServicesTableLib */, - A5AA02B1237F13BF009CD413 /* DxeSmbusLib */, - A5AA0280237F13BF009CD413 /* MmServicesTableLib */, - A5AA01D7237F13BF009CD413 /* PciSegmentLibSegmentInfo */, - A5AA026C237F13BF009CD413 /* PeiCoreEntryPoint */, - A5AA0253237F13BF009CD413 /* PeiDxePostCodeLibReportStatusCode */, - A5AA01F9237F13BF009CD413 /* PeiExtractGuidedSectionLib */, - A5AA033D237F13C0009CD413 /* PeiHobLib */, - A5AA0430237F13C0009CD413 /* PeiIoLibCpuIo */, - A5AA032E237F13BF009CD413 /* PeiMemoryAllocationLib */, - A5AA0341237F13C0009CD413 /* PeiMemoryLib */, - A5AA041E237F13C0009CD413 /* PeimEntryPoint */, - A5AA0387237F13C0009CD413 /* PeiPcdLib */, - A5AAFFAD237F13BE009CD413 /* PeiPciLibPciCfg2 */, - A5AA036F237F13C0009CD413 /* PeiPciSegmentLibPciCfg2 */, - A5AA030D237F13BF009CD413 /* PeiResourcePublicationLib */, - A5AAFFD9237F13BE009CD413 /* PeiServicesLib */, - A5AAFFCC237F13BE009CD413 /* PeiServicesTablePointerLib */, - A5AAFFA5237F13BE009CD413 /* PeiServicesTablePointerLibIdt */, - A5AAFFB1237F13BE009CD413 /* PeiSmbusLibSmbus2Ppi */, - A5AAFFEC237F13BE009CD413 /* SecPeiDxeTimerLibCpu */, - A5AA0422237F13C0009CD413 /* SmiHandlerProfileLibNull */, - A5AA037B237F13C0009CD413 /* SmmIoLib */, - A5AA02AA237F13BF009CD413 /* SmmIoLibSmmCpuIo2 */, - A5AA0278237F13BF009CD413 /* SmmLibNull */, - A5AA038B237F13C0009CD413 /* SmmMemLib */, - A5AA031D237F13BF009CD413 /* SmmMemoryAllocationLib */, - A5AA0206237F13BF009CD413 /* SmmPciExpressLib */, - A5AAFFF4237F13BE009CD413 /* SmmPciLibPciRootBridgeIo */, - A5AA0305237F13BF009CD413 /* SmmPeriodicSmiLib */, - A5AA028A237F13BF009CD413 /* SmmServicesTableLib */, - A5AAFFF0237F13BE009CD413 /* StandaloneMmDriverEntryPoint */, - A5AAFFA9237F13BE009CD413 /* StandaloneMmServicesTableLib */, - A5AA0292237F13BF009CD413 /* UefiApplicationEntryPoint */, - A5AA0325237F13BF009CD413 /* UefiBootServicesTableLib */, - A5AA03CE237F13C0009CD413 /* UefiDebugLibConOut */, - A5AA0201237F13BF009CD413 /* UefiDebugLibDebugPortProtocol */, - A5AA0329237F13BF009CD413 /* UefiDebugLibStdErr */, - A5AA0332237F13C0009CD413 /* UefiDevicePathLib */, - A5AA0377237F13C0009CD413 /* UefiDevicePathLibDevicePathProtocol */, - A5AA01FD237F13BF009CD413 /* UefiDriverEntryPoint */, - A5AA038F237F13C0009CD413 /* UefiFileHandleLib */, - A5AA03D7237F13C0009CD413 /* UefiLib */, - A5AA03C6237F13C0009CD413 /* UefiMemoryAllocationLib */, - A5AA01C4237F13BF009CD413 /* UefiMemoryLib */, - A5AA041A237F13C0009CD413 /* UefiPciLibPciRootBridgeIo */, - A5AAFFD4237F13BE009CD413 /* UefiPciSegmentLibPciRootBridgeIo */, - A5AA03CA237F13C0009CD413 /* UefiRuntimeLib */, - A5AA0383237F13C0009CD413 /* UefiRuntimeServicesTableLib */, - A5AA0309237F13BF009CD413 /* UefiScsiLib */, - A5AA0442237F13C0009CD413 /* UefiUsbLib */, - ); - path = Library; - sourceTree = ""; - }; - A5AAFFA5237F13BE009CD413 /* PeiServicesTablePointerLibIdt */ = { - isa = PBXGroup; - children = ( - A5AAFFA6237F13BE009CD413 /* PeiServicesTablePointerLibIdt.uni */, - A5AAFFA7237F13BE009CD413 /* PeiServicesTablePointerLibIdt.inf */, - A5AAFFA8237F13BE009CD413 /* PeiServicesTablePointer.c */, - ); - path = PeiServicesTablePointerLibIdt; - sourceTree = ""; - }; - A5AAFFA9237F13BE009CD413 /* StandaloneMmServicesTableLib */ = { - isa = PBXGroup; - children = ( - A5AAFFAA237F13BE009CD413 /* StandaloneMmServicesTableLib.c */, - A5AAFFAB237F13BE009CD413 /* StandaloneMmServicesTableLib.inf */, - A5AAFFAC237F13BE009CD413 /* StandaloneMmServicesTableLib.uni */, - ); - path = StandaloneMmServicesTableLib; - sourceTree = ""; - }; - A5AAFFAD237F13BE009CD413 /* PeiPciLibPciCfg2 */ = { - isa = PBXGroup; - children = ( - A5AAFFAE237F13BE009CD413 /* PeiPciLibPciCfg2.uni */, - A5AAFFAF237F13BE009CD413 /* PeiPciLibPciCfg2.inf */, - A5AAFFB0237F13BE009CD413 /* PciLib.c */, - ); - path = PeiPciLibPciCfg2; - sourceTree = ""; - }; - A5AAFFB1237F13BE009CD413 /* PeiSmbusLibSmbus2Ppi */ = { - isa = PBXGroup; - children = ( - A5AAFFB2237F13BE009CD413 /* SmbusLib.c */, - A5AAFFB3237F13BE009CD413 /* InternalSmbusLib.h */, - A5AAFFB4237F13BE009CD413 /* PeiSmbusLib.c */, - A5AAFFB5237F13BE009CD413 /* PeiSmbusLibSmbus2Ppi.inf */, - A5AAFFB6237F13BE009CD413 /* PeiSmbusLibSmbus2Ppi.uni */, - ); - path = PeiSmbusLibSmbus2Ppi; - sourceTree = ""; - }; - A5AAFFB7237F13BE009CD413 /* BaseDebugPrintErrorLevelLib */ = { - isa = PBXGroup; - children = ( - A5AAFFB8237F13BE009CD413 /* BaseDebugPrintErrorLevelLib.c */, - A5AAFFB9237F13BE009CD413 /* BaseDebugPrintErrorLevelLib.inf */, - A5AAFFBA237F13BE009CD413 /* BaseDebugPrintErrorLevelLib.uni */, - ); - path = BaseDebugPrintErrorLevelLib; - sourceTree = ""; - }; - A5AAFFBB237F13BE009CD413 /* BaseCacheMaintenanceLib */ = { - isa = PBXGroup; - children = ( - A5AAFFBC237F13BE009CD413 /* BaseCacheMaintenanceLib.inf */, - A5AAFFBD237F13BE009CD413 /* BaseCacheMaintenanceLib.uni */, - A5AAFFBE237F13BE009CD413 /* X86Cache.c */, - A5AAFFBF237F13BE009CD413 /* ArmCache.c */, - A5AAFFC0237F13BE009CD413 /* EbcCache.c */, - ); - path = BaseCacheMaintenanceLib; - sourceTree = ""; - }; - A5AAFFC1237F13BE009CD413 /* DxeIoLibCpuIo2 */ = { - isa = PBXGroup; - children = ( - A5AAFFC2237F13BE009CD413 /* IoLibMmioBuffer.c */, - A5AAFFC3237F13BE009CD413 /* IoLib.c */, - A5AAFFC4237F13BE009CD413 /* IoHighLevel.c */, - A5AAFFC5237F13BE009CD413 /* DxeIoLibCpuIo2.uni */, - A5AAFFC6237F13BE009CD413 /* DxeCpuIo2LibInternal.h */, - A5AAFFC7237F13BE009CD413 /* DxeIoLibCpuIo2.inf */, - ); - path = DxeIoLibCpuIo2; - sourceTree = ""; - }; - A5AAFFC8237F13BE009CD413 /* BasePciLibCf8 */ = { - isa = PBXGroup; - children = ( - A5AAFFC9237F13BE009CD413 /* BasePciLibCf8.inf */, - A5AAFFCA237F13BE009CD413 /* BasePciLibCf8.uni */, - A5AAFFCB237F13BE009CD413 /* PciLib.c */, - ); - path = BasePciLibCf8; - sourceTree = ""; - }; - A5AAFFCC237F13BE009CD413 /* PeiServicesTablePointerLib */ = { - isa = PBXGroup; - children = ( - A5AAFFCD237F13BE009CD413 /* PeiServicesTablePointerLib.uni */, - A5AAFFCE237F13BE009CD413 /* PeiServicesTablePointerLib.inf */, - A5AAFFCF237F13BE009CD413 /* PeiServicesTablePointer.c */, - ); - path = PeiServicesTablePointerLib; - sourceTree = ""; - }; - A5AAFFD0237F13BE009CD413 /* BaseDebugLibNull */ = { - isa = PBXGroup; - children = ( - A5AAFFD1237F13BE009CD413 /* BaseDebugLibNull.inf */, - A5AAFFD2237F13BE009CD413 /* BaseDebugLibNull.uni */, - A5AAFFD3237F13BE009CD413 /* DebugLib.c */, - ); - path = BaseDebugLibNull; - sourceTree = ""; - }; - A5AAFFD4237F13BE009CD413 /* UefiPciSegmentLibPciRootBridgeIo */ = { - isa = PBXGroup; - children = ( - A5AAFFD5237F13BE009CD413 /* PciSegmentLib.h */, - A5AAFFD6237F13BE009CD413 /* UefiPciSegmentLibPciRootBridgeIo.inf */, - A5AAFFD7237F13BE009CD413 /* UefiPciSegmentLibPciRootBridgeIo.uni */, - A5AAFFD8237F13BE009CD413 /* PciSegmentLib.c */, - ); - path = UefiPciSegmentLibPciRootBridgeIo; - sourceTree = ""; - }; - A5AAFFD9237F13BE009CD413 /* PeiServicesLib */ = { - isa = PBXGroup; - children = ( - A5AAFFDA237F13BE009CD413 /* PeiServicesLib.inf */, - A5AAFFDB237F13BE009CD413 /* PeiServicesLib.c */, - A5AAFFDC237F13BE009CD413 /* PeiServicesLib.uni */, - ); - path = PeiServicesLib; - sourceTree = ""; - }; - A5AAFFDD237F13BE009CD413 /* BasePciExpressLib */ = { - isa = PBXGroup; - children = ( - A5AAFFDE237F13BE009CD413 /* BasePciExpressLib.uni */, - A5AAFFDF237F13BE009CD413 /* BasePciExpressLib.inf */, - A5AAFFE0237F13BE009CD413 /* PciExpressLib.c */, - ); - path = BasePciExpressLib; - sourceTree = ""; - }; - A5AAFFE1237F13BE009CD413 /* BaseS3SmbusLib */ = { - isa = PBXGroup; - children = ( - A5AAFFE2237F13BE009CD413 /* BaseS3SmbusLib.inf */, - A5AAFFE3237F13BE009CD413 /* BaseS3SmbusLib.uni */, - A5AAFFE4237F13BE009CD413 /* S3SmbusLib.c */, - ); - path = BaseS3SmbusLib; - sourceTree = ""; - }; - A5AAFFE5237F13BE009CD413 /* DxeServicesLib */ = { - isa = PBXGroup; - children = ( - A5AAFFE6237F13BE009CD413 /* Allocate.c */, - A5AAFFE7237F13BE009CD413 /* DxeServicesLib.c */, - A5AAFFE8237F13BE009CD413 /* X64 */, - A5AAFFEA237F13BE009CD413 /* DxeServicesLib.uni */, - A5AAFFEB237F13BE009CD413 /* DxeServicesLib.inf */, - ); - path = DxeServicesLib; - sourceTree = ""; - }; - A5AAFFE8237F13BE009CD413 /* X64 */ = { - isa = PBXGroup; - children = ( - A5AAFFE9237F13BE009CD413 /* Allocate.c */, - ); - path = X64; - sourceTree = ""; - }; - A5AAFFEC237F13BE009CD413 /* SecPeiDxeTimerLibCpu */ = { - isa = PBXGroup; - children = ( - A5AAFFED237F13BE009CD413 /* X86TimerLib.c */, - A5AAFFEE237F13BE009CD413 /* SecPeiDxeTimerLibCpu.inf */, - A5AAFFEF237F13BE009CD413 /* SecPeiDxeTimerLibCpu.uni */, - ); - path = SecPeiDxeTimerLibCpu; - sourceTree = ""; - }; - A5AAFFF0237F13BE009CD413 /* StandaloneMmDriverEntryPoint */ = { - isa = PBXGroup; - children = ( - A5AAFFF1237F13BE009CD413 /* StandaloneMmDriverEntryPoint.inf */, - A5AAFFF2237F13BE009CD413 /* StandaloneMmDriverEntryPoint.uni */, - A5AAFFF3237F13BE009CD413 /* StandaloneMmDriverEntryPoint.c */, - ); - path = StandaloneMmDriverEntryPoint; - sourceTree = ""; - }; - A5AAFFF4237F13BE009CD413 /* SmmPciLibPciRootBridgeIo */ = { - isa = PBXGroup; - children = ( - A5AAFFF5237F13BE009CD413 /* SmmPciLibPciRootBridgeIo.uni */, - A5AAFFF6237F13BE009CD413 /* SmmPciLibPciRootBridgeIo.inf */, - A5AAFFF7237F13BE009CD413 /* PciLib.c */, - ); - path = SmmPciLibPciRootBridgeIo; - sourceTree = ""; - }; - A5AAFFF8237F13BE009CD413 /* BaseLib */ = { - isa = PBXGroup; - children = ( - A5AAFFF9237F13BE009CD413 /* SwapBytes32.c */, - A5AAFFFA237F13BE009CD413 /* X86ReadIdtr.c */, - A5AAFFFB237F13BE009CD413 /* Ebc */, - A5AA0000237F13BE009CD413 /* BaseLibInternals.h */, - A5AA0001237F13BE009CD413 /* DivS64x64Remainder.c */, - A5AA0002237F13BE009CD413 /* X86WriteIdtr.c */, - A5AA0003237F13BE009CD413 /* FilePaths.c */, - A5AA0004237F13BE009CD413 /* BaseLib.uni */, - A5AA0005237F13BE009CD413 /* X86FxRestore.c */, - A5AA0006237F13BE009CD413 /* RRotU64.c */, - A5AA0007237F13BE009CD413 /* LongJump.c */, - A5AA0008237F13BE009CD413 /* Cpu.c */, - A5AA0009237F13BE009CD413 /* BaseLib.inf */, - A5AA000A237F13BE009CD413 /* GetPowerOfTwo64.c */, - A5AA000B237F13BE009CD413 /* X64 */, - A5AA0064237F13BE009CD413 /* X86Msr.c */, - A5AA0065237F13BE009CD413 /* DivU64x64Remainder.c */, - A5AA0066237F13BE009CD413 /* X86Thunk.c */, - A5AA0067237F13BE009CD413 /* CpuDeadLoop.c */, - A5AA0068237F13BE009CD413 /* LowBitSet64.c */, - A5AA0069237F13BE009CD413 /* LRotU64.c */, - A5AA006A237F13BE009CD413 /* X86PatchInstruction.c */, - A5AA006B237F13BE009CD413 /* X86FxSave.c */, - A5AA006C237F13BE009CD413 /* X86GetInterruptState.c */, - A5AA006D237F13BE009CD413 /* CheckSum.c */, - A5AA006E237F13BE009CD413 /* MultU64x32.c */, - A5AA006F237F13BE009CD413 /* String.c */, - A5AA0070237F13BE009CD413 /* X86DisablePaging32.c */, - A5AA0071237F13BE009CD413 /* BitField.c */, - A5AA0072237F13BE009CD413 /* X86EnablePaging64.c */, - A5AA0073237F13BE009CD413 /* HighBitSet64.c */, - A5AA0074237F13BE009CD413 /* LShiftU64.c */, - A5AA0075237F13BE009CD413 /* SafeString.c */, - A5AA0076237F13BE009CD413 /* MultS64x64.c */, - A5AA0077237F13BE009CD413 /* Unaligned.c */, - A5AA0078237F13BE009CD413 /* Ia32 */, - A5AA0134237F13BE009CD413 /* GetPowerOfTwo32.c */, - A5AA0135237F13BE009CD413 /* Math64.c */, - A5AA0136237F13BE009CD413 /* RRotU32.c */, - A5AA0137237F13BE009CD413 /* DivU64x32.c */, - A5AA0138237F13BE009CD413 /* DivU64x32Remainder.c */, - A5AA0139237F13BE009CD413 /* X86MemoryFence.c */, - A5AA013A237F13BE009CD413 /* SwapBytes64.c */, - A5AA013B237F13BE009CD413 /* RShiftU64.c */, - A5AA013C237F13BE009CD413 /* SwitchStack.c */, - A5AA013D237F13BE009CD413 /* ChkStkGcc.c */, - A5AA013E237F13BE009CD413 /* SetJump.c */, - A5AA013F237F13BE009CD413 /* X86EnablePaging32.c */, - A5AA0140237F13BE009CD413 /* X86WriteGdtr.c */, - A5AA0141237F13BE009CD413 /* SwapBytes16.c */, - A5AA0142237F13BF009CD413 /* HighBitSet32.c */, - A5AA0143237F13BF009CD413 /* X86RdRand.c */, - A5AA0144237F13BF009CD413 /* Arm */, - A5AA0159237F13BF009CD413 /* MultU64x64.c */, - A5AA015A237F13BF009CD413 /* X86DisablePaging64.c */, - A5AA015B237F13BF009CD413 /* X86ReadGdtr.c */, - A5AA015C237F13BF009CD413 /* ARShiftU64.c */, - A5AA015D237F13BF009CD413 /* AArch64 */, - A5AA016E237F13BF009CD413 /* LowBitSet32.c */, - A5AA016F237F13BF009CD413 /* LRotU32.c */, - A5AA0170237F13BF009CD413 /* ModU64x32.c */, - A5AA0171237F13BF009CD413 /* LinkedList.c */, - A5AA0172237F13BF009CD413 /* X86SpeculationBarrier.c */, - ); - path = BaseLib; - sourceTree = ""; - }; - A5AAFFFB237F13BE009CD413 /* Ebc */ = { - isa = PBXGroup; - children = ( - A5AAFFFC237F13BE009CD413 /* CpuBreakpoint.c */, - A5AAFFFD237F13BE009CD413 /* SwitchStack.c */, - A5AAFFFE237F13BE009CD413 /* SetJumpLongJump.c */, - A5AAFFFF237F13BE009CD413 /* SpeculationBarrier.c */, - ); - path = Ebc; - sourceTree = ""; - }; A5C3244724B4EA26004E20CC /* OpenRuntime */ = { isa = PBXGroup; children = ( @@ -22961,61 +23252,6 @@ path = AppleMacEfi; sourceTree = ""; }; - A5C330AA24B70FB8004E20CC /* Register */ = { - isa = PBXGroup; - children = ( - A5C330AB24B70FB8004E20CC /* Microcode.h */, - A5C330AC24B70FB8004E20CC /* SmramSaveStateMap.h */, - A5C330AD24B70FB8004E20CC /* Msr */, - A5C330C224B70FB8004E20CC /* Cpuid.h */, - A5C330C324B70FB8004E20CC /* StmStatusCode.h */, - A5C330C424B70FB8004E20CC /* StmResourceDescriptor.h */, - A5C330C524B70FB8004E20CC /* Amd */, - A5C330C924B70FB8004E20CC /* LocalApic.h */, - A5C330CA24B70FB8004E20CC /* StmApi.h */, - A5C330CB24B70FB8004E20CC /* ArchitecturalMsr.h */, - A5C330CC24B70FB8004E20CC /* Msr.h */, - ); - path = Register; - sourceTree = ""; - }; - A5C330AD24B70FB8004E20CC /* Msr */ = { - isa = PBXGroup; - children = ( - A5C330AE24B70FB8004E20CC /* Pentium4Msr.h */, - A5C330AF24B70FB8004E20CC /* IvyBridgeMsr.h */, - A5C330B024B70FB8004E20CC /* BroadwellMsr.h */, - A5C330B124B70FB8004E20CC /* HaswellEMsr.h */, - A5C330B224B70FB8004E20CC /* XeonE7Msr.h */, - A5C330B324B70FB8004E20CC /* Core2Msr.h */, - A5C330B424B70FB8004E20CC /* NehalemMsr.h */, - A5C330B524B70FB8004E20CC /* SandyBridgeMsr.h */, - A5C330B624B70FB8004E20CC /* P6Msr.h */, - A5C330B724B70FB8004E20CC /* PentiumMsr.h */, - A5C330B824B70FB8004E20CC /* SilvermontMsr.h */, - A5C330B924B70FB8004E20CC /* Xeon5600Msr.h */, - A5C330BA24B70FB8004E20CC /* SkylakeMsr.h */, - A5C330BB24B70FB8004E20CC /* CoreMsr.h */, - A5C330BC24B70FB8004E20CC /* XeonDMsr.h */, - A5C330BD24B70FB8004E20CC /* XeonPhiMsr.h */, - A5C330BE24B70FB8004E20CC /* PentiumMMsr.h */, - A5C330BF24B70FB8004E20CC /* GoldmontMsr.h */, - A5C330C024B70FB8004E20CC /* HaswellMsr.h */, - A5C330C124B70FB8004E20CC /* AtomMsr.h */, - ); - path = Msr; - sourceTree = ""; - }; - A5C330C524B70FB8004E20CC /* Amd */ = { - isa = PBXGroup; - children = ( - A5C330C624B70FB8004E20CC /* Cpuid.h */, - A5C330C724B70FB8004E20CC /* Fam17Msr.h */, - A5C330C824B70FB8004E20CC /* Msr.h */, - ); - path = Amd; - sourceTree = ""; - }; A5DEBF3423BF687D00C41734 /* cpp_util */ = { isa = PBXGroup; children = ( @@ -23341,1556 +23577,121 @@ buildActionMask = 2147483647; files = ( A571C28D240574DA00B6A2C5 /* XImage.cpp in Sources */, - A5AAFB26237F13B3009CD413 /* FwVol.c in Sources */, - A5AA0645237F13C2009CD413 /* ZeroMemWrapper.c in Sources */, - A5AAFBB2237F13B3009CD413 /* regenc.c in Sources */, - A5AA061B237F13C2009CD413 /* SetMem64Wrapper.c in Sources */, - A5AA052F237F13C1009CD413 /* WriteDr1.nasm in Sources */, - A5AA04DF237F13C1009CD413 /* MultS64x64.c in Sources */, - A5AA06AC237F13C2009CD413 /* CopyMemWrapper.c in Sources */, - A5AA053D237F13C1009CD413 /* ARShiftU64.nasm in Sources */, - A5AA06D2237F13C2009CD413 /* BootScriptLib.c in Sources */, - A5AA04D9237F13C1009CD413 /* X86DisablePaging32.c in Sources */, - A5AAFC9E237F13B4009CD413 /* EhciUrb.c in Sources */, - A5AAFC6A237F13B3009CD413 /* XhcPeim.c in Sources */, - A5AA06A0237F13C2009CD413 /* ScanMem16Wrapper.c in Sources */, - A5AA056B237F13C1009CD413 /* LongJump.nasm in Sources */, - A5AA0751237F13C3009CD413 /* SetMem32.nasm in Sources */, - A5AA0752237F13C3009CD413 /* ScanMem16.nasm in Sources */, - A5AA06C8237F13C2009CD413 /* ScanMem32Wrapper.c in Sources */, - A5AA04DD237F13C1009CD413 /* LShiftU64.c in Sources */, - A5AA060A237F13C1009CD413 /* InternalGetSpinLockProperties.c in Sources */, - A5AA05A8237F13C1009CD413 /* X86WriteGdtr.c in Sources */, - A5AA061A237F13C2009CD413 /* InterlockedDecrementMsc.c in Sources */, - A5AA0461237F13C0009CD413 /* Allocate.c in Sources */, - A5AA05DB237F13C1009CD413 /* CopyMemWrapper.c in Sources */, - A5AA04C2237F13C1009CD413 /* ReadDr4.nasm in Sources */, - A5AAFB54237F13B3009CD413 /* VirtualMemory.c in Sources */, A5456D6E23FC5B08000BF18C /* b64cdecode.cpp in Sources */, - A5AA05AE237F13C1009CD413 /* EnableInterrupts.asm in Sources */, - A5AAFD59237F13B4009CD413 /* BootManager.c in Sources */, - A5AA04F2237F13C1009CD413 /* WriteGdtr.c in Sources */, - A5AA052A237F13C1009CD413 /* EnableDisableInterrupts.nasm in Sources */, - A5AAFC50237F13B3009CD413 /* EmmcDxe.c in Sources */, A5716F83235968BE000CEC60 /* Nasm.inc in Sources */, - A5AA053A237F13C1009CD413 /* ReadMm1.c in Sources */, - A5AA0452237F13C0009CD413 /* PeiSmbusLib.c in Sources */, - A5AAFC49237F13B3009CD413 /* DmaMem.c in Sources */, - A5AAFBDD237F13B3009CD413 /* PlatDriOverrideDxe.c in Sources */, - A5AA0558237F13C1009CD413 /* ReadMm4.c in Sources */, A5456D5623FC5B08000BF18C /* platformdata.cpp in Sources */, - A5AA05BE237F13C1009CD413 /* SwitchStack.asm in Sources */, - A5AA056D237F13C1009CD413 /* ReadGdtr.nasm in Sources */, - A5AAFC32237F13B3009CD413 /* LaffStd.c in Sources */, - A5AAFD44237F13B4009CD413 /* huffman.c in Sources */, - A5AAFCE6237F13B4009CD413 /* CapsuleOnDisk.c in Sources */, - A5AA0482237F13C1009CD413 /* WriteLdtr.nasm in Sources */, A5456CFB23FC5AB8000BF18C /* egemb_icons_dark.cpp in Sources */, - A5AA04D0237F13C1009CD413 /* CpuDeadLoop.c in Sources */, - A5AA05D4237F13C1009CD413 /* LowBitSet32.c in Sources */, - A5AAFBF4237F13B3009CD413 /* Defer3rdPartyImageLoad.c in Sources */, - A5AA06EA237F13C2009CD413 /* MemLibGeneric.c in Sources */, - A5AA06AE237F13C2009CD413 /* ZeroMem.nasm in Sources */, - A5AAFC06237F13B3009CD413 /* Udf.c in Sources */, - A5AA05C9237F13C1009CD413 /* GetInterruptsState.S in Sources */, - A5AA04FC237F13C1009CD413 /* WriteMm7.c in Sources */, - A5AAFCE0237F13B4009CD413 /* AtaAtapiPassThru.c in Sources */, - A5AA064D237F13C2009CD413 /* SetMem.nasm in Sources */, - A5AAFBE1237F13B3009CD413 /* Service.c in Sources */, - A5AAFC83237F13B4009CD413 /* ComponentName.c in Sources */, - A5AAFC2E237F13B3009CD413 /* Presentation.c in Sources */, A5456CDE23FC5A88000BF18C /* tool.cpp in Sources */, - A5AA04B5237F13C1009CD413 /* LongJump.nasm in Sources */, - A5AA066C237F13C2009CD413 /* CompareMem.S in Sources */, - A5AAFBE5237F13B3009CD413 /* StatusCodeHandlerRuntimeDxe.c in Sources */, - A5AA0598237F13C1009CD413 /* WriteMm2.c in Sources */, - A5AAFCA1237F13B4009CD413 /* ComponentName.c in Sources */, - A5AA0655237F13C2009CD413 /* SetMem32Wrapper.c in Sources */, - A5AAFCD9237F13B4009CD413 /* AhciPeiStorageSecurity.c in Sources */, - A5AAFC7F237F13B4009CD413 /* DmaMem.c in Sources */, - A5AA073D237F13C2009CD413 /* Console.c in Sources */, - A5AAFC58237F13B3009CD413 /* IncompatiblePciDeviceSupport.c in Sources */, - A5AAFCE8237F13B4009CD413 /* DxeCapsuleReportLibNull.c in Sources */, - A5AA0632237F13C2009CD413 /* CpuFlushTlb.c in Sources */, - A5AA05EF237F13C1009CD413 /* ScanMem32.nasm in Sources */, - A5AAFD51237F13B4009CD413 /* DxeSecurityManagementLib.c in Sources */, - A5AA0513237F13C1009CD413 /* FlushCacheLine.c in Sources */, - A5AA06DE237F13C2009CD413 /* DebugLib.c in Sources */, - A5AAFC1B237F13B3009CD413 /* PageFaultHandler.nasm in Sources */, - A5AA07CA237F13CD009CD413 /* IdeController.c in Sources */, - A5AA04D1237F13C1009CD413 /* LowBitSet64.c in Sources */, - A5AAFBCC237F13B3009CD413 /* DriverHealthManagerDxe.c in Sources */, A5456CD823FC5A88000BF18C /* securemenu.cpp in Sources */, - A5AA0544237F13C1009CD413 /* ReadDr2.nasm in Sources */, - A5AA04A4237F13C1009CD413 /* DisableInterrupts.nasm in Sources */, - A5AA04AA237F13C1009CD413 /* WriteDr2.nasm in Sources */, - A5AAFBD4237F13B3009CD413 /* FaultTolerantWriteDxe.c in Sources */, - A5AA071F237F13C2009CD413 /* ScanMem8Wrapper.c in Sources */, - A5AA04F9237F13C1009CD413 /* ReadCr4.nasm in Sources */, - A5AAFBAE237F13B3009CD413 /* utf16_le.c in Sources */, - A5AAFD3E237F13B4009CD413 /* PiSmmCoreSmmServicesTableLib.c in Sources */, - A5AAFB74237F13B3009CD413 /* SetIdtEntry.c in Sources */, - A5AA0658237F13C2009CD413 /* SetMem16.nasm in Sources */, - A5AA0726237F13C2009CD413 /* SetMem.nasm in Sources */, - A5AAFCA2237F13B4009CD413 /* IsaBusDxe.c in Sources */, - A5AAFD01237F13B4009CD413 /* BmBootDescription.c in Sources */, - A5AA069E237F13C2009CD413 /* SetMem16Wrapper.c in Sources */, - A5AA0567237F13C1009CD413 /* DivU64x32.nasm in Sources */, - A5AA0457237F13C0009CD413 /* IoLibMmioBuffer.c in Sources */, - A5AA06F9237F13C2009CD413 /* IoFifoSev.nasm in Sources */, - A5AA05FE237F13C1009CD413 /* Synchronization.c in Sources */, - A5AA0503237F13C1009CD413 /* ReadDr7.nasm in Sources */, - A5AA049E237F13C1009CD413 /* WriteMm3.nasm in Sources */, - A5AAFD67237F13B4009CD413 /* FrontPage.c in Sources */, - A5AA06BF237F13C2009CD413 /* ScanMem64.nasm in Sources */, - A5AAFBF9237F13B3009CD413 /* Partition.c in Sources */, - A5AA0715237F13C2009CD413 /* SetMem16.nasm in Sources */, - A5AA0467237F13C0009CD413 /* SwapBytes32.c in Sources */, - A5AAFC7C237F13B4009CD413 /* NvmExpressPeiS3.c in Sources */, - A5AAFBE8237F13B3009CD413 /* MemoryStausCodeWorker.c in Sources */, - A5AA05D8237F13C1009CD413 /* X86SpeculationBarrier.c in Sources */, - A5AA063F237F13C2009CD413 /* DriverEntryPoint.c in Sources */, - A5AA04A5237F13C1009CD413 /* ReadDr2.nasm in Sources */, - A5AA0653237F13C2009CD413 /* CopyMem.nasm in Sources */, - A5AAFC09237F13B3009CD413 /* File.c in Sources */, - A5AA0677237F13C2009CD413 /* CompareGuid.S in Sources */, - A5AA0631237F13C2009CD413 /* CpuFlushTlbGcc.c in Sources */, - A5AAFCDA237F13B4009CD413 /* AhciPei.c in Sources */, - A5AA05A4237F13C1009CD413 /* SwitchStack.c in Sources */, - A5AA0582237F13C1009CD413 /* WriteDr6.c in Sources */, - A5AAFCC7237F13B4009CD413 /* EfiKey.c in Sources */, - A5AA0661237F13C2009CD413 /* CopyMem.nasm in Sources */, - A5AA0608237F13C1009CD413 /* InterlockedIncrementMsc.c in Sources */, - A5AA05AA237F13C1009CD413 /* HighBitSet32.c in Sources */, - A5AA0473237F13C1009CD413 /* Cpu.c in Sources */, - A5AAFCDC237F13B4009CD413 /* AhciMode.c in Sources */, - A5AA05C2237F13C1009CD413 /* X86ReadGdtr.c in Sources */, A529343E24FB92E0004241C3 /* pure_virtual.cpp in Sources */, - A5AA06D9237F13C2009CD413 /* PciSegmentInfoLib.c in Sources */, - A5AAFC01237F13B3009CD413 /* RamDiskBlockIo.c in Sources */, - A5AAFB59237F13B3009CD413 /* DebugPort.c in Sources */, - A5AAFBBC237F13B3009CD413 /* VariableExLib.c in Sources */, - A5AA0693237F13C2009CD413 /* CopyMemWrapper.c in Sources */, - A5AAFC46237F13B3009CD413 /* EmmcHcMem.c in Sources */, A5456D4D23FC5B08000BF18C /* cpu.cpp in Sources */, A5456D6523FC5B08000BF18C /* BdsConnect.cpp in Sources */, - A5AAFC5C237F13B3009CD413 /* PciDeviceSupport.c in Sources */, - A5AA046A237F13C1009CD413 /* SwitchStack.c in Sources */, - A5AAFCF9237F13B4009CD413 /* GuidedSectionExtraction.c in Sources */, - A5AA07CE237F13CD009CD413 /* PeiAcpiTimerLib.c in Sources */, - A5AAFB4A237F13B3009CD413 /* FwVol.c in Sources */, - A5AA0476237F13C1009CD413 /* WriteDr6.nasm in Sources */, - A5AA06CE237F13C2009CD413 /* ScanMem16Wrapper.c in Sources */, - A5AA06E8237F13C2009CD413 /* CopyMemWrapper.c in Sources */, - A5AAFC85237F13B4009CD413 /* SerialIo.c in Sources */, A5456D6823FC5B08000BF18C /* AcpiPatcher.cpp in Sources */, - A5AA0615237F13C2009CD413 /* Synchronization.S in Sources */, - A5AAFD0F237F13B4009CD413 /* SmmLockBoxSmmLib.c in Sources */, - A5AAFCA7237F13B4009CD413 /* Ps2Mouse.c in Sources */, - A5AAFD49237F13B4009CD413 /* MemoryAllocationLib.c in Sources */, - A5AA06BE237F13C2009CD413 /* SetMem16.nasm in Sources */, - A5AA06F2237F13C2009CD413 /* SetMem16Wrapper.c in Sources */, - A5AA06EB237F13C2009CD413 /* ScanMem8Wrapper.c in Sources */, - A5AA0675237F13C2009CD413 /* SetMem.S in Sources */, - A5AAFBEF237F13B3009CD413 /* TimestampDxe.c in Sources */, - A5AAFCB4237F13B4009CD413 /* UfsDevConfigProtocol.c in Sources */, - A5AA0477237F13C1009CD413 /* Nasm.inc in Sources */, - A5AAFBA9237F13B3009CD413 /* OnigurumaIntrinsics.c in Sources */, - A5AA073A237F13C2009CD413 /* UefiLibPrint.c in Sources */, - A5AA05EA237F13C1009CD413 /* SetMem32Wrapper.c in Sources */, - A5AA05C8237F13C1009CD413 /* CpuBreakpoint.asm in Sources */, - A5AA0616237F13C2009CD413 /* Synchronization.asm in Sources */, - A5AA065B237F13C2009CD413 /* SetMem.nasm in Sources */, - A5AAFBF0237F13B3009CD413 /* ResetSystem.c in Sources */, - A5AA05B1237F13C1009CD413 /* SetJumpLongJump.asm in Sources */, - A5AA05B9237F13C1009CD413 /* Unaligned.c in Sources */, - A5AA0646237F13C2009CD413 /* CopyMemWrapper.c in Sources */, - A5AA0458237F13C0009CD413 /* IoLib.c in Sources */, - A5AA05F3237F13C1009CD413 /* ScanMem8.nasm in Sources */, - A5AA04F8237F13C1009CD413 /* RShiftU64.nasm in Sources */, - A5AA054A237F13C1009CD413 /* LRotU64.nasm in Sources */, - A5AAFB14237F13B3009CD413 /* Stall.c in Sources */, - A5AAFB9E237F13B3009CD413 /* ascii.c in Sources */, - A5AA057D237F13C1009CD413 /* WriteIdtr.nasm in Sources */, - A5AA04B2237F13C1009CD413 /* ReadDr3.nasm in Sources */, - A5AA058E237F13C1009CD413 /* ModU64x32.c in Sources */, - A5AAFC5A237F13B3009CD413 /* PciDriverOverride.c in Sources */, - A5AA053C237F13C1009CD413 /* ReadLdtr.c in Sources */, - A5AA045E237F13C0009CD413 /* PeiServicesLib.c in Sources */, - A5AAFC71237F13B3009CD413 /* UfsPciHcDxe.c in Sources */, 2C794E401A0AA85900D845B0 /* Test.c in Sources */, - A5AA0639237F13C2009CD413 /* CpuSleep.S in Sources */, - A5AAFB25237F13B3009CD413 /* FwVolWrite.c in Sources */, - A5AAFBE3237F13B3009CD413 /* Service.c in Sources */, - A5AA0556237F13C1009CD413 /* InternalSwitchStack.c in Sources */, - A5AAFB3D237F13B3009CD413 /* PiSmmIpl.c in Sources */, - A5AAFC27237F13B3009CD413 /* CapsuleCacheNull.c in Sources */, - A5AA045A237F13C0009CD413 /* PciLib.c in Sources */, - A5AAFC8F237F13B4009CD413 /* DmaMem.c in Sources */, - A5AAFD6E237F13B4009CD413 /* MemoryProfileInfo.c in Sources */, - A5AA06D3237F13C2009CD413 /* DxePcdLib.c in Sources */, - A5AAFC74237F13B3009CD413 /* ComponentName.c in Sources */, - A5AAFB4E237F13B3009CD413 /* StatusCode.c in Sources */, - A5AA06CB237F13C2009CD413 /* CompareMemWrapper.c in Sources */, - A5AA065D237F13C2009CD413 /* SetMem64.nasm in Sources */, - A5AA05E4237F13C1009CD413 /* SetMem64.nasm in Sources */, - A5AA076D237F13C3009CD413 /* PrintLib.c in Sources */, - A5AA06B8237F13C2009CD413 /* ScanMem16.nasm in Sources */, - A5AAFB7B237F13B3009CD413 /* EdbDisasmSupport.c in Sources */, - A5AAFC9D237F13B4009CD413 /* EhciDebug.c in Sources */, - A5AAFD42237F13B4009CD413 /* state.c in Sources */, - A5AA0589237F13C1009CD413 /* ReadMm7.nasm in Sources */, - A5AA0499237F13C1009CD413 /* ReadCs.nasm in Sources */, - A5AA06E0237F13C2009CD413 /* DevicePathUtilities.c in Sources */, - A5AA0687237F13C2009CD413 /* SmmLibNull.c in Sources */, - A5AA074C237F13C2009CD413 /* ScanMem32.nasm in Sources */, A52313152448B1C500421FB2 /* shared_with_menu.cpp in Sources */, - A5AAFCEA237F13B4009CD413 /* DxeCapsuleReportLib.c in Sources */, - A5AAFCE2237F13B4009CD413 /* AtaPassThruExecute.c in Sources */, A5D12C34243A0BDA00DFA98A /* XStringArray.cpp in Sources */, - A5AA04D3237F13C1009CD413 /* X86PatchInstruction.c in Sources */, - A5AAFCB6237F13B4009CD413 /* I2cBus.c in Sources */, - A5AAFCBB237F13B4009CD413 /* MouseHid.c in Sources */, - A5AAFD50237F13B4009CD413 /* VarCheckPcdLibNullClass.c in Sources */, - A5AA06FC237F13C2009CD413 /* IoLibMsc.c in Sources */, - A5AA06A5237F13C2009CD413 /* SmbusLib.c in Sources */, - A5AAFC72237F13B3009CD413 /* UhciDebug.c in Sources */, - A5AAFC94237F13B4009CD413 /* ComponentName.c in Sources */, - A5AAFD05237F13B4009CD413 /* NetBuffer.c in Sources */, - A5AA048C237F13C1009CD413 /* ReadEs.nasm in Sources */, - A5AA061D237F13C2009CD413 /* CopyMemWrapper.c in Sources */, - A5AAFCEB237F13B4009CD413 /* DxeCapsuleLib.c in Sources */, - A5AA05F5237F13C1009CD413 /* ScanMem16.nasm in Sources */, - A5AA050F237F13C1009CD413 /* ReadMm2.nasm in Sources */, - A5AA0666237F13C2009CD413 /* ScanMemGeneric.c in Sources */, - A5AA0565237F13C1009CD413 /* ReadDr3.nasm in Sources */, - A5AA055E237F13C1009CD413 /* MultU64x32.nasm in Sources */, - A5AA063E237F13C2009CD413 /* PeiExtractGuidedSectionLib.c in Sources */, - A5AAFBD0237F13B3009CD413 /* FaultTolerantWrite.c in Sources */, - A5AA050D237F13C1009CD413 /* WriteMm5.nasm in Sources */, - A5AA0636237F13C2009CD413 /* CpuFlushTlb.S in Sources */, - A5AAFD41237F13B4009CD413 /* transform.c in Sources */, - A5AAFD56237F13B4009CD413 /* MemoryAllocationLib.c in Sources */, - A5AA04EB237F13C1009CD413 /* ReadDs.nasm in Sources */, - A5AA06BD237F13C2009CD413 /* CompareMem.nasm in Sources */, - A5AAFD14237F13B4009CD413 /* SmmMemoryProfileLib.c in Sources */, - A5AAFCFA237F13B4009CD413 /* DeviceManager.c in Sources */, - A5AAFD10237F13B4009CD413 /* SmmLockBoxPeiLib.c in Sources */, - A5AA061E237F13C2009CD413 /* ScanMem64Wrapper.c in Sources */, - A5AA0542237F13C1009CD413 /* SwapBytes64.nasm in Sources */, - A5AAFCED237F13B4009CD413 /* OemHookStatusCodeLibNull.c in Sources */, - A5AA0540237F13C1009CD413 /* ReadDr0.c in Sources */, - A5AA06C6237F13C2009CD413 /* ScanMem16.nasm in Sources */, - A5AA05FA237F13C1009CD413 /* CompareMemWrapper.c in Sources */, - A5AA0771237F13C3009CD413 /* IoHighLevel.c in Sources */, - A5AA06DC237F13C2009CD413 /* UefiBootServicesTableLib.c in Sources */, - A5AAFC1E237F13B3009CD413 /* ResetSystem.c in Sources */, - A5AAFB1B237F13B3009CD413 /* Handle.c in Sources */, - A5AAFBE0237F13B3009CD413 /* Pcd.c in Sources */, - A5AA04E3237F13C1009CD413 /* WriteDr3.c in Sources */, - A5AAFB53237F13B3009CD413 /* DxeLoad.c in Sources */, - A5AAFBF2237F13B3009CD413 /* FvSimpleFileSystem.c in Sources */, - A5AAFCD1237F13B4009CD413 /* UsbMassBoot.c in Sources */, - A5AAFB63237F13B3009CD413 /* AmlNamespace.c in Sources */, - A5AAFC48237F13B3009CD413 /* EmmcBlockIoPei.c in Sources */, - A5AAFD36237F13B4009CD413 /* ConsoleOption.c in Sources */, - A5AA06ED237F13C2009CD413 /* ScanMem32Wrapper.c in Sources */, - A5AA0525237F13C1009CD413 /* EnableCache.c in Sources */, - A5AA07C9237F13CD009CD413 /* HpetTimer.c in Sources */, - A5AA055C237F13C1009CD413 /* ReadCr0.c in Sources */, - A5AAFBCD237F13B3009CD413 /* MonotonicCounter.c in Sources */, - A5AA05D7237F13C1009CD413 /* LinkedList.c in Sources */, A529343B24FB92BD004241C3 /* XStringArray_test.cpp in Sources */, - A5AA04B4237F13C1009CD413 /* Invd.nasm in Sources */, - A5AAFC0E237F13B3009CD413 /* Font.c in Sources */, - A5AAFC0A237F13B3009CD413 /* LightMemoryTest.c in Sources */, A5456D5223FC5B08000BF18C /* ati.cpp in Sources */, A5456D6623FC5B08000BF18C /* Hibernate.cpp in Sources */, - A5AA0590237F13C1009CD413 /* ReadMm7.c in Sources */, - A5AA056A237F13C1009CD413 /* ReadMm0.c in Sources */, - A5AA05F7237F13C1009CD413 /* ScanMem32Wrapper.c in Sources */, - A5AAFB51237F13B3009CD413 /* Ppi.c in Sources */, - A5AA06FD237F13C2009CD413 /* IoFifo.nasm in Sources */, - A5AAFBF3237F13B3009CD413 /* ComponentName.c in Sources */, - A5AA06AA237F13C2009CD413 /* SetMem64Wrapper.c in Sources */, - A5AA05F9237F13C1009CD413 /* SetMemWrapper.c in Sources */, A52313212448B29300421FB2 /* BasicIO.cpp in Sources */, - A5AA0769237F13C3009CD413 /* PciLib.c in Sources */, A5D12C2E243A0B7900DFA98A /* printf_lite-test.cpp in Sources */, - A5AA04A0237F13C1009CD413 /* ReadCr3.nasm in Sources */, - A5AA0509237F13C1009CD413 /* ReadIdtr.nasm in Sources */, - A5AA056E237F13C1009CD413 /* Wbinvd.nasm in Sources */, - A5AA0635237F13C2009CD413 /* CpuSleepGcc.c in Sources */, - A5AAFC7A237F13B4009CD413 /* NvmExpressPei.c in Sources */, - A5AAFB8F237F13B3009CD413 /* EdbCmdBreak.c in Sources */, - A5AA0459237F13C0009CD413 /* IoHighLevel.c in Sources */, - A5AA072F237F13C2009CD413 /* SetMemWrapper.c in Sources */, - A5AA064F237F13C2009CD413 /* SetMem64.nasm in Sources */, - A5AAFCFF237F13B4009CD413 /* BmHotkey.c in Sources */, - A5AAFBF8237F13B3009CD413 /* PeiCdExpress.c in Sources */, - A5AA076F237F13C3009CD413 /* IoLibMmioBuffer.c in Sources */, - A5AA05B8237F13C1009CD413 /* GetInterruptsState.asm in Sources */, - A5AA062E237F13C2009CD413 /* CpuSleep.nasm in Sources */, - A5AA04F3237F13C1009CD413 /* CpuPause.nasm in Sources */, - A5AAFCE1237F13B4009CD413 /* AhciMode.c in Sources */, A5456D4E23FC5B08000BF18C /* StateGenerator.cpp in Sources */, - A5AA04CA237F13C1009CD413 /* WriteDr5.nasm in Sources */, - A5AA059F237F13C1009CD413 /* DivU64x32.c in Sources */, - A5AAFCC0237F13B4009CD413 /* UsbBus.c in Sources */, - A5AA0668237F13C2009CD413 /* CopyMem.S in Sources */, - A5AA0766237F13C3009CD413 /* SetMem16Wrapper.c in Sources */, A5456D9323FC5B72000BF18C /* memory.cpp in Sources */, - A5AA04D6237F13C1009CD413 /* CheckSum.c in Sources */, - A5AA06F3237F13C2009CD413 /* MemLibGuid.c in Sources */, - A5AA04F6237F13C1009CD413 /* Wbinvd.c in Sources */, - A5AAFB2A237F13B3009CD413 /* Gcd.c in Sources */, - A5AA06B0237F13C2009CD413 /* SetMem16.nasm in Sources */, - A5AA0564237F13C1009CD413 /* WriteMm1.c in Sources */, A529342D24FB9257004241C3 /* XBuffer.cpp in Sources */, - A5AAFBB6237F13B3009CD413 /* unicode_fold_data.c in Sources */, - A5AAFCF0237F13B4009CD413 /* LockBoxNullLib.c in Sources */, - A5AA0481237F13C1009CD413 /* ReadCr4.nasm in Sources */, - A5AA051C237F13C1009CD413 /* RdRand.nasm in Sources */, - A5AAFB6D237F13B3009CD413 /* BootGraphicsResourceTableDxe.c in Sources */, - A5AAFB55237F13B3009CD413 /* DxeLoadFunc.c in Sources */, - A5AA05A3237F13C1009CD413 /* RShiftU64.c in Sources */, - A5AAFB8C237F13B3009CD413 /* EdbCmdHelp.c in Sources */, - A5AA0520237F13C1009CD413 /* WriteDr4.c in Sources */, - A5AA051F237F13C1009CD413 /* LRotU64.c in Sources */, - A5AAFCFC237F13B4009CD413 /* PeiCrc32GuidedSectionExtractLib.c in Sources */, - A5AA06EC237F13C2009CD413 /* SetMem32Wrapper.c in Sources */, - A5AAFBD9237F13B3009CD413 /* DriverSample.c in Sources */, - A5AAFC04237F13B3009CD413 /* UnicodeCollationEng.c in Sources */, - A5AA07CD237F13CD009CD413 /* DxeAcpiTimerLib.c in Sources */, A5456D5323FC5B08000BF18C /* Events.cpp in Sources */, - A5AA0741237F13C2009CD413 /* HstiAip.c in Sources */, - A5AA0664237F13C2009CD413 /* SetMemWrapper.c in Sources */, - A5AAFCBA237F13B4009CD413 /* UsbMouse.c in Sources */, - A5AA0669237F13C2009CD413 /* SetMem.S in Sources */, - A5AAFC62237F13B3009CD413 /* PciBus.c in Sources */, - A5AA0622237F13C2009CD413 /* ScanMem32Wrapper.c in Sources */, - A5AAFC0D237F13B3009CD413 /* ConfigRouting.c in Sources */, - A5AA05D5237F13C1009CD413 /* LRotU32.c in Sources */, - A5AA057B237F13C1009CD413 /* ReadDr7.c in Sources */, - A5AA06B9237F13C2009CD413 /* CopyMem.nasm in Sources */, - A5AA0524237F13C1009CD413 /* ReadDr5.c in Sources */, - A5AAFD62237F13B4009CD413 /* PeiResetSystemLib.c in Sources */, - A5AAFD66237F13B4009CD413 /* FrontPageCustomizedUi.c in Sources */, - A5AAFC82237F13B4009CD413 /* SataController.c in Sources */, - A5AA068E237F13C2009CD413 /* SmmServicesTableLib.c in Sources */, - A5AAFBA2237F13B3009CD413 /* unicode_fold1_key.c in Sources */, - A5AA0637237F13C2009CD413 /* CpuFlushTlb.asm in Sources */, - A5AAFCCE237F13B4009CD413 /* PeiAtapi.c in Sources */, - A5AAFB19237F13B3009CD413 /* PropertiesTable.c in Sources */, - A5AAFBBE237F13B3009CD413 /* VariableStandaloneMm.c in Sources */, - A5AA0660237F13C2009CD413 /* ScanMem16.nasm in Sources */, - A5AA0620237F13C2009CD413 /* ScanMem8Wrapper.c in Sources */, - A5AAFC16237F13B3009CD413 /* BdsEntry.c in Sources */, - A5AAFC30237F13B3009CD413 /* IfrParse.c in Sources */, - A5AAFCC9237F13B4009CD413 /* UsbIoPeim.c in Sources */, - A5AA046D237F13C1009CD413 /* DivS64x64Remainder.c in Sources */, - A5AA07D3237F13CD009CD413 /* 8259.c in Sources */, - A5AAFCA5237F13B4009CD413 /* Ps2KbdCtrller.c in Sources */, - A5AAFC5B237F13B3009CD413 /* PciResourceSupport.c in Sources */, - A5AA0730237F13C2009CD413 /* CompareMemWrapper.c in Sources */, - A5AA0523237F13C1009CD413 /* WriteGdtr.nasm in Sources */, - A5AAFD09237F13B4009CD413 /* VarCheckLib.c in Sources */, - A5AA06B2237F13C2009CD413 /* ScanMem32.nasm in Sources */, - A5AA07C8237F13CD009CD413 /* PcatIsaAcpi.c in Sources */, - A5AA06AB237F13C2009CD413 /* ZeroMemWrapper.c in Sources */, - A5AA04F7237F13C1009CD413 /* DisablePaging32.c in Sources */, - A5AAFCFE237F13B4009CD413 /* BmConsole.c in Sources */, A5456D6C23FC5B08000BF18C /* card_vlist.cpp in Sources */, - A5AA04FF237F13C1009CD413 /* LShiftU64.nasm in Sources */, - A5AA0738237F13C2009CD413 /* DebugLib.c in Sources */, - A5AA04C3237F13C1009CD413 /* ReadMm6.nasm in Sources */, - A5AA0680237F13C2009CD413 /* BaseRng.c in Sources */, - A5AAFCDD237F13B4009CD413 /* AhciPeiS3.c in Sources */, - A5AA06E5237F13C2009CD413 /* HobLib.c in Sources */, - A5AA071A237F13C2009CD413 /* SetMem64.nasm in Sources */, - A5AA06CA237F13C2009CD413 /* SetMemWrapper.c in Sources */, - A5AA053E237F13C1009CD413 /* LShiftU64.c in Sources */, - A5AA05A5237F13C1009CD413 /* ChkStkGcc.c in Sources */, - A5AA0478237F13C1009CD413 /* WriteTr.nasm in Sources */, - A5AA0511237F13C1009CD413 /* ReadEs.nasm in Sources */, - A5AA05FB237F13C1009CD413 /* SetMem16Wrapper.c in Sources */, - A5AA064E237F13C2009CD413 /* IsZeroBuffer.nasm in Sources */, - A5AA04B9237F13C1009CD413 /* WriteMsr64.c in Sources */, - A5AAFB7F237F13B3009CD413 /* EdbSupportString.c in Sources */, - A5AAFBEA237F13B3009CD413 /* StatusCodeHandlerPei.c in Sources */, - A5AA0491237F13C1009CD413 /* WriteMm2.nasm in Sources */, - A5AAFBFC237F13B3009CD413 /* ElTorito.c in Sources */, - A5AA0583237F13C1009CD413 /* ReadDr4.nasm in Sources */, - A5AA05FC237F13C1009CD413 /* MemLibGuid.c in Sources */, - A5AA048A237F13C1009CD413 /* ReadMm2.nasm in Sources */, - A5AA0532237F13C1009CD413 /* WriteMm3.nasm in Sources */, A5456D6323FC5B08000BF18C /* nvidia.cpp in Sources */, - A5AA0500237F13C1009CD413 /* ReadTr.c in Sources */, A5456D4B23FC5B08000BF18C /* PlatformDriverOverride.cpp in Sources */, - A5AA0764237F13C3009CD413 /* SetMemWrapper.c in Sources */, - A5AAFD0D237F13B4009CD413 /* ReportStatusCodeLib.c in Sources */, - A5AAFBEE237F13B3009CD413 /* DebugServicePei.c in Sources */, - A5AAFBBD237F13B3009CD413 /* VariableSmmRuntimeDxe.c in Sources */, - A5AA06C7237F13C2009CD413 /* CopyMem.nasm in Sources */, - A5AA0492237F13C1009CD413 /* EnableInterrupts.nasm in Sources */, - A5AA0732237F13C2009CD413 /* MemLibGuid.c in Sources */, - A5AA06DB237F13C2009CD413 /* BaseExtractGuidedSectionLib.c in Sources */, - A5AAFBBA237F13B3009CD413 /* SpeculationBarrierSmm.c in Sources */, - A5AAFC88237F13B4009CD413 /* PciHostBridge.c in Sources */, - A5AA063B237F13C2009CD413 /* CpuFlushTlb.asm in Sources */, - A5AAFBE9237F13B3009CD413 /* SerialStatusCodeWorker.c in Sources */, - A5AA0763237F13C3009CD413 /* IsZeroBufferWrapper.c in Sources */, - A5AAFD2A237F13B4009CD413 /* CustomizedDisplayLibInternal.c in Sources */, - A5AAFB52237F13B3009CD413 /* DxeLoadFunc.c in Sources */, A523131E2448B27B00421FB2 /* APFS.cpp in Sources */, - A5AA04C5237F13C1009CD413 /* ReadMm7.nasm in Sources */, - A5AA0753237F13C3009CD413 /* CopyMem.nasm in Sources */, - A5AA0723237F13C2009CD413 /* SetMem16.nasm in Sources */, - A5AA06A6237F13C2009CD413 /* BaseSmbusLibNull.c in Sources */, - A5AA0562237F13C1009CD413 /* RShiftU64.c in Sources */, - A5AA04FD237F13C1009CD413 /* RRotU64.c in Sources */, - A5AAFD00237F13B4009CD413 /* BmLoadOption.c in Sources */, - A5AA04A8237F13C1009CD413 /* DisablePaging64.nasm in Sources */, - A5AAFB69237F13B3009CD413 /* AmlChild.c in Sources */, - A5AA076B237F13C3009CD413 /* SmiHandlerProfileLibNull.c in Sources */, - A5AAFCC2237F13B4009CD413 /* UsbEnumer.c in Sources */, - A5AA0674237F13C2009CD413 /* CopyMem.S in Sources */, - A5AA0702237F13C2009CD413 /* ArmVirtMmio.S in Sources */, - A5AAFB24237F13B3009CD413 /* Ffs.c in Sources */, - A5AAFC68237F13B3009CD413 /* DmaMem.c in Sources */, - A5AAFB68237F13B3009CD413 /* AcpiTable.c in Sources */, - A5AA0734237F13C2009CD413 /* BaseOrderedCollectionRedBlackTreeLib.c in Sources */, - A5AA0707237F13C2009CD413 /* UefiDevicePathLib.c in Sources */, - A5AA0512237F13C1009CD413 /* ReadEs.c in Sources */, - A5AA0529237F13C1009CD413 /* WriteCr0.c in Sources */, - A5AA073F237F13C2009CD413 /* Acpi.c in Sources */, - A5AA04AD237F13C1009CD413 /* CpuBreakpoint.c in Sources */, - A5AA05B7237F13C1009CD413 /* SetJumpLongJump.S in Sources */, - A5AAFD1A237F13B4009CD413 /* BasePlatformHookLibNull.c in Sources */, - A5AAFD1D237F13B4009CD413 /* FrameBufferBltLib.c in Sources */, - A5AA058F237F13C1009CD413 /* ReadSs.nasm in Sources */, - A5AAFD27237F13B4009CD413 /* VarCheckHiiLibNullClass.c in Sources */, - A5AA044F237F13C0009CD413 /* StandaloneMmServicesTableLib.c in Sources */, - A5AAFBB3237F13B3009CD413 /* regerror.c in Sources */, - A5AAFB9B237F13B3009CD413 /* SectionExtractionDxe.c in Sources */, - A5AAFC98237F13B4009CD413 /* NonDiscoverablePciDeviceDxe.c in Sources */, A5D12C2D243A0B7900DFA98A /* printlib-test.cpp in Sources */, - A5AAFBDC237F13B3009CD413 /* PlatDriOverrideLib.c in Sources */, - A5AA0485237F13C1009CD413 /* ReadMm5.nasm in Sources */, - A5AAFC2C237F13B3009CD413 /* CapsuleService.c in Sources */, - A5AA0453237F13C0009CD413 /* BaseDebugPrintErrorLevelLib.c in Sources */, - A5AAFD29237F13B4009CD413 /* DisplayUpdateProgressLibText.c in Sources */, - A5AA072B237F13C2009CD413 /* ScanMem16.nasm in Sources */, - A5AA05CA237F13C1009CD413 /* MemoryFence.asm in Sources */, - A5AA0510237F13C1009CD413 /* ReadDr0.nasm in Sources */, - A5AAFBB8237F13B3009CD413 /* Measurement.c in Sources */, - A5AA075D237F13C3009CD413 /* SetMem64.nasm in Sources */, A5456D6D23FC5B08000BF18C /* guid.cpp in Sources */, - A5AA06F7237F13C2009CD413 /* IoLibMmioBuffer.c in Sources */, - A5AAFBB5237F13B3009CD413 /* reggnu.c in Sources */, - A5AA0519237F13C1009CD413 /* SetJump.nasm in Sources */, - A5AAFBD7237F13B3009CD413 /* UpdateWorkingBlock.c in Sources */, - A5AA0737237F13C2009CD413 /* DebugLibConstructor.c in Sources */, - A5AA0501237F13C1009CD413 /* ReadMm6.c in Sources */, - A5AAFCF3237F13B4009CD413 /* PeiIpmiLibIpmiPpi.c in Sources */, - A5AAFBEB237F13B3009CD413 /* MemoryStatusCodeWorker.c in Sources */, - A5AA0625237F13C2009CD413 /* MemLib.c in Sources */, - A5AA071E237F13C2009CD413 /* CopyMem.nasm in Sources */, - A5AA0630237F13C2009CD413 /* CpuSleep.c in Sources */, - A5AAFC12237F13B3009CD413 /* HiiDatabaseEntry.c in Sources */, A5456D5B23FC5B08000BF18C /* Edid.cpp in Sources */, - A5AA06D6237F13C2009CD413 /* PeiResourcePublicationLib.c in Sources */, - A5AA0767237F13C3009CD413 /* MemLibGuid.c in Sources */, - A5AA075C237F13C3009CD413 /* IsZeroBuffer.nasm in Sources */, - A5AAFC80237F13B4009CD413 /* NvmExpressPeiPassThru.c in Sources */, - A5AAFD06237F13B4009CD413 /* DxeNetLib.c in Sources */, - A5AA046B237F13C1009CD413 /* SetJumpLongJump.c in Sources */, - A5AAFBFD237F13B3009CD413 /* Mbr.c in Sources */, - A5AA0621237F13C2009CD413 /* SetMem32Wrapper.c in Sources */, - A5AAFBC8237F13B3009CD413 /* FormDisplay.c in Sources */, - A5AAFD60237F13B4009CD413 /* DxeCorePerformanceLib.c in Sources */, - A5AAFCA6237F13B4009CD413 /* ComponentName.c in Sources */, - A5AA057F237F13C1009CD413 /* DivU64x32Remainder.nasm in Sources */, - A5AA0493237F13C1009CD413 /* RdRand.nasm in Sources */, - A5AAFB6C237F13B3009CD413 /* S3SaveState.c in Sources */, - A5AAFC3A237F13B3009CD413 /* ConPlatform.c in Sources */, - A5AAFB44237F13B3009CD413 /* PciCfg2.c in Sources */, - A5AAFC24237F13B3009CD413 /* ReportStatusCodeRouterPei.c in Sources */, - A5AA0475237F13C1009CD413 /* WriteMm4.nasm in Sources */, - A5AA05C3237F13C1009CD413 /* ARShiftU64.c in Sources */, - A5AAFD3F237F13B4009CD413 /* BrotliDecompress.c in Sources */, - A5AA06E7237F13C2009CD413 /* ZeroMemWrapper.c in Sources */, - A5AAFC43237F13B3009CD413 /* SdHcMem.c in Sources */, - A5AAFB39237F13B3009CD413 /* Dispatcher.c in Sources */, - A5AA0579237F13C1009CD413 /* WriteMm6.nasm in Sources */, - A5AA06E1237F13C2009CD413 /* UefiDevicePathLib.c in Sources */, A57CF7C8241BE0A4006DE51E /* strlen.cpp in Sources */, - A5AA06C1237F13C2009CD413 /* SetMem.nasm in Sources */, - A5AAFC2F237F13B3009CD413 /* Setup.c in Sources */, - A5AA058D237F13C1009CD413 /* WriteCr2.c in Sources */, A5456D9023FC5B72000BF18C /* globals_dtor.cpp in Sources */, - A5AAFBE4237F13B3009CD413 /* SectionExtractionPei.c in Sources */, - A5AAFB71237F13B3009CD413 /* S3Asm.nasm in Sources */, - A5AAFC2A237F13B3009CD413 /* SaveLongModeContext.c in Sources */, - A5AAFD1F237F13B4009CD413 /* DebugLib.c in Sources */, - A5AA073C237F13C2009CD413 /* UefiNotTiano.c in Sources */, - A5AA0703237F13C2009CD413 /* ArmVirtMmio.asm in Sources */, - A5AA0580237F13C1009CD413 /* FxSave.nasm in Sources */, - A5AAFD6F237F13B4009CD413 /* DumpDynPcd.c in Sources */, - A5AA051A237F13C1009CD413 /* WriteMm2.nasm in Sources */, A5456D8023FC5B40000BF18C /* lib.cpp in Sources */, - A5AAFC3D237F13B3009CD413 /* ComponentName.c in Sources */, - A5AAFC29237F13B3009CD413 /* CapsuleReset.c in Sources */, - A5AA06FA237F13C2009CD413 /* IoLib.c in Sources */, - A5AA0560237F13C1009CD413 /* DisablePaging32.nasm in Sources */, - A5AA0704237F13C2009CD413 /* IoLibArmVirt.c in Sources */, - A5AA050B237F13C1009CD413 /* CpuIdEx.c in Sources */, A5456D5D23FC5B08000BF18C /* gma.cpp in Sources */, - A5AA068B237F13C2009CD413 /* SafeIntLibEbc.c in Sources */, - A5AA0472237F13C1009CD413 /* LongJump.c in Sources */, - A5AA0647237F13C2009CD413 /* ScanMem64Wrapper.c in Sources */, - A5AA045B237F13C0009CD413 /* PeiServicesTablePointer.c in Sources */, - A5AA04A9237F13C1009CD413 /* WriteCr0.nasm in Sources */, - A5AAFB3C237F13B3009CD413 /* InstallConfigurationTable.c in Sources */, - A5AA05F2237F13C1009CD413 /* SetMem64.nasm in Sources */, - A5AA0679237F13C2009CD413 /* ScanMem16Wrapper.c in Sources */, - A5AA0553237F13C1009CD413 /* CpuBreakpoint.c in Sources */, - A5AA0548237F13C1009CD413 /* MultU64x64.nasm in Sources */, - A5AAFBB9237F13B3009CD413 /* SpeculationBarrierDxe.c in Sources */, - A5AAFCCC237F13B4009CD413 /* PeiUsbLib.c in Sources */, - A5AA06F0237F13C2009CD413 /* MemLib.c in Sources */, - A5AA05BC237F13C1009CD413 /* MemoryFence.S in Sources */, - A5AA05E0237F13C1009CD413 /* ScanMem64.nasm in Sources */, - A5AA07C6237F13CD009CD413 /* IsaAcpi.c in Sources */, - A5AA06A4237F13C2009CD413 /* DxeSmbusLib.c in Sources */, - A5AA04B8237F13C1009CD413 /* ReadEflags.nasm in Sources */, - A5AA04BD237F13C1009CD413 /* WriteMm6.nasm in Sources */, - A5AAFD18237F13B4009CD413 /* BootScriptExecute.c in Sources */, - A5AA0768237F13C3009CD413 /* ScanMem16Wrapper.c in Sources */, - A5AAFB82237F13B3009CD413 /* EdbCmdMemory.c in Sources */, - A5AA057E237F13C1009CD413 /* MultU64x64.c in Sources */, - A5AA062F237F13C2009CD413 /* CpuFlushTlb.nasm in Sources */, - A5AA0531237F13C1009CD413 /* ReadMsr64.c in Sources */, A5456CF923FC5AB8000BF18C /* image.cpp in Sources */, - A5AAFC55237F13B3009CD413 /* ComponentName.c in Sources */, A57CF7D3241BE0FC006DE51E /* strlen_test.cpp in Sources */, - A5AA0743237F13C2009CD413 /* S3StallLib.c in Sources */, - A5AA0667237F13C2009CD413 /* CompareMem.asm in Sources */, - A5AA045C237F13C0009CD413 /* DebugLib.c in Sources */, - A5AAFD21237F13B4009CD413 /* PeiDebugPrintHobLib.c in Sources */, A5D12C22243A0B6500DFA98A /* LoadOptions_test.cpp in Sources */, - A5AA0735237F13C2009CD413 /* MemoryAllocationLib.c in Sources */, - A5AAFC31237F13B3009CD413 /* ComponentName.c in Sources */, - A5AAFC7E237F13B4009CD413 /* NvmExpressPeiHci.c in Sources */, - A5AA0717237F13C2009CD413 /* ScanMem32.nasm in Sources */, - A5AAFBF1237F13B3009CD413 /* FvSimpleFileSystemEntryPoint.c in Sources */, - A5AA067A237F13C2009CD413 /* PerformanceLib.c in Sources */, - A5AAFC2B237F13B3009CD413 /* CapsuleReset.c in Sources */, - A5AA05EC237F13C1009CD413 /* CompareMem.nasm in Sources */, - A5AAFD26237F13B4009CD413 /* VarCheckHiiGenFromHii.c in Sources */, - A5AA04D8237F13C1009CD413 /* String.c in Sources */, - A5AA0584237F13C1009CD413 /* ReadMm6.nasm in Sources */, - A5AA06A8237F13C2009CD413 /* S3IoLib.c in Sources */, - A5AA0686237F13C2009CD413 /* PeCoffLoaderEx.c in Sources */, - A5AA0762237F13C3009CD413 /* ScanMem32Wrapper.c in Sources */, A5456D0423FC5AB8000BF18C /* VectorGraphics.cpp in Sources */, - A5AA0489237F13C1009CD413 /* WriteMm5.nasm in Sources */, - A5AA0575237F13C1009CD413 /* WriteDr4.nasm in Sources */, - A5AAFC91237F13B4009CD413 /* NvmExpressPassthru.c in Sources */, - A5AA07CF237F13CD009CD413 /* AcpiTimerLib.c in Sources */, - A5AA04B6237F13C1009CD413 /* ReadGdtr.nasm in Sources */, - A5AA0678237F13C2009CD413 /* ScanMem.S in Sources */, A529343C24FB92BD004241C3 /* XToolsCommon_test.cpp in Sources */, A5456D5A23FC5B08000BF18C /* LegacyBoot.cpp in Sources */, - A5AAFB91237F13B3009CD413 /* EdbCmdBreakpoint.c in Sources */, - A5AAFB92237F13B3009CD413 /* EbcSupport.c in Sources */, - A5AA076E237F13C3009CD413 /* PrintLibInternal.c in Sources */, - A5AA062A237F13C2009CD413 /* BasePciSegmentLib.c in Sources */, - A5AAFB37237F13B3009CD413 /* HeapGuard.c in Sources */, - A5AAFC75237F13B4009CD413 /* UhciSched.c in Sources */, - A5AAFB1C237F13B3009CD413 /* Locate.c in Sources */, - A5AA0535237F13C1009CD413 /* WriteMm0.c in Sources */, - A5AAFCF6237F13B4009CD413 /* Bra86.c in Sources */, - A5AAFB85237F13B3009CD413 /* EdbCommand.c in Sources */, - A5AAFB89237F13B3009CD413 /* EdbCmdGo.c in Sources */, - A5AA0595237F13C1009CD413 /* InternalSwitchStack.nasm in Sources */, - A5AA04B3237F13C1009CD413 /* CpuBreakpoint.nasm in Sources */, - A5AA07D5237F13CD009CD413 /* PcRtc.c in Sources */, - A5AAFBD6237F13B3009CD413 /* FtwMisc.c in Sources */, - A5AAFBB1237F13B3009CD413 /* onig_init.c in Sources */, - A5AA0759237F13C3009CD413 /* ScanMem64.nasm in Sources */, - A5AAFCD3237F13B4009CD413 /* UsbMassCbi.c in Sources */, - A5AA050A237F13C1009CD413 /* WriteDr7.nasm in Sources */, - A5AAFD3A237F13B4009CD413 /* BaseHobLibNull.c in Sources */, - A5AA0776237F13C3009CD413 /* Hid.c in Sources */, - A5AA04BA237F13C1009CD413 /* Non-existing.c in Sources */, - A5AA07D0237F13CD009CD413 /* IoApicLib.c in Sources */, - A5AAFC8E237F13B4009CD413 /* UhcPeim.c in Sources */, - A5AA07CC237F13CD009CD413 /* BaseAcpiTimerLib.c in Sources */, - A5AAFCEE237F13B4009CD413 /* DxeCrc32GuidedSectionExtractLib.c in Sources */, - A5AA05E2237F13C1009CD413 /* SetMem.nasm in Sources */, - A5AA071C237F13C2009CD413 /* SetMem32.nasm in Sources */, - A5AA0619237F13C2009CD413 /* SynchronizationGcc.c in Sources */, - A5AAFC13237F13B3009CD413 /* ImageEx.c in Sources */, - A5AA0611237F13C1009CD413 /* InterlockedCompareExchange32.nasm in Sources */, - A5AAFBA6237F13B3009CD413 /* unicode_egcb_data.c in Sources */, - A5AA0700237F13C2009CD413 /* ArmVirtMmio.S in Sources */, - A5AA05B2237F13C1009CD413 /* CpuBreakpoint.asm in Sources */, - A5AA05B6237F13C1009CD413 /* DisableInterrupts.asm in Sources */, A5456D5423FC5B08000BF18C /* Nvram.cpp in Sources */, - A5AAFB57237F13B3009CD413 /* DxeLoadFunc.c in Sources */, A5456D0023FC5AB8000BF18C /* nanosvgrast.cpp in Sources */, - A5AA0450237F13C0009CD413 /* PciLib.c in Sources */, - A5AA072A237F13C2009CD413 /* SetMem32.nasm in Sources */, - A5AA06EE237F13C2009CD413 /* IsZeroBufferWrapper.c in Sources */, - A5AA06BA237F13C2009CD413 /* ScanMem8Wrapper.c in Sources */, A5456D6423FC5B08000BF18C /* Net.cpp in Sources */, - A5AA0563237F13C1009CD413 /* ReadMm1.nasm in Sources */, - A5AAFD04237F13B4009CD413 /* BmMisc.c in Sources */, - A5AAFC51237F13B3009CD413 /* EmmcDiskInfo.c in Sources */, - A5AA0496237F13C1009CD413 /* WriteCr2.nasm in Sources */, - A5AA058A237F13C1009CD413 /* ReadDr5.nasm in Sources */, - A5AA066B237F13C2009CD413 /* CopyMem.asm in Sources */, - A5AA0745237F13C2009CD413 /* ZeroMemWrapper.c in Sources */, - A5AA0695237F13C2009CD413 /* MemLibGeneric.c in Sources */, - A5AA0456237F13C0009CD413 /* EbcCache.c in Sources */, - A5AA04AC237F13C1009CD413 /* GccInline.c in Sources */, - A5AA06B1237F13C2009CD413 /* ScanMem64.nasm in Sources */, - A5AAFD4B237F13B4009CD413 /* DebugLib.c in Sources */, - A5AA06E2237F13C2009CD413 /* DevicePathFromText.c in Sources */, - A5AA0671237F13C2009CD413 /* ScanMem.S in Sources */, A5456CDA23FC5A88000BF18C /* securevars.cpp in Sources */, - A5AA067F237F13C2009CD413 /* BaseStackCheckNull.c in Sources */, - A5AAFC6C237F13B3009CD413 /* DmaMem.c in Sources */, - A5AAFB27237F13B3009CD413 /* DxeProtocolNotify.c in Sources */, - A5AA0644237F13C2009CD413 /* SetMem64Wrapper.c in Sources */, - A5AA0557237F13C1009CD413 /* DivU64x32.c in Sources */, - A5AAFC17237F13B3009CD413 /* HwErrRecSupport.c in Sources */, - A5AA05D9237F13C1009CD413 /* SetMem64Wrapper.c in Sources */, - A5AA0672237F13C2009CD413 /* SetMem16Wrapper.c in Sources */, - A5AA05D1237F13C1009CD413 /* DisableInterrupts.S in Sources */, - A5AA066F237F13C2009CD413 /* CompareGuid.asm in Sources */, - A5AA05CC237F13C1009CD413 /* DisableInterrupts.asm in Sources */, - A5AAFB17237F13B3009CD413 /* InstallConfigurationTable.c in Sources */, - A5AA047F237F13C1009CD413 /* ReadDr6.nasm in Sources */, - A5AAFCA9237F13B4009CD413 /* CommPs2.c in Sources */, - A5AAFC6E237F13B3009CD413 /* EhciUrb.c in Sources */, - A5AA05FD237F13C1009CD413 /* ScanMem16Wrapper.c in Sources */, - A5AA06D0237F13C2009CD413 /* BaseUefiTianoCustomDecompressLib.c in Sources */, - A5AA06B3237F13C2009CD413 /* SetMem.nasm in Sources */, - A5AAFCCF237F13B4009CD413 /* UsbBotPeim.c in Sources */, - A5AAFB79237F13B3009CD413 /* EbcLowLevel.nasm in Sources */, - A5AA072C237F13C2009CD413 /* CopyMem.nasm in Sources */, - A5AAFC36237F13B3009CD413 /* Terminal.c in Sources */, A5456CDC23FC5A88000BF18C /* bootscreen.cpp in Sources */, - A5AA05DF237F13C1009CD413 /* SetMem16.nasm in Sources */, - A5AAFCCD237F13B4009CD413 /* BotPeim.c in Sources */, - A5AA060C237F13C1009CD413 /* InterlockedCompareExchange16.nasm in Sources */, 2C794E3F1A0AA85900D845B0 /* FSInject.c in Sources */, - A5AA070A237F13C2009CD413 /* UefiRuntimeServicesTableLib.c in Sources */, - A5AAFC4A237F13B3009CD413 /* SdBlockIo.c in Sources */, - A5AAFBC0237F13B3009CD413 /* TcgMorLockSmm.c in Sources */, - A5AAFBC3237F13B3009CD413 /* TcgMorLockDxe.c in Sources */, - A5AA052D237F13C1009CD413 /* DivU64x64Remainder.nasm in Sources */, - A5AA06C3237F13C2009CD413 /* SetMem64.nasm in Sources */, - A5AA074A237F13C2009CD413 /* SetMem16.nasm in Sources */, - A5AAFC95237F13B4009CD413 /* NvmExpressDiskInfo.c in Sources */, - A5AAFD16237F13B4009CD413 /* DxeFileExplorerProtocol.c in Sources */, - A5AA06AD237F13C2009CD413 /* ScanMem64Wrapper.c in Sources */, - A5AAFBB0237F13B3009CD413 /* regparse.c in Sources */, - A5AAFCD5237F13B4009CD413 /* UsbMassBot.c in Sources */, - A5AAFD4F237F13B4009CD413 /* RuntimeResetSystemLib.c in Sources */, - A5AA072E237F13C2009CD413 /* IsZeroBufferWrapper.c in Sources */, - A5AAFCD2237F13B4009CD413 /* ComponentName.c in Sources */, - A5AAFD22237F13B4009CD413 /* ReportStatusCodeLib.c in Sources */, - A5AA0577237F13C1009CD413 /* WriteIdtr.c in Sources */, - A5AAFD46237F13B4009CD413 /* GuidedSectionExtraction.c in Sources */, - A5AA04F1237F13C1009CD413 /* ReadDr6.nasm in Sources */, - A5AAFBA7237F13B3009CD413 /* regtrav.c in Sources */, A5C219B7243ED7AA00036F7B /* XCinema.cpp in Sources */, - A5AA0613237F13C2009CD413 /* SynchronizationMsc.c in Sources */, - A5AA051D237F13C1009CD413 /* WriteDr0.nasm in Sources */, - A5AA074E237F13C3009CD413 /* IsZeroBuffer.nasm in Sources */, - A5AA05A0237F13C1009CD413 /* DivU64x32Remainder.c in Sources */, - A5AAFC70237F13B3009CD413 /* ComponentName.c in Sources */, - A5AA05E5237F13C1009CD413 /* ScanMem8.nasm in Sources */, - A5AAFC9A237F13B4009CD413 /* ComponentName.c in Sources */, - A5AAFD2E237F13B4009CD413 /* UefiHiiServicesLib.c in Sources */, - A5AAFCEF237F13B4009CD413 /* BootLogoLib.c in Sources */, - A5AA0629237F13C2009CD413 /* ScanMem16Wrapper.c in Sources */, - A5AAFC14237F13B3009CD413 /* PciCfg2.c in Sources */, - A5AA071D237F13C2009CD413 /* ScanMem16.nasm in Sources */, - A5AAFC97237F13B4009CD413 /* ComponentName.c in Sources */, - A5AAFB84237F13B3009CD413 /* EdbSupportFile.c in Sources */, - A5AA05E8237F13C1009CD413 /* CopyMem.nasm in Sources */, - A5AAFB43237F13B3009CD413 /* Notify.c in Sources */, - A5AAFBFE237F13B3009CD413 /* Gpt.c in Sources */, - A5AAFB72237F13B3009CD413 /* SetIdtEntry.c in Sources */, - A5AA049D237F13C1009CD413 /* ReadMsr64.c in Sources */, - A5AAFB3E237F13B3009CD413 /* Page.c in Sources */, - A5AA0568237F13C1009CD413 /* CpuBreakpoint.nasm in Sources */, A523133B2448B3F400421FB2 /* VersionString.cpp in Sources */, - A5AA06A7237F13C2009CD413 /* TimerLibNull.c in Sources */, - A5AAFB56237F13B3009CD413 /* IdtVectorAsm.nasm in Sources */, - A5AA0484237F13C1009CD413 /* SwitchStack.nasm in Sources */, - A5AAFD34237F13B4009CD413 /* UpdatePage.c in Sources */, - A5AAFC6F237F13B3009CD413 /* UsbHcMem.c in Sources */, - A5AA0465237F13C0009CD413 /* StandaloneMmDriverEntryPoint.c in Sources */, - A5AA05CB237F13C1009CD413 /* SpeculationBarrier.S in Sources */, - A5AA0569237F13C1009CD413 /* Invd.nasm in Sources */, - A5AA0599237F13C1009CD413 /* ModU64x32.nasm in Sources */, - A5AA047D237F13C1009CD413 /* FxRestore.nasm in Sources */, - A5AA04EC237F13C1009CD413 /* FxRestore.nasm in Sources */, - A5AAFBC6237F13B3009CD413 /* Variable.c in Sources */, - A5AAFB3A237F13B3009CD413 /* SmramProfileRecord.c in Sources */, - A5AA0571237F13C1009CD413 /* WriteMsr64.c in Sources */, - A5AAFC37237F13B3009CD413 /* Vtutf8.c in Sources */, - A5AAFD2D237F13B4009CD413 /* DebugAgentLibNull.c in Sources */, - A5AA0597237F13C1009CD413 /* ReadPmc.nasm in Sources */, - A5AA0497237F13C1009CD413 /* ReadGs.nasm in Sources */, - A5AA0618237F13C2009CD413 /* Synchronization.asm in Sources */, - A5AAFCC4237F13B4009CD413 /* UsbUtility.c in Sources */, - A5AA0483237F13C1009CD413 /* ReadDr7.nasm in Sources */, - A5AA0551237F13C1009CD413 /* WriteMm0.nasm in Sources */, - A5AA06CF237F13C2009CD413 /* BaseUefiDecompressLib.c in Sources */, - A5AA059B237F13C1009CD413 /* EnablePaging32.nasm in Sources */, - A5AAFB58237F13B3009CD413 /* DxeLoadFunc.c in Sources */, - A5AA04FE237F13C1009CD413 /* ReadCr2.c in Sources */, - A5AA05F8237F13C1009CD413 /* IsZeroBufferWrapper.c in Sources */, - A5AA0454237F13C0009CD413 /* X86Cache.c in Sources */, - A5AA0634237F13C2009CD413 /* CpuFlushTlb.nasm in Sources */, - A5AA070B237F13C2009CD413 /* PeiPcdLib.c in Sources */, - A5AA064A237F13C2009CD413 /* SetMem16.nasm in Sources */, - A5AAFC67237F13B3009CD413 /* XhciSched.c in Sources */, - A5AA067B237F13C2009CD413 /* PciSegmentLib.c in Sources */, - A5AA05E3237F13C1009CD413 /* IsZeroBuffer.nasm in Sources */, A5456D6923FC5B08000BF18C /* BootOptions.cpp in Sources */, - A5AAFB16237F13B3009CD413 /* DebugImageInfo.c in Sources */, - A5AA0606237F13C1009CD413 /* InterlockedCompareExchange32.nasm in Sources */, - A5AA04D4237F13C1009CD413 /* X86FxSave.c in Sources */, - A5AA056F237F13C1009CD413 /* ReadEflags.nasm in Sources */, - A5AAFC25237F13B3009CD413 /* ReportStatusCodeRouterSmm.c in Sources */, - A5AA0654237F13C2009CD413 /* ScanMem8Wrapper.c in Sources */, - A5AAFC22237F13B3009CD413 /* FileExplorerDxe.c in Sources */, - A5AA04EE237F13C1009CD413 /* ReadMm4.nasm in Sources */, - A5AA04CF237F13C1009CD413 /* X86Thunk.c in Sources */, - A5AAFC65237F13B3009CD413 /* PciOptionRomSupport.c in Sources */, - A5AA0727237F13C2009CD413 /* IsZeroBuffer.nasm in Sources */, - A5AAFC69237F13B3009CD413 /* UsbHcMem.c in Sources */, - A5AAFC9B237F13B4009CD413 /* EhciSched.c in Sources */, - A5AAFB1A237F13B3009CD413 /* MemoryAttributesTable.c in Sources */, - A5AAFC28237F13B3009CD413 /* SaveLongModeContext.c in Sources */, - A5AAFB5F237F13B3009CD413 /* DebugSupport.c in Sources */, - A5AAFC77237F13B4009CD413 /* UhciQueue.c in Sources */, - A5AA05A1237F13C1009CD413 /* X86MemoryFence.c in Sources */, - A5AA0463237F13C0009CD413 /* Allocate.c in Sources */, - A5AAFB6E237F13B3009CD413 /* FirmwarePerformanceSmm.c in Sources */, - A5AA064B237F13C2009CD413 /* ScanMem64.nasm in Sources */, - A5AAFC3B237F13B3009CD413 /* ComponentName.c in Sources */, - A5AAFB65237F13B3009CD413 /* AmlOption.c in Sources */, - A5AAFCBD237F13B4009CD413 /* ComponentName.c in Sources */, - A5AA0593237F13C1009CD413 /* ReadMm3.c in Sources */, - A5AA0539237F13C1009CD413 /* ReadDr1.nasm in Sources */, - A5AA0592237F13C1009CD413 /* WriteMm7.nasm in Sources */, - A5AA0659237F13C2009CD413 /* ScanMem64.nasm in Sources */, A5456D5823FC5B08000BF18C /* kext_inject.cpp in Sources */, - A5AAFB5A237F13B3009CD413 /* ComponentName.c in Sources */, - A5AAFCE4237F13B4009CD413 /* AtaBus.c in Sources */, - A5AAFC5F237F13B3009CD413 /* PciHotPlugSupport.c in Sources */, - A5AA054C237F13C1009CD413 /* WriteCr0.nasm in Sources */, - A5AA04BB237F13C1009CD413 /* WriteDr4.nasm in Sources */, - A5AAFD69237F13B4009CD413 /* BootManagerMenu.c in Sources */, - A5AA05BA237F13C1009CD413 /* InternalSwitchStack.c in Sources */, - A5AA0555237F13C1009CD413 /* ReadTr.nasm in Sources */, - A5AA0757237F13C3009CD413 /* CompareMem.nasm in Sources */, - A5AA05BF237F13C1009CD413 /* EnableInterrupts.S in Sources */, - A5AAFD43237F13B4009CD413 /* decode.c in Sources */, - A5AA05A2237F13C1009CD413 /* SwapBytes64.c in Sources */, - A5AAFB5D237F13B3009CD413 /* PlDebugSupportX64.c in Sources */, - A5AAFBFA237F13B3009CD413 /* Udf.c in Sources */, - A5AA0651237F13C2009CD413 /* SetMem32.nasm in Sources */, - A5AAFD25237F13B4009CD413 /* VarCheckHiiGenFromFv.c in Sources */, - A5AA0470237F13C1009CD413 /* X86FxRestore.c in Sources */, - A5AAFBD2237F13B3009CD413 /* FaultTolerantWriteSmmDxe.c in Sources */, - A5AA057C237F13C1009CD413 /* ReadEflags.c in Sources */, - A5AA0733237F13C2009CD413 /* ScanMem16Wrapper.c in Sources */, - A5AA04E4237F13C1009CD413 /* ReadGdtr.c in Sources */, - A5AA0490237F13C1009CD413 /* SetJump.nasm in Sources */, - A5AA0464237F13C0009CD413 /* X86TimerLib.c in Sources */, - A5AA0750237F13C3009CD413 /* ScanMem8.nasm in Sources */, - A5AAFCCA237F13B4009CD413 /* HubPeim.c in Sources */, - A5AAFCC6237F13B4009CD413 /* ComponentName.c in Sources */, - A5AA0549237F13C1009CD413 /* WriteDr5.c in Sources */, - A5AAFCDF237F13B4009CD413 /* IdeMode.c in Sources */, - A5AA0471237F13C1009CD413 /* RRotU64.c in Sources */, A5456D0323FC5AB8000BF18C /* egemb_icons.cpp in Sources */, A529343624FB92AD004241C3 /* XBuffer_tests.cpp in Sources */, - A5AA06F4237F13C2009CD413 /* ScanMem16Wrapper.c in Sources */, - A5AA0673237F13C2009CD413 /* MemLibGuid.c in Sources */, - A5AA058B237F13C1009CD413 /* WriteMm6.c in Sources */, - A5AAFBAB237F13B3009CD413 /* OnigurumaUefiPort.c in Sources */, - A5AA06D7237F13C2009CD413 /* HobLib.c in Sources */, - A5AA051B237F13C1009CD413 /* EnableInterrupts.nasm in Sources */, - A5AA04C1237F13C1009CD413 /* Monitor.nasm in Sources */, - A5AA075B237F13C3009CD413 /* SetMem.nasm in Sources */, - A5AAFC3C237F13B3009CD413 /* ConSplitterGraphics.c in Sources */, - A5AAFD3B237F13B4009CD413 /* SmmPerformanceLib.c in Sources */, - A5AAFC34237F13B3009CD413 /* TerminalConOut.c in Sources */, - A5AAFBCF237F13B3009CD413 /* WatchdogTimer.c in Sources */, - A5AA0596237F13C1009CD413 /* WriteDr5.nasm in Sources */, - A5AAFD68237F13B4009CD413 /* HelloWorld.c in Sources */, - A5AA04E7237F13C1009CD413 /* WriteCr4.nasm in Sources */, - A5AAFBCE237F13B3009CD413 /* LegacyRegion2.c in Sources */, - A5AAFCD6237F13B4009CD413 /* DevicePath.c in Sources */, - A5AA0610237F13C1009CD413 /* InterlockedCompareExchange64.nasm in Sources */, - A5AAFBFF237F13B3009CD413 /* RamDiskFileExplorer.c in Sources */, - A5AAFCBE237F13B4009CD413 /* MouseHid.c in Sources */, - A5AAFCF8237F13B4009CD413 /* LzmaDecompress.c in Sources */, - A5AA04AF237F13C1009CD413 /* ReadTr.nasm in Sources */, - A5AA05B5237F13C1009CD413 /* SpeculationBarrier.S in Sources */, - A5AA0494237F13C1009CD413 /* WriteDr0.nasm in Sources */, A5456D5C23FC5B08000BF18C /* AmlGenerator.cpp in Sources */, - A5AA045D237F13C0009CD413 /* PciSegmentLib.c in Sources */, - A5AA0694237F13C2009CD413 /* ScanMem64Wrapper.c in Sources */, - A5AA0588237F13C1009CD413 /* ReadCr3.c in Sources */, - A5AAFD3D237F13B4009CD413 /* DxeDebugPrintErrorLevelLib.c in Sources */, - A5AA0462237F13C0009CD413 /* DxeServicesLib.c in Sources */, - A5AA0690237F13C2009CD413 /* ApplicationEntryPoint.c in Sources */, - A5AA0711237F13C2009CD413 /* CopyMemWrapper.c in Sources */, A5456CFC23FC5AB8000BF18C /* egemb_font.cpp in Sources */, - A5AAFB66237F13B3009CD413 /* AmlString.c in Sources */, - A5AA05F0237F13C1009CD413 /* SetMem.nasm in Sources */, - A5AA06FE237F13C2009CD413 /* IoFifoSev.nasm in Sources */, - A5AA0547237F13C1009CD413 /* WriteDr1.c in Sources */, - A5AAFD4C237F13B4009CD413 /* SmmSmiHandlerProfileLib.c in Sources */, - A5AAFC19237F13B3009CD413 /* SmmCommunicationBufferDxe.c in Sources */, - A5AAFB7E237F13B3009CD413 /* EdbSupportUI.c in Sources */, - A5AAFC33237F13B3009CD413 /* GraphicsConsole.c in Sources */, A59CB66921BC14AB0054A7CF /* SmbiosGen.c in Sources */, - A5AA076C237F13C3009CD413 /* S3PciLib.c in Sources */, - A5AA0594237F13C1009CD413 /* CpuId.nasm in Sources */, - A5AAFB1E237F13B3009CD413 /* Notify.c in Sources */, - A5AA0713237F13C2009CD413 /* ZeroMem.nasm in Sources */, - A5AA065C237F13C2009CD413 /* IsZeroBuffer.nasm in Sources */, - A5AAFD08237F13B4009CD413 /* DxeIpmiLibIpmiProtocol.c in Sources */, - A5AAFD57237F13B4009CD413 /* DxeCoreMemoryProfileLib.c in Sources */, - A5AAFD4A237F13B4009CD413 /* DxeMemoryProfileLib.c in Sources */, - A5AA069D237F13C2009CD413 /* CompareMemWrapper.c in Sources */, - A5AAFCBC237F13B4009CD413 /* UsbMouseAbsolutePointer.c in Sources */, - A5AAFD02237F13B4009CD413 /* BmDriverHealth.c in Sources */, - A5AA05C6237F13C1009CD413 /* CpuBreakpoint.S in Sources */, - A5AA0469237F13C0009CD413 /* CpuBreakpoint.c in Sources */, - A5AAFCAD237F13B4009CD413 /* ComponentName.c in Sources */, - A5AAFBEC237F13B3009CD413 /* StatusCodeHandlerSmm.c in Sources */, - A5AA046E237F13C1009CD413 /* X86WriteIdtr.c in Sources */, - A5AAFBD8237F13B3009CD413 /* DevicePath.c in Sources */, - A5AA062C237F13C2009CD413 /* DxeRuntimePciSegmentLib.c in Sources */, - A5AAFCCB237F13B4009CD413 /* UsbPeim.c in Sources */, - A5AAFD58237F13B4009CD413 /* DxeCoreMemoryProfileLibNull.c in Sources */, - A5AAFC26237F13B3009CD413 /* CapsuleCache.c in Sources */, - A5AA0691237F13C2009CD413 /* SetMem64Wrapper.c in Sources */, - A5AAFB60237F13B3009CD413 /* AsmFuncs.nasm in Sources */, - A5AAFBC5237F13B3009CD413 /* Variable.c in Sources */, - A5AAFD6C237F13B4009CD413 /* CapsuleApp.c in Sources */, - A5AA06FB237F13C2009CD413 /* IoHighLevel.c in Sources */, - A5AA04CB237F13C1009CD413 /* ReadPmc.nasm in Sources */, - A5AAFC6D237F13B3009CD413 /* EhcPeim.c in Sources */, - A5AAFBDF237F13B3009CD413 /* BootManagerPolicyDxe.c in Sources */, - A5AA048F237F13C1009CD413 /* CpuIdEx.nasm in Sources */, - A5AA0772237F13C3009CD413 /* BaseReportStatusCodeLib.c in Sources */, - A5AAFCC5237F13B4009CD413 /* KeyBoard.c in Sources */, - A5AAFBF6237F13B3009CD413 /* ComponentName.c in Sources */, - A5AAFB87237F13B3009CD413 /* EdbDisasm.c in Sources */, - A5AAFCB8237F13B4009CD413 /* I2cDxe.c in Sources */, - A5AAFC00237F13B3009CD413 /* RamDiskImpl.c in Sources */, - A5AAFBE7237F13B3009CD413 /* SerialStatusCodeWorker.c in Sources */, - A5AA06AF237F13C2009CD413 /* CompareMem.nasm in Sources */, - A5AA0460237F13C0009CD413 /* S3SmbusLib.c in Sources */, A5456D6F23FC5B08000BF18C /* DevicePath.cpp in Sources */, - A5AAFB3F237F13B3009CD413 /* Locate.c in Sources */, - A5AA0550237F13C1009CD413 /* WriteDr2.nasm in Sources */, - A5AAFBE6237F13B3009CD413 /* MemoryStatusCodeWorker.c in Sources */, A5456D0523FC5AB8000BF18C /* ftol.asm in Sources */, - A5AAFD5F237F13B4009CD413 /* BaseSortLib.c in Sources */, - A5AAFD48237F13B4009CD413 /* SmmCorePerformanceLib.c in Sources */, - A5AA0724237F13C2009CD413 /* ScanMem64.nasm in Sources */, - A5AA0614237F13C2009CD413 /* Synchronization.c in Sources */, - A5AA06C2237F13C2009CD413 /* IsZeroBuffer.nasm in Sources */, - A5AAFBF5237F13B3009CD413 /* SecurityStub.c in Sources */, - A5AAFB2B237F13B3009CD413 /* Image.c in Sources */, - A5AA062D237F13C2009CD413 /* CpuSleepFlushTlb.c in Sources */, - A5AA0716237F13C2009CD413 /* ScanMem64.nasm in Sources */, - A5AAFC0B237F13B3009CD413 /* NullMemoryTest.c in Sources */, - A5AA06E3237F13C2009CD413 /* DevicePathToText.c in Sources */, - A5AAFBF7237F13B3009CD413 /* DiskIo.c in Sources */, - A5AAFCC3237F13B4009CD413 /* UsbHub.c in Sources */, - A5AAFC7D237F13B4009CD413 /* NvmExpressPeiStorageSecurity.c in Sources */, - A5AAFCE9237F13B4009CD413 /* DxeCapsuleProcessLib.c in Sources */, - A5AA04CE237F13C1009CD413 /* DivU64x64Remainder.c in Sources */, - A5AA05BD237F13C1009CD413 /* DisableInterrupts.S in Sources */, - A5AA04C4237F13C1009CD413 /* ReadMsr64.nasm in Sources */, - A5AA05ED237F13C1009CD413 /* SetMem16.nasm in Sources */, - A5AA0699237F13C2009CD413 /* SetMem.c in Sources */, - A5AA05D6237F13C1009CD413 /* ModU64x32.c in Sources */, - A5AA0508237F13C1009CD413 /* ReadMm2.c in Sources */, - A5AA04F4237F13C1009CD413 /* ReadDr6.c in Sources */, - A5AAFD53237F13B4009CD413 /* MemoryAllocationLib.c in Sources */, - A5AAFBCA237F13B3009CD413 /* ProcessOptions.c in Sources */, - A5AA04A7237F13C1009CD413 /* ReadMm0.nasm in Sources */, - A5AA055B237F13C1009CD413 /* ReadFs.c in Sources */, - A5AAFB41237F13B3009CD413 /* Pool.c in Sources */, - A5AA068F237F13C2009CD413 /* DxeExtractGuidedSectionLib.c in Sources */, - A5AAFD47237F13B4009CD413 /* ResetUtility.c in Sources */, - A5AA06CC237F13C2009CD413 /* SetMem16Wrapper.c in Sources */, - A5AAFC4D237F13B3009CD413 /* SdDiskInfo.c in Sources */, - A5AAFD32237F13B4009CD413 /* BootMaintenanceManagerCustomizedUi.c in Sources */, - A5AAFB40237F13B3009CD413 /* Dependency.c in Sources */, - A5AAFCAB237F13B4009CD413 /* ComponentName.c in Sources */, - A5AAFC8D237F13B4009CD413 /* UsbHcMem.c in Sources */, - A5AA051E237F13C1009CD413 /* DisableCache.nasm in Sources */, - A5AA053B237F13C1009CD413 /* ReadMm3.nasm in Sources */, - A5AAFB32237F13B3009CD413 /* MemoryProfileRecord.c in Sources */, - A5AA0466237F13C0009CD413 /* PciLib.c in Sources */, - A5AA0683237F13C2009CD413 /* PeiCoreEntryPoint.c in Sources */, - A5AA0747237F13C2009CD413 /* ScanMem64Wrapper.c in Sources */, - A5AA0545237F13C1009CD413 /* Lfence.nasm in Sources */, - A5AA04DC237F13C1009CD413 /* HighBitSet64.c in Sources */, - A5AAFB99237F13B3009CD413 /* EsrtImpl.c in Sources */, - A5AAFBDE237F13B3009CD413 /* LoadFileOnFv2.c in Sources */, - A5AA076A237F13C3009CD413 /* PeimEntryPoint.c in Sources */, A5456CDD23FC5A88000BF18C /* secureboot.cpp in Sources */, - A5AA0718237F13C2009CD413 /* SetMem.nasm in Sources */, - A5AAFB45237F13B3009CD413 /* MemoryServices.c in Sources */, - A5AA069F237F13C2009CD413 /* MemLibGuid.c in Sources */, - A5AA0665237F13C2009CD413 /* CompareMemWrapper.c in Sources */, - A5AA04A6237F13C1009CD413 /* Lfence.nasm in Sources */, - A5AA05C1237F13C1009CD413 /* X86DisablePaging64.c in Sources */, - A5AAFD37237F13B4009CD413 /* Variable.c in Sources */, - A5AAFCAF237F13B4009CD413 /* UfsHci.c in Sources */, - A5AA04D7237F13C1009CD413 /* MultU64x32.c in Sources */, - A5AA04C7237F13C1009CD413 /* ReadSs.nasm in Sources */, - A5AA050E237F13C1009CD413 /* ReadDr1.c in Sources */, - A5AAFCB7237F13B4009CD413 /* I2cHost.c in Sources */, - A5AA0602237F13C1009CD413 /* InterlockedCompareExchange16.c in Sources */, - A5AA054D237F13C1009CD413 /* RRotU64.nasm in Sources */, - A5AA0576237F13C1009CD413 /* FlushCacheLine.nasm in Sources */, - A5AA0719237F13C2009CD413 /* IsZeroBuffer.nasm in Sources */, - A5AAFD28237F13B4009CD413 /* BaseMemoryAllocationLibNull.c in Sources */, - A5AA0709237F13C2009CD413 /* HobLib.c in Sources */, - A5AA054F237F13C1009CD413 /* ReadGs.c in Sources */, - A5AA045F237F13C0009CD413 /* PciExpressLib.c in Sources */, - A5AA070E237F13C2009CD413 /* DebugLib.c in Sources */, - A5AA04E8237F13C1009CD413 /* ReadDr2.c in Sources */, - A5AA063D237F13C2009CD413 /* CpuSleep.S in Sources */, - A5AA06B5237F13C2009CD413 /* SetMem64.nasm in Sources */, - A5AAFBC2237F13B3009CD413 /* VariableDxe.c in Sources */, - A5AAFB12237F13B3009CD413 /* Runtime.c in Sources */, - A5AAFD33237F13B4009CD413 /* BootMaintenance.c in Sources */, - A5AA04C6237F13C1009CD413 /* ReadDr5.nasm in Sources */, - A5AA0609237F13C1009CD413 /* InterlockedCompareExchange64.c in Sources */, - A5AA0775237F13C3009CD413 /* UsbDxeLib.c in Sources */, - A5AA06E4237F13C2009CD413 /* UefiDevicePathLibOptionalDevicePathProtocol.c in Sources */, A5816DF924181050003BA66C /* REFIT_MENU_SCREEN.cpp in Sources */, - A5AA0744237F13C2009CD413 /* SetMem64Wrapper.c in Sources */, - A5AAFB22237F13B3009CD413 /* FwVolAttrib.c in Sources */, - A5AA066A237F13C2009CD413 /* ScanMem.asm in Sources */, A5456D8223FC5B40000BF18C /* screen.cpp in Sources */, - A5AA072D237F13C2009CD413 /* ScanMem32Wrapper.c in Sources */, - A5AAFCD4237F13B4009CD413 /* UsbMassImpl.c in Sources */, - A5AA07D6237F13CD009CD413 /* PcRtcEntry.c in Sources */, - A5AAFB18237F13B3009CD413 /* SetWatchdogTimer.c in Sources */, - A5AAFB5B237F13B3009CD413 /* EsrtFmpDebugPrint.c in Sources */, - A5AA0530237F13C1009CD413 /* WriteLdtr.c in Sources */, 12A60F5A1DB610500068BF8B /* AppleImageCodec.c in Sources */, - A5AAFB3B237F13B3009CD413 /* Handle.c in Sources */, - A5AAFBB7237F13B3009CD413 /* RegularExpressionDxe.c in Sources */, - A5AA047C237F13C1009CD413 /* ReadDs.nasm in Sources */, - A5AAFD70237F13B4009CD413 /* VariableInfo.c in Sources */, - A5AA064C237F13C2009CD413 /* ScanMem32.nasm in Sources */, - A5AA0502237F13C1009CD413 /* WriteLdtr.nasm in Sources */, - A5AA05DD237F13C1009CD413 /* ZeroMem.nasm in Sources */, A5456D7F23FC5B40000BF18C /* main.cpp in Sources */, - A5AAFD5B237F13B4009CD413 /* CpuExceptionHandlerLibNull.c in Sources */, - A5AA05AF237F13C1009CD413 /* SwitchStack.S in Sources */, - A5AA0612237F13C2009CD413 /* InterlockedDecrement.nasm in Sources */, - A5AA070D237F13C2009CD413 /* UefiFileHandleLib.c in Sources */, - A5AAFB5E237F13B3009CD413 /* AsmFuncs.nasm in Sources */, - A5AA0689237F13C2009CD413 /* MmServicesTableLib.c in Sources */, - A5AA067C237F13C2009CD413 /* PostCode.c in Sources */, - A5AAFD19237F13B4009CD413 /* DxeHttpLib.c in Sources */, - A5AA06DF237F13C2009CD413 /* MemoryAllocationLib.c in Sources */, - A5AAFBED237F13B3009CD413 /* SerialStatusCodeWorker.c in Sources */, A5456D7E23FC5B40000BF18C /* icns.cpp in Sources */, - A5AAFCE3237F13B4009CD413 /* ComponentName.c in Sources */, - A5AA0692237F13C2009CD413 /* ZeroMemWrapper.c in Sources */, - A5AA0628237F13C2009CD413 /* MemLibGuid.c in Sources */, - A5AA0528237F13C1009CD413 /* EnableInterrupts.c in Sources */, - A5AA0728237F13C2009CD413 /* SetMem64.nasm in Sources */, - A5AA07CB237F13CD009CD413 /* ComponentName.c in Sources */, - A5AA0586237F13C1009CD413 /* ReadIdtr.c in Sources */, - A5AAFB70237F13B3009CD413 /* AcpiPlatform.c in Sources */, - A5AA04BE237F13C1009CD413 /* ReadLdtr.nasm in Sources */, - A5AA044C237F13C0009CD413 /* Nasm.inc in Sources */, - A5AA0684237F13C2009CD413 /* BasePeCoff.c in Sources */, - A5AAFCA4237F13B4009CD413 /* Ps2Keyboard.c in Sources */, - A5AA0720237F13C2009CD413 /* SetMem32Wrapper.c in Sources */, - A5AAFD2B237F13B4009CD413 /* CustomizedDisplayLib.c in Sources */, - A5AAFBA4237F13B3009CD413 /* regexec.c in Sources */, - A5AA0455237F13C0009CD413 /* ArmCache.c in Sources */, A5456CFD23FC5AB8000BF18C /* nanosvg.cpp in Sources */, - A5AA05CF237F13C1009CD413 /* SpeculationBarrier.asm in Sources */, - A5AA059E237F13C1009CD413 /* RRotU32.c in Sources */, A57CF7C6241BE0A4006DE51E /* strcmp.cpp in Sources */, - A5AA073E237F13C2009CD413 /* UefiLib.c in Sources */, - A5AA075F237F13C3009CD413 /* SetMem32.nasm in Sources */, - A5AA047B237F13C1009CD413 /* ReadFs.nasm in Sources */, - A5AA06E6237F13C2009CD413 /* SetMem64Wrapper.c in Sources */, - A5AA061F237F13C2009CD413 /* MemLibGeneric.c in Sources */, - A5AAFC66237F13B3009CD413 /* PciLib.c in Sources */, - A5AAFD54237F13B4009CD413 /* PiSmmCoreMemoryProfileLibNull.c in Sources */, - A5AA0536237F13C1009CD413 /* ReadDs.c in Sources */, - A5AAFC44237F13B3009CD413 /* DmaMem.c in Sources */, - A5AA0587237F13C1009CD413 /* ARShiftU64.c in Sources */, - A5AAFCB3237F13B4009CD413 /* ComponentName.c in Sources */, - A5AAFC90237F13B4009CD413 /* NvmExpressHci.c in Sources */, A5456D6023FC5B08000BF18C /* Console.cpp in Sources */, - A5AA068D237F13C2009CD413 /* SafeIntLib.c in Sources */, - A5AA04C9237F13C1009CD413 /* CpuId.nasm in Sources */, - A5AAFB7D237F13B3009CD413 /* EdbHook.c in Sources */, - A5AA05EB237F13C1009CD413 /* ZeroMem.nasm in Sources */, - A5AA04E9237F13C1009CD413 /* Mwait.nasm in Sources */, - A5AA0701237F13C2009CD413 /* ArmVirtMmio.asm in Sources */, - A5AA0516237F13C1009CD413 /* DisableInterrupts.c in Sources */, - A5AA0698237F13C2009CD413 /* CopyMem.c in Sources */, - A5AAFB7C237F13B3009CD413 /* EdbSymbol.c in Sources */, - A5AA05B3237F13C1009CD413 /* GetInterruptsState.S in Sources */, - A5AA050C237F13C1009CD413 /* WriteMm3.c in Sources */, - A5AA0705237F13C2009CD413 /* PciSegmentLib.c in Sources */, - A5AAFC87237F13B4009CD413 /* PciRootBridgeIo.c in Sources */, - A5AAFD6A237F13B4009CD413 /* AppSupport.c in Sources */, - A5AA057A237F13C1009CD413 /* ReadLdtr.nasm in Sources */, - A5AAFB1F237F13B3009CD413 /* FwVolBlock.c in Sources */, 12A60F5B1DB610500068BF8B /* load_bmp.c in Sources */, - A5AA0640237F13C2009CD413 /* DebugLibConstructor.c in Sources */, A5456D6A23FC5B08000BF18C /* Injectors.cpp in Sources */, - A5AA05C0237F13C1009CD413 /* MultU64x64.c in Sources */, A529343324FB9293004241C3 /* plist_tests.cpp in Sources */, - A5AA0541237F13C1009CD413 /* DisableInterrupts.nasm in Sources */, - A5AAFBC9237F13B3009CD413 /* Popup.c in Sources */, A52313122448B12B00421FB2 /* unicode_conversions.cpp in Sources */, - A5AA04FB237F13C1009CD413 /* WriteDr7.c in Sources */, - A5AA066D237F13C2009CD413 /* MemLibGuid.c in Sources */, - A5AAFBA1237F13B3009CD413 /* regposix.c in Sources */, - A5AA0656237F13C2009CD413 /* ZeroMem.nasm in Sources */, - A5AA04AE237F13C1009CD413 /* WriteMm1.nasm in Sources */, - A5AAFCFD237F13B4009CD413 /* BmConnect.c in Sources */, - A5AA05D2237F13C1009CD413 /* SwitchStack.asm in Sources */, - A5AA06C0237F13C2009CD413 /* ScanMem32.nasm in Sources */, - A5AA06A1237F13C2009CD413 /* IoLibMmioBuffer.c in Sources */, - A5AAFB30237F13B3009CD413 /* HeapGuard.c in Sources */, - A5AAFD1C237F13B4009CD413 /* NonDiscoverableDeviceRegistrationLib.c in Sources */, - A5AA0488237F13C1009CD413 /* WriteDr7.nasm in Sources */, - A5AAFB2D237F13B3009CD413 /* Timer.c in Sources */, - A5AA0722237F13C2009CD413 /* CompareMem.nasm in Sources */, - A5AAFC05237F13B3009CD413 /* FileName.c in Sources */, - A5AA04DA237F13C1009CD413 /* BitField.c in Sources */, - A5AA05AD237F13C1009CD413 /* CpuPause.asm in Sources */, A57CF7D4241BE0FC006DE51E /* strcmp_test.cpp in Sources */, A5456D4A23FC5B08000BF18C /* FixBiosDsdt.cpp in Sources */, - A5AA0533237F13C1009CD413 /* Thunk16.nasm in Sources */, - A5AAFB95237F13B3009CD413 /* EbcExecute.c in Sources */, - A5AAFBBF237F13B3009CD413 /* VariableSmm.c in Sources */, - A5AA05CD237F13C1009CD413 /* SetJumpLongJump.S in Sources */, - A5AA06C4237F13C2009CD413 /* ScanMem8.nasm in Sources */, - A5AAFCB5237F13B4009CD413 /* UfsPassThru.c in Sources */, - A5AAFC41237F13B3009CD413 /* Metronome.c in Sources */, - A5AAFD07237F13B4009CD413 /* FileExplorer.c in Sources */, - A5AA0603237F13C1009CD413 /* GccInline.c in Sources */, - A5AA049B237F13C1009CD413 /* WriteCr3.nasm in Sources */, - A5AA0710237F13C2009CD413 /* ZeroMemWrapper.c in Sources */, - A5AA061C237F13C2009CD413 /* ZeroMemWrapper.c in Sources */, - A5AA0731237F13C2009CD413 /* SetMem16Wrapper.c in Sources */, - A5AAFC18237F13B3009CD413 /* Language.c in Sources */, - A5AA0627237F13C2009CD413 /* SetMem16Wrapper.c in Sources */, - A5AAFD63237F13B4009CD413 /* Logo.c in Sources */, - A5AA0605237F13C1009CD413 /* InterlockedCompareExchange64.nasm in Sources */, A5456CDB23FC5A88000BF18C /* legacy.cpp in Sources */, - A5AAFB88237F13B3009CD413 /* EdbCmdRegister.c in Sources */, - A5AA0559237F13C1009CD413 /* DivU64x32Remainder.c in Sources */, - A5AA04BC237F13C1009CD413 /* FlushCacheLine.nasm in Sources */, - A5AA05B4237F13C1009CD413 /* MemoryFence.asm in Sources */, - A5AAFCAC237F13B4009CD413 /* ScsiBus.c in Sources */, - A5AA0714237F13C2009CD413 /* CompareMem.nasm in Sources */, - A5AA04B1237F13C1009CD413 /* ReadMm1.nasm in Sources */, - A5AA05D3237F13C1009CD413 /* EnableInterrupts.S in Sources */, - A5AAFB34237F13B3009CD413 /* Pool.c in Sources */, - A5AA04C0237F13C1009CD413 /* FxSave.nasm in Sources */, - A5AAFB23237F13B3009CD413 /* FwVolRead.c in Sources */, - A5AA05E7237F13C1009CD413 /* ScanMem16.nasm in Sources */, - A5AAFC99237F13B4009CD413 /* EhciReg.c in Sources */, A5D12C3B243A0C9E00DFA98A /* stdio.cpp in Sources */, - A5AA060B237F13C1009CD413 /* InterlockedIncrement.nasm in Sources */, 12A60F5C1DB610500068BF8B /* load_icns.c in Sources */, - A5AAFD5D237F13B4009CD413 /* HiiString.c in Sources */, - A5AA05F4237F13C1009CD413 /* SetMem32.nasm in Sources */, - A5AAFC02237F13B3009CD413 /* RamDiskProtocol.c in Sources */, 12A60F5D1DB610500068BF8B /* picopng.c in Sources */, - A5AA04A3237F13C1009CD413 /* ReadCr0.nasm in Sources */, - A5AA074F237F13C3009CD413 /* SetMem64.nasm in Sources */, - A5AA05E6237F13C1009CD413 /* SetMem32.nasm in Sources */, - A5AA058C237F13C1009CD413 /* ReadTsc.c in Sources */, A5456D0123FC5AB8000BF18C /* text.cpp in Sources */, - A5AA0521237F13C1009CD413 /* WriteCr2.nasm in Sources */, - A5AAFC8A237F13B4009CD413 /* XhciReg.c in Sources */, - A5AAFC56237F13B3009CD413 /* EmmcDevice.c in Sources */, - A5AAFBD1237F13B3009CD413 /* FaultTolerantWriteStandaloneMm.c in Sources */, A57CF7CB241BE0D7006DE51E /* XString.cpp in Sources */, - A5AA0552237F13C1009CD413 /* GccInline.c in Sources */, - A5AAFCFB237F13B4009CD413 /* BaseIpmiLibNull.c in Sources */, - A5AA065A237F13C2009CD413 /* ScanMem32.nasm in Sources */, - A5AA046C237F13C1009CD413 /* SpeculationBarrier.c in Sources */, A5456D7223FC5B08000BF18C /* DataHubCpu.cpp in Sources */, - A5AAFC7B237F13B4009CD413 /* NvmExpressPeiBlockIo.c in Sources */, - A5AA048E237F13C1009CD413 /* EnableCache.nasm in Sources */, - A5AA0739237F13C2009CD413 /* PciLib.c in Sources */, - A5AA0487237F13C1009CD413 /* ReadIdtr.nasm in Sources */, - A5AAFB6A237F13B3009CD413 /* Aml.c in Sources */, - A5AA0515237F13C1009CD413 /* WriteDr0.c in Sources */, - A5AA074B237F13C2009CD413 /* ScanMem64.nasm in Sources */, - A5AAFCF5237F13B4009CD413 /* LzFind.c in Sources */, - A5AAFC63237F13B3009CD413 /* PciPowerManagement.c in Sources */, - A5AA05AB237F13C1009CD413 /* X86RdRand.c in Sources */, - A5AA05DC237F13C1009CD413 /* ScanMem64Wrapper.c in Sources */, - A5AAFB35237F13B3009CD413 /* Smi.c in Sources */, - A5AAFB76237F13B3009CD413 /* SmmS3SaveState.c in Sources */, - A5AAFCD8237F13B4009CD413 /* AhciPeiPassThru.c in Sources */, - A5AA048D237F13C1009CD413 /* ReadCr2.nasm in Sources */, A5456D4F23FC5B08000BF18C /* hda.cpp in Sources */, A5D12C38243A0C4D00DFA98A /* abort.cpp in Sources */, - A5AAFBCB237F13B3009CD413 /* CapsuleOnDiskLoadPei.c in Sources */, - A5AA0607237F13C1009CD413 /* InterlockedDecrement.nasm in Sources */, - A5AAFB8D237F13B3009CD413 /* EdbCmdExtPci.c in Sources */, - A5AA06EF237F13C2009CD413 /* SetMemWrapper.c in Sources */, - A5AA0570237F13C1009CD413 /* FxRestore.c in Sources */, - A5AA07D1237F13CD009CD413 /* ResetSystemLib.c in Sources */, - A5AAFD3C237F13B4009CD413 /* DxeCapsuleLibNull.c in Sources */, - A5AAFB9F237F13B3009CD413 /* unicode_fold2_key.c in Sources */, - A5AAFC9C237F13B4009CD413 /* Ehci.c in Sources */, - A5AAFD5E237F13B4009CD413 /* HiiLanguage.c in Sources */, - A5AA0617237F13C2009CD413 /* Synchronization.S in Sources */, - A5AAFCBF237F13B4009CD413 /* UsbDesc.c in Sources */, - A5AA0507237F13C1009CD413 /* CpuPause.c in Sources */, - A5AAFB1D237F13B3009CD413 /* DriverSupport.c in Sources */, - A5AAFCB0237F13B4009CD413 /* UfsBlockIoPei.c in Sources */, - A5AAFC3E237F13B3009CD413 /* ConSplitter.c in Sources */, - A5AAFCF2237F13B4009CD413 /* PlatVarCleanupLib.c in Sources */, - A5AA0504237F13C1009CD413 /* ReadMm5.nasm in Sources */, - A5AA0486237F13C1009CD413 /* WriteMsr64.nasm in Sources */, - A5AAFC76237F13B4009CD413 /* UhciReg.c in Sources */, - A5AAFB5C237F13B3009CD413 /* EsrtFmp.c in Sources */, - A5AAFD4D237F13B4009CD413 /* ReportStatusCodeLib.c in Sources */, - A5AAFB98237F13B3009CD413 /* EsrtDxe.c in Sources */, - A5AA068A237F13C2009CD413 /* SafeIntLib64.c in Sources */, - A5AA06D8237F13C2009CD413 /* S3PciSegmentLib.c in Sources */, - A5AAFC93237F13B4009CD413 /* NvmExpress.c in Sources */, - A5AA075A237F13C3009CD413 /* ScanMem32.nasm in Sources */, - A5AA04FA237F13C1009CD413 /* Invd.c in Sources */, - A5AA06D1237F13C2009CD413 /* BaseSerialPortLibNull.c in Sources */, - A5AAFD5A237F13B4009CD413 /* BmpSupportLib.c in Sources */, - A5AAFC21237F13B3009CD413 /* SmmLockBox.c in Sources */, - A5AA0706237F13C2009CD413 /* PeCoffGetEntryPoint.c in Sources */, - A5AA06BB237F13C2009CD413 /* SetMem32Wrapper.c in Sources */, - A5AA05D0237F13C1009CD413 /* MemoryFence.S in Sources */, - A5AA0749237F13C2009CD413 /* CompareMem.nasm in Sources */, - A5AA0573237F13C1009CD413 /* WriteDr2.c in Sources */, - A5AAFC07237F13B3009CD413 /* FileSystemOperations.c in Sources */, - A5AAFD1E237F13B4009CD413 /* PciHostBridgeLibNull.c in Sources */, A5456D4C23FC5B08000BF18C /* StartupSound.cpp in Sources */, A5456CE023FC5A88000BF18C /* common.cpp in Sources */, - A5AA0604237F13C1009CD413 /* InterlockedCompareExchange32.c in Sources */, - A5AAFC92237F13B4009CD413 /* NvmExpressBlockIo.c in Sources */, - A5AA04E1237F13C1009CD413 /* EnablePaging32.c in Sources */, - A5AAFBBB237F13B3009CD413 /* VariableTraditionalMm.c in Sources */, - A5AA066E237F13C2009CD413 /* SetMem.asm in Sources */, - A5AA05AC237F13C1009CD413 /* Math64.S in Sources */, - A5AA059C237F13C1009CD413 /* GetPowerOfTwo32.c in Sources */, - A5AA06DA237F13C2009CD413 /* MemoryAllocationLib.c in Sources */, - A5AA0451237F13C0009CD413 /* SmbusLib.c in Sources */, - A5AA069C237F13C2009CD413 /* SetMemWrapper.c in Sources */, - A5AA060D237F13C1009CD413 /* InterlockedCompareExchange16.c in Sources */, - A5AAFB20237F13B3009CD413 /* Dispatcher.c in Sources */, - A5AA04A1237F13C1009CD413 /* ReadDr1.nasm in Sources */, - A5AA06D5237F13C2009CD413 /* UefiScsiLib.c in Sources */, - A5AA047E237F13C1009CD413 /* ReadMm4.nasm in Sources */, - A5AA0642237F13C2009CD413 /* PciExpressLib.c in Sources */, - A5AA0681237F13C2009CD413 /* DxeCoreEntryPoint.c in Sources */, - A5AA0474237F13C1009CD413 /* GetPowerOfTwo64.c in Sources */, - A5AA0721237F13C2009CD413 /* ZeroMem.nasm in Sources */, A5456D9123FC5B72000BF18C /* globals_ctor.cpp in Sources */, - A5AA054E237F13C1009CD413 /* ReadDr4.c in Sources */, - A5AA06F1237F13C2009CD413 /* CompareMemWrapper.c in Sources */, - A5AA04AB237F13C1009CD413 /* WriteMm0.nasm in Sources */, A5456D7123FC5B08000BF18C /* device_inject.cpp in Sources */, - A5AAFC1A237F13B3009CD413 /* X64Entry.c in Sources */, - A5AAFB33237F13B3009CD413 /* Page.c in Sources */, - A5AA06D4237F13C2009CD413 /* SmmPeriodicSmiLib.c in Sources */, - A5AAFC45237F13B3009CD413 /* SdHci.c in Sources */, - A5AAFC0C237F13B3009CD413 /* Database.c in Sources */, - A5AAFC5D237F13B3009CD413 /* PciIo.c in Sources */, - A5AA0742237F13C2009CD413 /* PostCode.c in Sources */, - A5AAFBE2237F13B3009CD413 /* Pcd.c in Sources */, - A5AA074D237F13C3009CD413 /* SetMem.nasm in Sources */, - A5AA0688237F13C2009CD413 /* PciCf8Lib.c in Sources */, - A5AAFD52237F13B4009CD413 /* PiSmmCoreMemoryProfileLib.c in Sources */, - A5AAFC84237F13B4009CD413 /* Serial.c in Sources */, - A5AAFB4D237F13B3009CD413 /* PeiMain.c in Sources */, - A5AA047A237F13C1009CD413 /* Mwait.nasm in Sources */, - A5AAFC57237F13B3009CD413 /* SdMmcPciHcDxe.c in Sources */, - A5AAFC0F237F13B3009CD413 /* String.c in Sources */, - A5AAFC3F237F13B3009CD413 /* ComponentName.c in Sources */, - A5AA049F237F13C1009CD413 /* Thunk16.nasm in Sources */, - A5AAFB61237F13B3009CD413 /* PlDebugSupport.c in Sources */, - A5AA0761237F13C3009CD413 /* CopyMem.nasm in Sources */, - A5AAFC11237F13B3009CD413 /* ConfigKeywordHandler.c in Sources */, - A5AAFCE5237F13B4009CD413 /* DxeCapsuleRuntime.c in Sources */, - A5AAFBAA237F13B3009CD413 /* regversion.c in Sources */, A5456D5F23FC5B08000BF18C /* BootLog.cpp in Sources */, - A5AA0648237F13C2009CD413 /* ZeroMem.nasm in Sources */, - A5AA0663237F13C2009CD413 /* IsZeroBufferWrapper.c in Sources */, - A5AAFBA0237F13B3009CD413 /* unicode_fold3_key.c in Sources */, - A5AA0517237F13C1009CD413 /* EnableCache.nasm in Sources */, - A5AAFB31237F13B3009CD413 /* MemData.c in Sources */, - A5AAFC64237F13B3009CD413 /* PciRomTable.c in Sources */, - A5AA0543237F13C1009CD413 /* ReadCs.c in Sources */, A529343024FB9266004241C3 /* XRBuffer.cpp in Sources */, - A5AAFB2F237F13B3009CD413 /* Tpl.c in Sources */, - A5AAFBAC237F13B3009CD413 /* unicode_property_data.c in Sources */, - A5AA06CD237F13C2009CD413 /* MemLibGuid.c in Sources */, - A5AA07C7237F13CD009CD413 /* ComponentName.c in Sources */, - A5AA0591237F13C1009CD413 /* EnableDisableInterrupts.c in Sources */, - A5AAFC9F237F13B4009CD413 /* UsbHcMem.c in Sources */, - A5AA06F5237F13C2009CD413 /* IoLibEbc.c in Sources */, - A5AAFC10237F13B3009CD413 /* Image.c in Sources */, - A5AA04D5237F13C1009CD413 /* X86GetInterruptState.c in Sources */, - A5AA0641237F13C2009CD413 /* DebugLib.c in Sources */, - A5AAFC59237F13B3009CD413 /* PciEnumerator.c in Sources */, - A5AAFD40237F13B4009CD413 /* dictionary.c in Sources */, - A5AA069B237F13C2009CD413 /* IsZeroBufferWrapper.c in Sources */, - A5AA0561237F13C1009CD413 /* SwapBytes64.c in Sources */, - A5AAFC8B237F13B4009CD413 /* ComponentName.c in Sources */, - A5AAFC81237F13B4009CD413 /* SdMmcPciHcPei.c in Sources */, A57CF7BB241A8A13006DE51E /* XTheme.cpp in Sources */, A5456D5023FC5B08000BF18C /* kernel_patcher.cpp in Sources */, - A5AA0760237F13C3009CD413 /* ScanMem16.nasm in Sources */, A5456CFA23FC5AB8000BF18C /* FloatLib.cpp in Sources */, - A5AA05CE237F13C1009CD413 /* GetInterruptsState.asm in Sources */, - A5AA059A237F13C1009CD413 /* ReadTsc.nasm in Sources */, - A5AAFD64237F13B4009CD413 /* FrontPageCustomizedUiSupport.c in Sources */, A5456CF823FC5AB8000BF18C /* load_icns.cpp in Sources */, - A5AA04F5237F13C1009CD413 /* ReadPmc.c in Sources */, - A5AA0578237F13C1009CD413 /* ReadDr3.c in Sources */, - A5AAFBA3237F13B3009CD413 /* unicode_wb_data.c in Sources */, - A5AAFC4C237F13B3009CD413 /* ComponentName.c in Sources */, - A5AAFD5C237F13B4009CD413 /* HiiLib.c in Sources */, - A5AA0526237F13C1009CD413 /* ReadMm5.c in Sources */, - A5AAFC8C237F13B4009CD413 /* XhciSched.c in Sources */, - A5AA053F237F13C1009CD413 /* ReadCr0.nasm in Sources */, - A5AA0538237F13C1009CD413 /* WriteCr4.c in Sources */, - A5AA0601237F13C1009CD413 /* InterlockedCompareExchange16.nasm in Sources */, - A5AAFC20237F13B3009CD413 /* SerialIo.c in Sources */, - A5AAFB2E237F13B3009CD413 /* Event.c in Sources */, - A5AAFC52237F13B3009CD413 /* AtapiPeim.c in Sources */, - A5AAFB90237F13B3009CD413 /* EdbCmdSymbol.c in Sources */, - A5AA067E237F13C2009CD413 /* BaseStackCheckGcc.c in Sources */, - A5AA054B237F13C1009CD413 /* Mwait.c in Sources */, - A5AA0746237F13C2009CD413 /* CopyMemWrapper.c in Sources */, - A5AAFCD0237F13B4009CD413 /* UsbMassDiskInfo.c in Sources */, - A5AA04A2237F13C1009CD413 /* ReadMm3.nasm in Sources */, - A5AA04F0237F13C1009CD413 /* Monitor.c in Sources */, - A5AA0774237F13C3009CD413 /* PeCoffExtraActionLib.c in Sources */, - A5AAFB75237F13B3009CD413 /* ScriptExecute.c in Sources */, - A5AAFC4F237F13B3009CD413 /* ComponentName.c in Sources */, - A5AA055D237F13C1009CD413 /* CpuId.c in Sources */, - A5AAFB83237F13B3009CD413 /* EbcDebuggerConfig.c in Sources */, A5456D6B23FC5B08000BF18C /* sound.cpp in Sources */, - A5AAFCD7237F13B4009CD413 /* AhciPeiBlockIo.c in Sources */, - A5AA0657237F13C2009CD413 /* CompareMem.nasm in Sources */, A5456CDF23FC5A88000BF18C /* lockedgraphics.cpp in Sources */, - A5AA062B237F13C2009CD413 /* PciSegmentLibCommon.c in Sources */, - A5AAFC38237F13B3009CD413 /* ComponentName.c in Sources */, - A5AAFB96237F13B3009CD413 /* EbcSupport.c in Sources */, - A5AAFB13237F13B3009CD413 /* Crc32.c in Sources */, - A5AAFD6B237F13B4009CD413 /* CapsuleOnDisk.c in Sources */, - A5AAFB50237F13B3009CD413 /* CpuIo.c in Sources */, - A5AAFD24237F13B4009CD413 /* VarCheckHiiGen.c in Sources */, - A5AA05F6237F13C1009CD413 /* CopyMem.nasm in Sources */, - A5AAFC2D237F13B3009CD413 /* Expression.c in Sources */, - A5AA04E6237F13C1009CD413 /* WriteTr.nasm in Sources */, - A5AAFD38237F13B4009CD413 /* PlatformHookLibSerialPortPpi.c in Sources */, A5456D0223FC5AB8000BF18C /* lodepng.cpp in Sources */, - A5AA0505237F13C1009CD413 /* WriteCr3.c in Sources */, - A5AAFC73237F13B3009CD413 /* Uhci.c in Sources */, - A5AA069A237F13C2009CD413 /* ScanMem32Wrapper.c in Sources */, - A5AA05EE237F13C1009CD413 /* ScanMem64.nasm in Sources */, - A5AAFB8A237F13B3009CD413 /* EdbCmdScope.c in Sources */, A5816DF024180F82003BA66C /* global_test.cpp in Sources */, - A5AA0662237F13C2009CD413 /* ScanMem32Wrapper.c in Sources */, - A5AA04D2237F13C1009CD413 /* LRotU64.c in Sources */, - A5AA0468237F13C0009CD413 /* X86ReadIdtr.c in Sources */, A5456D6723FC5B08000BF18C /* kext_patcher.cpp in Sources */, - A5AA0725237F13C2009CD413 /* ScanMem32.nasm in Sources */, - A5AAFCDB237F13B4009CD413 /* DmaMem.c in Sources */, - A5AAFCAE237F13B4009CD413 /* UfsHcMem.c in Sources */, - A5AAFBAD237F13B3009CD413 /* st.c in Sources */, - A5AAFC1D237F13B3009CD413 /* UefiCapsule.c in Sources */, - A5AAFC6B237F13B3009CD413 /* EhciSched.c in Sources */, - A5AA06E9237F13C2009CD413 /* ScanMem64Wrapper.c in Sources */, - A5AA04B0237F13C1009CD413 /* WriteDr3.nasm in Sources */, - A5AAFC47237F13B3009CD413 /* EmmcHci.c in Sources */, - A5AAFC53237F13B3009CD413 /* SdMmcPciHci.c in Sources */, - A5AA04C8237F13C1009CD413 /* WriteMm7.nasm in Sources */, - A5AA05B0237F13C1009CD413 /* CpuBreakpoint.S in Sources */, - A5AA04DB237F13C1009CD413 /* X86EnablePaging64.c in Sources */, - A5AAFBC4237F13B3009CD413 /* VarCheck.c in Sources */, - A5AA063A237F13C2009CD413 /* CpuFlushTlb.S in Sources */, - A5AA063C237F13C2009CD413 /* CpuSleep.asm in Sources */, A5456CF723FC5AB8000BF18C /* libscreen.cpp in Sources */, - A5AAFD30237F13B4009CD413 /* BootOption.c in Sources */, - A5AA0623237F13C2009CD413 /* IsZeroBufferWrapper.c in Sources */, - A5AA04CC237F13C1009CD413 /* ReadTsc.nasm in Sources */, - A5AA06A2237F13C2009CD413 /* IoLib.c in Sources */, - A5AA06A3237F13C2009CD413 /* IoHighLevel.c in Sources */, - A5AA049C237F13C1009CD413 /* WriteDr1.nasm in Sources */, - A5AA0755237F13C3009CD413 /* SetMem32Wrapper.c in Sources */, - A5AAFD31237F13B4009CD413 /* BootMaintenanceManagerCustomizedUiSupport.c in Sources */, - A5AA04ED237F13C1009CD413 /* ReadSs.c in Sources */, - A5AAFC40237F13B3009CD413 /* GraphicsOutput.c in Sources */, - A5AAFC1C237F13B3009CD413 /* CapsuleCoalesce.c in Sources */, - A5AAFC03237F13B3009CD413 /* RamDiskDriver.c in Sources */, A5456CE123FC5A88000BF18C /* loader.cpp in Sources */, - A5AA0480237F13C1009CD413 /* CpuPause.nasm in Sources */, - A5AAFD0A237F13B4009CD413 /* DisplayUpdateProgressLibGraphics.c in Sources */, - A5AAFC23237F13B3009CD413 /* ReportStatusCodeRouterRuntimeDxe.c in Sources */, - A5AAFB48237F13B3009CD413 /* Reset.c in Sources */, - A5AA0626237F13C2009CD413 /* CompareMemWrapper.c in Sources */, - A5AAFB21237F13B3009CD413 /* Dependency.c in Sources */, - A5AAFB67237F13B3009CD413 /* AcpiSdt.c in Sources */, - A5AAFCEC237F13B4009CD413 /* SmmIpmiLibSmmIpmiProtocol.c in Sources */, - A5AA07D4237F13CD009CD413 /* Timer.c in Sources */, - A5AAFB81237F13B3009CD413 /* Edb.c in Sources */, - A5AAFBFB237F13B3009CD413 /* ComponentName.c in Sources */, - A5AAFB78237F13B3009CD413 /* EbcSupport.c in Sources */, - A5AAFCA8237F13B4009CD413 /* ComponentName.c in Sources */, - A5AA0572237F13C1009CD413 /* Non-existing.c in Sources */, - A5AA052C237F13C1009CD413 /* WriteCr3.nasm in Sources */, - A5AA05DE237F13C1009CD413 /* CompareMem.nasm in Sources */, - A5AAFB38237F13B3009CD413 /* PiSmmCore.c in Sources */, - A5AAFD20237F13B4009CD413 /* TpmMeasurementLibNull.c in Sources */, - A5AA06B4237F13C2009CD413 /* IsZeroBuffer.nasm in Sources */, - A5AAFCB1237F13B4009CD413 /* DmaMem.c in Sources */, - A5AAFC4B237F13B3009CD413 /* SdDxe.c in Sources */, - A5AA07D2237F13CD009CD413 /* SerialPortLib.c in Sources */, A57CF7D2241BE0FC006DE51E /* strncmp_test.cpp in Sources */, - A5AA0585237F13C1009CD413 /* ReadMsr64.nasm in Sources */, - A5AAFCDE237F13B4009CD413 /* ComponentName.c in Sources */, - A5AA0765237F13C3009CD413 /* CompareMemWrapper.c in Sources */, - A5AA073B237F13C2009CD413 /* UefiDriverModel.c in Sources */, - A5AAFD45237F13B4009CD413 /* bit_reader.c in Sources */, - A5AA05E1237F13C1009CD413 /* ScanMem32.nasm in Sources */, - A5AA0649237F13C2009CD413 /* CompareMem.nasm in Sources */, - A5AAFCB2237F13B4009CD413 /* UfsPassThruHci.c in Sources */, - A5AA065F237F13C2009CD413 /* SetMem32.nasm in Sources */, - A5AA0670237F13C2009CD413 /* CompareGuid.S in Sources */, - A5AA05F1237F13C1009CD413 /* IsZeroBuffer.nasm in Sources */, - A5AA046F237F13C1009CD413 /* FilePaths.c in Sources */, - A5AA06F6237F13C2009CD413 /* IoLibGcc.c in Sources */, - A5AAFB94237F13B3009CD413 /* EbcInt.c in Sources */, - A5AAFCF7237F13B4009CD413 /* LzmaDec.c in Sources */, - A5AA05BB237F13C1009CD413 /* SpeculationBarrier.asm in Sources */, - A5AAFD2F237F13B4009CD413 /* BmLib.c in Sources */, A5456D6123FC5B08000BF18C /* Settings.cpp in Sources */, - A5AAFD0E237F13B4009CD413 /* PeiPerformanceLib.c in Sources */, - A5AA0633237F13C2009CD413 /* CpuSleep.nasm in Sources */, - A5AA04E2237F13C1009CD413 /* WriteMm4.nasm in Sources */, - A5AAFC1F237F13B3009CD413 /* Print.c in Sources */, - A5AA060E237F13C1009CD413 /* GccInline.c in Sources */, - A5AAFB8E237F13B3009CD413 /* EdbCmdBranch.c in Sources */, - A5AAFB9A237F13B3009CD413 /* SmbiosDxe.c in Sources */, A570FB0D240D626D0057F26D /* XPointer.cpp in Sources */, - A5AAFD11237F13B4009CD413 /* SmmLockBoxDxeLib.c in Sources */, - A5AA04E0237F13C1009CD413 /* Unaligned.c in Sources */, - A5AAFB28237F13B3009CD413 /* DxeMain.c in Sources */, 12A60F5F1DB610500068BF8B /* SMCHelper.c in Sources */, - A5AAFC61237F13B3009CD413 /* ComponentName.c in Sources */, - A5AAFB42237F13B3009CD413 /* MemoryAttributesTable.c in Sources */, - A5AAFBC7237F13B3009CD413 /* InputHandler.c in Sources */, - A5AA0770237F13C3009CD413 /* IoLib.c in Sources */, - A5AAFB46237F13B3009CD413 /* Hob.c in Sources */, - A5AA0696237F13C2009CD413 /* ScanMem8Wrapper.c in Sources */, - A5AAFB80237F13B3009CD413 /* EdbCmdExtIo.c in Sources */, A5456D5123FC5B08000BF18C /* HdaCodecDump.cpp in Sources */, A5456CFF23FC5AB8000BF18C /* scroll_images.cpp in Sources */, - A5AA0773237F13C3009CD413 /* DxeServicesTableLib.c in Sources */, - A5AAFC42237F13B3009CD413 /* SdBlockIoPei.c in Sources */, - A5AAFC79237F13B4009CD413 /* DevicePath.c in Sources */, - A5AAFCB9237F13B4009CD413 /* ComponentName.c in Sources */, A5456CD923FC5A88000BF18C /* securehash.cpp in Sources */, - A5AA052E237F13C1009CD413 /* WriteMm4.c in Sources */, - A5AA0729237F13C2009CD413 /* ScanMem8.nasm in Sources */, A5456D9623FC5B72000BF18C /* operatorNewDelete.cpp in Sources */, - A5AA0527237F13C1009CD413 /* ReadCs.nasm in Sources */, - A5AA0685237F13C2009CD413 /* PeCoffLoaderEx.c in Sources */, - A5AA0537237F13C1009CD413 /* FxSave.c in Sources */, - A5AAFB36237F13B3009CD413 /* SmiHandlerProfile.c in Sources */, - A5AAFCF1237F13B4009CD413 /* FmpAuthenticationLibNull.c in Sources */, - A5AA06F8237F13C2009CD413 /* IoFifo.nasm in Sources */, 12AAF3A51DB75DC800A52B12 /* FirmwareVolume.c in Sources */, - A5AA055A237F13C1009CD413 /* WriteDr3.nasm in Sources */, - A5AA052B237F13C1009CD413 /* MultU64x32.c in Sources */, - A5AA0600237F13C1009CD413 /* InterlockedIncrement.nasm in Sources */, A57CF7D7241BE111006DE51E /* XString_test.cpp in Sources */, - A5AAFC39237F13B3009CD413 /* Ansi.c in Sources */, - A5AA0643237F13C2009CD413 /* PciExpressLib.c in Sources */, - A5AA0682237F13C2009CD413 /* PostCode.c in Sources */, - A5AA044E237F13C0009CD413 /* PeiServicesTablePointer.c in Sources */, - A5AA059D237F13C1009CD413 /* Math64.c in Sources */, - A5AAFBA8237F13B3009CD413 /* regsyntax.c in Sources */, - A5AA05E9237F13C1009CD413 /* ScanMem8Wrapper.c in Sources */, - A5AAFD39237F13B4009CD413 /* BaseSerialPortLib16550.c in Sources */, - A5AA04DE237F13C1009CD413 /* SafeString.c in Sources */, A5816DF62418103A003BA66C /* menu_items.cpp in Sources */, - A5AAFD13237F13B4009CD413 /* MemoryAllocationLib.c in Sources */, - A5AA05A6237F13C1009CD413 /* SetJump.c in Sources */, - A5AAFCE7237F13B4009CD413 /* DxeCapsuleProcessLibNull.c in Sources */, - A5AA0566237F13C1009CD413 /* ReadCr4.c in Sources */, - A5AA075E237F13C3009CD413 /* ScanMem8.nasm in Sources */, - A5AA05FF237F13C1009CD413 /* InterlockedCompareExchange64.c in Sources */, - A5AAFB8B237F13B3009CD413 /* EdbCmdQuit.c in Sources */, - A5AA067D237F13C2009CD413 /* PcdLib.c in Sources */, - A5AA049A237F13C1009CD413 /* EnableDisableInterrupts.nasm in Sources */, - A5AAFB97237F13B3009CD413 /* EbcLowLevel.S in Sources */, - A5AA0534237F13C1009CD413 /* ReadCr3.nasm in Sources */, - A5AAFB4F237F13B3009CD413 /* BootMode.c in Sources */, - A5AA0740237F13C2009CD413 /* HstiDxe.c in Sources */, - A5AA056C237F13C1009CD413 /* DisableCache.c in Sources */, - A5AAFD55237F13B4009CD413 /* PrintLib.c in Sources */, - A5AAFCA3237F13B4009CD413 /* Ps2KbdTextIn.c in Sources */, - A5AA068C237F13C2009CD413 /* SafeIntLib32.c in Sources */, - A5AAFCF4237F13B4009CD413 /* F86GuidedSectionExtraction.c in Sources */, - A5AAFD2C237F13B4009CD413 /* SmmCorePlatformHookLibNull.c in Sources */, - A5AA070C237F13C2009CD413 /* SmmMemLib.c in Sources */, - A5AAFB9C237F13B3009CD413 /* unicode_property_data_posix.c in Sources */, - A5AA05DA237F13C1009CD413 /* ZeroMemWrapper.c in Sources */, - A5AA05A7237F13C1009CD413 /* X86EnablePaging32.c in Sources */, - A5AAFB2C237F13B3009CD413 /* CoreSectionExtraction.c in Sources */, - A5AA0498237F13C1009CD413 /* WriteGdtr.nasm in Sources */, - A5AAFB93237F13B3009CD413 /* EbcLowLevel.nasm in Sources */, - A5AAFD12237F13B4009CD413 /* DxePerformanceLib.c in Sources */, - A5AAFC89237F13B4009CD413 /* Xhci.c in Sources */, - A5AA071B237F13C2009CD413 /* ScanMem8.nasm in Sources */, - A5AAFD35237F13B4009CD413 /* Data.c in Sources */, - A5AA0756237F13C3009CD413 /* ZeroMem.nasm in Sources */, - A5AAFB4C237F13B3009CD413 /* Image.c in Sources */, - A5AAFBD3237F13B3009CD413 /* FaultTolerantWriteTraditionalMm.c in Sources */, A5456D6223FC5B08000BF18C /* spd.cpp in Sources */, - A5AA0736237F13C2009CD413 /* RuntimeLib.c in Sources */, - A5AAFB15237F13B3009CD413 /* MemoryProtection.c in Sources */, - A5AAFC78237F13B4009CD413 /* UsbHcMem.c in Sources */, - A5AAFC60237F13B3009CD413 /* PciEnumeratorSupport.c in Sources */, - A5AA06FF237F13C2009CD413 /* IoLibArm.c in Sources */, - A5AAFC86237F13B4009CD413 /* ComponentName.c in Sources */, - A5AAFCC8237F13B4009CD413 /* PeiUsbLib.c in Sources */, - A5AA0652237F13C2009CD413 /* ScanMem16.nasm in Sources */, - A5AA06DD237F13C2009CD413 /* DebugLibConstructor.c in Sources */, - A5AA05A9237F13C1009CD413 /* SwapBytes16.c in Sources */, - A5AAFB4B237F13B3009CD413 /* Dependency.c in Sources */, - A5AAFBA5237F13B3009CD413 /* regcomp.c in Sources */, - A5AAFD1B237F13B4009CD413 /* BaseResetSystemLibNull.c in Sources */, - A5AA065E237F13C2009CD413 /* ScanMem8.nasm in Sources */, - A5AA055F237F13C1009CD413 /* WriteMm5.c in Sources */, - A5AA05C5237F13C1009CD413 /* SwitchStack.S in Sources */, - A5AAFCAA237F13B4009CD413 /* ScsiDisk.c in Sources */, A5456D8123FC5B40000BF18C /* menu.cpp in Sources */, - A5AA0712237F13C2009CD413 /* ScanMem64Wrapper.c in Sources */, - A5AA060F237F13C1009CD413 /* InterlockedCompareExchange32.c in Sources */, - A5AAFB7A237F13B3009CD413 /* EbcDebuggerHook.c in Sources */, - A5AA048B237F13C1009CD413 /* ReadDr0.nasm in Sources */, - A5AAFD17237F13B4009CD413 /* BootScriptSave.c in Sources */, - A5AA0518237F13C1009CD413 /* CpuIdEx.nasm in Sources */, - A5AAFD0C237F13B4009CD413 /* ReportStatusCodeLib.c in Sources */, - A5AAFB64237F13B3009CD413 /* AcpiTableProtocol.c in Sources */, - A5AAFBAF237F13B3009CD413 /* regposerr.c in Sources */, - A5AA0522237F13C1009CD413 /* ReadGs.nasm in Sources */, - A5AAFC08237F13B3009CD413 /* ComponentName.c in Sources */, - A5AAFB6B237F13B3009CD413 /* AcpiS3ContextSave.c in Sources */, - A5AAFC96237F13B4009CD413 /* NonDiscoverablePciDeviceIo.c in Sources */, - A5AAFB77237F13B3009CD413 /* FirmwarePerformanceDxe.c in Sources */, - A5AAFCC1237F13B4009CD413 /* ComponentName.c in Sources */, - A5AAFD65237F13B4009CD413 /* String.c in Sources */, - A5AA0754237F13C3009CD413 /* ScanMem8Wrapper.c in Sources */, - A5AAFD03237F13B4009CD413 /* BmBoot.c in Sources */, - A5AA06BC237F13C2009CD413 /* ZeroMem.nasm in Sources */, - A5AAFC15237F13B3009CD413 /* FaultTolerantWritePei.c in Sources */, - A5AAFB86237F13B3009CD413 /* EdbCmdStep.c in Sources */, - A5AA0697237F13C2009CD413 /* SetMem32Wrapper.c in Sources */, - A5AA0708237F13C2009CD413 /* SmmIoLib.c in Sources */, - A5AAFB62237F13B3009CD413 /* PlDebugSupportIa32.c in Sources */, - A5AAFC5E237F13B3009CD413 /* PciCommand.c in Sources */, - A5AA06C9237F13C2009CD413 /* IsZeroBufferWrapper.c in Sources */, - A5AAFD0B237F13B4009CD413 /* AuthVariableLibNull.c in Sources */, - A5AA04BF237F13C1009CD413 /* WriteIdtr.nasm in Sources */, - A5AAFC4E237F13B3009CD413 /* EmmcBlockIo.c in Sources */, - A5AA05C4237F13C1009CD413 /* EnableInterrupts.asm in Sources */, - A5AAFB29237F13B3009CD413 /* Library.c in Sources */, - A5AA04EF237F13C1009CD413 /* DivS64x64Remainder.c in Sources */, - A5AAFB49237F13B3009CD413 /* Dispatcher.c in Sources */, - A5AA0638237F13C2009CD413 /* CpuSleep.asm in Sources */, - A5AAFB6F237F13B3009CD413 /* FirmwarePerformancePei.c in Sources */, - A5AAFCA0237F13B4009CD413 /* UfsPciHcPei.c in Sources */, - A5AA0514237F13C1009CD413 /* ReadCr2.nasm in Sources */, A5D12C3F243A0CBB00DFA98A /* wchar.cpp in Sources */, - A5AA0624237F13C2009CD413 /* SetMemWrapper.c in Sources */, - A5AA06A9237F13C2009CD413 /* DebugLib.c in Sources */, - A5AA05C7237F13C1009CD413 /* SetJumpLongJump.asm in Sources */, A5456D5E23FC5B08000BF18C /* smbios.cpp in Sources */, - A5AAFC35237F13B3009CD413 /* TerminalConIn.c in Sources */, - A5AAFBDA237F13B3009CD413 /* SmbiosMeasurementDxe.c in Sources */, - A5AAFD6D237F13B4009CD413 /* CapsuleDump.c in Sources */, - A5AAFBB4237F13B3009CD413 /* unicode_unfold_key.c in Sources */, - A5AA0581237F13C1009CD413 /* Monitor.nasm in Sources */, - A5AAFB9D237F13B3009CD413 /* unicode.c in Sources */, - A5AAFB73237F13B3009CD413 /* S3Asm.nasm in Sources */, - A5AA06B7237F13C2009CD413 /* SetMem32.nasm in Sources */, A5456D5723FC5B08000BF18C /* usbfix.cpp in Sources */, - A5AA0546237F13C1009CD413 /* ReadMm0.nasm in Sources */, - A5AA04E5237F13C1009CD413 /* WriteDr6.nasm in Sources */, - A5AAFBDB237F13B3009CD413 /* HiiResourcesSample.c in Sources */, - A5AA0479237F13C1009CD413 /* WriteCr4.nasm in Sources */, - A5AA0506237F13C1009CD413 /* WriteMsr64.nasm in Sources */, - A5AA0748237F13C2009CD413 /* ZeroMem.nasm in Sources */, - A5AA0495237F13C1009CD413 /* DisableCache.nasm in Sources */, - A5AA0554237F13C1009CD413 /* WriteMm1.nasm in Sources */, - A5AA0650237F13C2009CD413 /* ScanMem8.nasm in Sources */, - A5AA04B7237F13C1009CD413 /* Wbinvd.nasm in Sources */, A5456CFE23FC5AB8000BF18C /* BmLib.cpp in Sources */, - A5AAFD61237F13B4009CD413 /* DxeResetSystemLib.c in Sources */, - A5AAFC54237F13B3009CD413 /* SdDevice.c in Sources */, A5456D5523FC5B08000BF18C /* LegacyBiosThunk.cpp in Sources */, - A5AAFB47237F13B3009CD413 /* Security.c in Sources */, - A5AA0758237F13C3009CD413 /* SetMem16.nasm in Sources */, - A5AA04CD237F13C1009CD413 /* X86Msr.c in Sources */, - A5AAFD4E237F13B4009CD413 /* VarCheckUefiLibNullClass.c in Sources */, - A5AA06B6237F13C2009CD413 /* ScanMem8.nasm in Sources */, - A5AA070F237F13C2009CD413 /* SetMem64Wrapper.c in Sources */, - A5AAFBC1237F13B3009CD413 /* Reclaim.c in Sources */, - A5AA0676237F13C2009CD413 /* CompareMem.S in Sources */, - A5AAFD71237F13B4009CD413 /* SmiHandlerProfileInfo.c in Sources */, - A5AA06C5237F13C2009CD413 /* SetMem32.nasm in Sources */, - A5AA0574237F13C1009CD413 /* EnablePaging64.nasm in Sources */, - A5AAFD15237F13B4009CD413 /* PlatformBootManager.c in Sources */, - A5AAFD23237F13B4009CD413 /* UefiSortLib.c in Sources */, - A5AAFBD5237F13B3009CD413 /* FaultTolerantWriteSmm.c in Sources */, - A5AA04EA237F13C1009CD413 /* ReadFs.nasm in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; diff --git a/hebuild.sh b/hebuild.sh index 6beb9f6c2..344773859 100755 --- a/hebuild.sh +++ b/hebuild.sh @@ -188,7 +188,7 @@ isNASMGood() { # nasm should be greater or equal to 2.12.02 to be good building Clover. # There was a bad macho relocation in outmacho.c, fixed by Zenith432 # and accepted by nasm devel during 2.12.rcxx (release candidate) - # modern nasm is 2.14 + # modern nasm is 2.15 result=1 local nasmver=$( "${1}" -v | grep 'NASM version' | awk '{print $3}' ) @@ -567,7 +567,7 @@ MainBuildScript() { cmd="build $cmd" fi - cmd="$cmd -p $PLATFORMFILE $MODULEFILE -a $TARGETARCH -b $BUILDTARGET" + cmd="$cmd -p $PLATFORMFILE $MODULEFILE -a $TARGETARCH -b $BUILDTARGET -DLESS_DEBUG" cmd="$cmd -t $TOOLCHAIN -n $BUILDTHREADS $TARGETRULE" echo diff --git a/rEFIt_UEFI/Platform/Settings.cpp b/rEFIt_UEFI/Platform/Settings.cpp index aa7654388..39721edc6 100644 --- a/rEFIt_UEFI/Platform/Settings.cpp +++ b/rEFIt_UEFI/Platform/Settings.cpp @@ -3080,8 +3080,9 @@ GetEarlyUserSettings ( Prop = OcQuirksDict->propertyForKey("DisableLinkeditJettison"); gSettings.KernelAndKextPatches.OcKernelQuirks.DisableLinkeditJettison = IsPropertyNotNullAndTrue(Prop); - Prop = OcQuirksDict->propertyForKey("DisableRtcChecksum"); - gSettings.KernelAndKextPatches.OcKernelQuirks.DisableRtcChecksum = IsPropertyNotNullAndTrue(Prop); + // Prop = OcQuirksDict->propertyForKey("DisableRtcChecksum"); + // gSettings.KernelAndKextPatches.OcKernelQuirks.DisableRtcChecksum = IsPropertyNotNullAndTrue(Prop); + gSettings.KernelAndKextPatches.OcKernelQuirks.DisableRtcChecksum = gSettings.KernelAndKextPatches.KPAppleRTC; Prop = OcQuirksDict->propertyForKey("DummyPowerManagement"); gSettings.KernelAndKextPatches.OcKernelQuirks.DummyPowerManagement = IsPropertyNotNullAndTrue(Prop); diff --git a/rEFIt_UEFI/Platform/kext_inject.cpp b/rEFIt_UEFI/Platform/kext_inject.cpp index 5fbc963bb..e2ee4e7e6 100644 --- a/rEFIt_UEFI/Platform/kext_inject.cpp +++ b/rEFIt_UEFI/Platform/kext_inject.cpp @@ -134,7 +134,6 @@ BOOLEAN LOADER_ENTRY::checkOSBundleRequired(const TagDict* dict) //XStringW infoPlistPath = getKextPlist(dir, KextEntry, &NoContents); XStringW LOADER_ENTRY::getKextPlist(const XStringW& dirPath, const SIDELOAD_KEXT& KextEntry, BOOLEAN* NoContents) { - EFI_STATUS Status; XStringW TempName; TempName = SWPrintf("%ls\\%ls\\%ls", dirPath.wc_str(), KextEntry.FileName.wc_str(), L"Contents\\Info.plist"); @@ -144,7 +143,7 @@ XStringW LOADER_ENTRY::getKextPlist(const XStringW& dirPath, const SIDELOAD_KEXT //try to find a planar kext, without Contents TempName = SWPrintf("%ls\\%ls\\%ls", dirPath.wc_str(), KextEntry.FileName.wc_str(), L"Info.plist"); if (!FileExists(&self.getCloverDir(), TempName)) { - MsgLog("Failed to load extra kext : %ls status=%s\n", TempName.wc_str(), efiStrError(Status)); + MsgLog("Failed to load extra kext : %ls \n", TempName.wc_str()); return L""_XSW; } *NoContents = TRUE; diff --git a/rEFIt_UEFI/refit/lib.cpp b/rEFIt_UEFI/refit/lib.cpp index 59cc3b241..e8bc096a0 100644 --- a/rEFIt_UEFI/refit/lib.cpp +++ b/rEFIt_UEFI/refit/lib.cpp @@ -163,7 +163,7 @@ EFI_STATUS GetRootFromPath(IN EFI_DEVICE_PATH_PROTOCOL* DevicePath, OUT EFI_FILE EFI_STATUS InitRefitLib(IN EFI_HANDLE ImageHandle) { self.initialize(ImageHandle); - DBG("SelfDirPath = %ls\n", self.getCloverDirPathAsXStringW().wc_str()); +// DBG("SelfDirPath = %ls\n", self.getCloverDirPathAsXStringW().wc_str()); return EFI_SUCCESS; } diff --git a/rEFIt_UEFI/refit/main.cpp b/rEFIt_UEFI/refit/main.cpp index b3a7006ad..bb21a6369 100644 --- a/rEFIt_UEFI/refit/main.cpp +++ b/rEFIt_UEFI/refit/main.cpp @@ -1004,12 +1004,18 @@ DBG("Beginning OC\n"); #endif #endif + + if ( GlobalConfig.DebugLog ) { mOpenCoreConfiguration.Misc.Debug.AppleDebug = true; mOpenCoreConfiguration.Misc.Debug.ApplePanic = true; // mOpenCoreConfiguration.Misc.Debug.DisableWatchDog = true; // already done by Clover ? +#ifndef LESS_DEBUG mOpenCoreConfiguration.Misc.Debug.DisplayLevel = 0x80400042; +#else + mOpenCoreConfiguration.Misc.Debug.DisplayLevel = 0x80000042; +#endif mOpenCoreConfiguration.Misc.Debug.Target = 0x41; }else{ #ifdef JIEF_DEBUG