Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Integrate UefiCpuLib breaking change #689

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion MU_BASECORE
Submodule MU_BASECORE updated 37 files
+25 −2 .azurepipelines/MuDevOpsWrapper.yml
+1 −1 .devcontainer/devcontainer.json
+1 −1 .github/workflows/auto-approve.yml
+1 −1 .github/workflows/auto-merge.yml
+73 −1 .github/workflows/codeql.yml
+1 −1 .github/workflows/issue-assignment.yml
+1 −1 .github/workflows/label-issues.yml
+1 −1 .github/workflows/label-sync.yml
+1 −1 .github/workflows/release-draft.yml
+1 −1 .github/workflows/stale.yml
+1 −1 .github/workflows/triage-issues.yml
+10 −9 .pytool/Plugin/RustHostUnitTestPlugin/RustHostUnitTestPlugin.py
+48 −0 MdePkg/Include/Library/CpuLib.h
+6 −0 MdePkg/Library/BaseCpuLib/BaseCpuLib.inf
+0 −0 MdePkg/Library/BaseCpuLib/Ia32/InitializeFpu.nasm
+0 −0 MdePkg/Library/BaseCpuLib/X64/InitializeFpu.nasm
+1 −1 MdePkg/Library/BaseCpuLib/X86BaseCpuLib.c
+0 −1 UefiCpuPkg/CpuDxe/CpuDxe.h
+0 −1 UefiCpuPkg/CpuDxe/CpuDxe.inf
+0 −49 UefiCpuPkg/Include/Library/UefiCpuLib.h
+1 −7 UefiCpuPkg/Library/BaseUefiCpuLib/BaseUefiCpuLib.inf
+18 −0 UefiCpuPkg/Library/BaseUefiCpuLib/BaseUefiCpuLibNull.c
+0 −1 UefiCpuPkg/Library/BaseXApicLib/BaseXApicLib.c
+0 −1 UefiCpuPkg/Library/BaseXApicLib/BaseXApicLib.inf
+0 −1 UefiCpuPkg/Library/BaseXApicX2ApicLib/BaseXApicX2ApicLib.c
+0 −1 UefiCpuPkg/Library/BaseXApicX2ApicLib/BaseXApicX2ApicLib.inf
+0 −1 UefiCpuPkg/Library/MpInitLib/DxeMpInitLib.inf
+0 −1 UefiCpuPkg/Library/MpInitLib/MpLib.h
+0 −1 UefiCpuPkg/Library/MpInitLib/PeiMpInitLib.inf
+0 −1 UefiCpuPkg/PiSmmCpuDxeSmm/PiSmmCpuDxeSmm.h
+0 −1 UefiCpuPkg/PiSmmCpuDxeSmm/PiSmmCpuDxeSmm.inf
+0 −1 UefiCpuPkg/PiSmmCpuDxeSmm/SmmProfileInternal.h
+0 −1 UefiCpuPkg/SecCore/SecCore.inf
+0 −1 UefiCpuPkg/SecCore/SecCoreNative.inf
+0 −1 UefiCpuPkg/SecCore/SecMain.h
+2 −0 rust-toolchain.toml
+2 −4 rustfmt.toml
2 changes: 1 addition & 1 deletion Platforms/QemuQ35Pkg/CpuInfoDxe/CpuInfoDxe.c
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
#include <Library/UefiBootServicesTableLib.h>
#include <Library/BaseLib.h>
#include <Library/PrintLib.h>
#include <Library/UefiCpuLib.h>
#include <Library/CpuLib.h>
#include <Register/Intel/Cpuid.h>

#define MAX_MESSAGE_LENGTH 64
Expand Down
4 changes: 2 additions & 2 deletions Platforms/QemuQ35Pkg/CpuInfoDxe/CpuInfoDxe.inf
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
ENTRY_POINT = CpuInfoDxeEntryPoint

[Sources]
CpuInfoDxe.c
CpuInfoDxe.c

[Packages]
MdePkg/MdePkg.dec
Expand All @@ -28,7 +28,7 @@
UefiLib
BaseLib
PrintLib
UefiCpuLib
CpuLib
UefiDriverEntryPoint
UefiBootServicesTableLib

Expand Down
1 change: 0 additions & 1 deletion Platforms/QemuQ35Pkg/QemuQ35Pkg.dsc
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,6 @@

# CPU/SMBUS/Peripherals Libraries
CpuLib |MdePkg/Library/BaseCpuLib/BaseCpuLib.inf
UefiCpuLib |UefiCpuPkg/Library/BaseUefiCpuLib/BaseUefiCpuLib.inf
SynchronizationLib |MdePkg/Library/BaseSynchronizationLib/BaseSynchronizationLib.inf
LocalApicLib |UefiCpuPkg/Library/BaseXApicX2ApicLib/BaseXApicX2ApicLib.inf
SmbusLib |MdePkg/Library/BaseSmbusLibNull/BaseSmbusLibNull.inf
Expand Down
2 changes: 1 addition & 1 deletion Platforms/QemuQ35Pkg/Sec/SecMain.c
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
#include <Library/BaseMemoryLib.h>
#include <Library/PeiServicesLib.h>
#include <Library/PcdLib.h>
#include <Library/UefiCpuLib.h>
#include <Library/CpuLib.h>
#include <Library/DebugAgentLib.h>
#include <Library/IoLib.h>
#include <Library/PeCoffLib.h>
Expand Down
2 changes: 1 addition & 1 deletion Platforms/QemuQ35Pkg/Sec/SecMain.inf
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
BaseMemoryLib
PeiServicesLib
PcdLib
UefiCpuLib
CpuLib
DebugAgentLib
IoLib
PeCoffLib
Expand Down