Changeset 77662 in vbox for trunk/src/VBox/Devices/EFI/FirmwareNew/UefiCpuPkg/CpuDxe/CpuDxe.inf
- Timestamp:
- Mar 12, 2019 12:40:12 PM (6 years ago)
- svn:sync-xref-src-repo-rev:
- 129295
- Location:
- trunk/src/VBox/Devices/EFI/FirmwareNew
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/EFI/FirmwareNew
-
Property svn:mergeinfo
changed from (toggle deleted branches)
to (toggle deleted branches)/vendor/edk2/current 103735-103757,103769-103776 /vendor/edk2/current 103735-103757,103769-103776,129194-129237
-
Property svn:mergeinfo
changed from (toggle deleted branches)
-
trunk/src/VBox/Devices/EFI/FirmwareNew/UefiCpuPkg/CpuDxe/CpuDxe.inf
r58459 r77662 1 1 ## @file 2 # Simple CPU driver installs CPU Architecture Protocol.2 # CPU driver installs CPU Architecture Protocol and CPU MP protocol. 3 3 # 4 # Copyright (c) 2008 - 2014, Intel Corporation. All rights reserved.<BR> 4 # Copyright (c) 2008 - 2017, Intel Corporation. All rights reserved.<BR> 5 # Copyright (c) 2017, AMD Incorporated. All rights reserved.<BR> 6 # 5 7 # This program and the accompanying materials 6 8 # are licensed and made available under the terms and conditions of the BSD License … … 20 22 MODULE_TYPE = DXE_DRIVER 21 23 VERSION_STRING = 1.0 22 23 24 ENTRY_POINT = InitializeCpu 24 25 … … 42 43 UefiLib 43 44 CpuExceptionHandlerLib 45 HobLib 46 ReportStatusCodeLib 47 MpInitLib 48 TimerLib 44 49 45 50 [Sources] … … 47 52 CpuDxe.h 48 53 CpuGdt.c 54 CpuGdt.h 55 CpuMp.c 56 CpuMp.h 57 CpuPageTable.h 58 CpuPageTable.c 49 59 50 60 [Sources.IA32] 51 Ia32/CpuAsm.asm | MSFT52 Ia32/CpuAsm. asm | INTEL53 Ia32/CpuAsm.S | GCC61 Ia32/CpuAsm.asm 62 Ia32/CpuAsm.nasm 63 Ia32/CpuAsm.S 54 64 55 65 [Sources.X64] 56 X64/CpuAsm.asm | MSFT57 X64/CpuAsm. asm | INTEL58 X64/CpuAsm.S | GCC66 X64/CpuAsm.asm 67 X64/CpuAsm.nasm 68 X64/CpuAsm.S 59 69 60 70 [Protocols] 61 71 gEfiCpuArchProtocolGuid ## PRODUCES 72 gEfiMpServiceProtocolGuid ## PRODUCES 73 gEfiSmmBase2ProtocolGuid ## SOMETIMES_CONSUMES 62 74 63 75 [Guids] 64 76 gIdleLoopEventGuid ## CONSUMES ## Event 65 77 gEfiVectorHandoffTableGuid ## SOMETIMES_CONSUMES ## SystemTable 78 79 [Ppis] 80 gEfiSecPlatformInformation2PpiGuid ## UNDEFINED # HOB 81 gEfiSecPlatformInformationPpiGuid ## UNDEFINED # HOB 82 83 [Pcd] 84 gEfiMdeModulePkgTokenSpaceGuid.PcdPteMemoryEncryptionAddressOrMask ## CONSUMES 85 gEfiMdeModulePkgTokenSpaceGuid.PcdCpuStackGuard ## CONSUMES 86 gUefiCpuPkgTokenSpaceGuid.PcdCpuStackSwitchExceptionList ## CONSUMES 87 gUefiCpuPkgTokenSpaceGuid.PcdCpuKnownGoodStackSize ## CONSUMES 66 88 67 89 [Depex]
Note:
See TracChangeset
for help on using the changeset viewer.