Skip to content

Commit

Permalink
Bump Common/MU from 2023020002.0.1 to 2023020002.0.2 (#736)
Browse files Browse the repository at this point in the history
Bumps Common/MU from `2023020002.0.1` to `2023020002.0.2`

Introduces 15 new commits in
[Common/MU](https://github.com/microsoft/mu_plus.git).

Signed-off-by: Project Mu Bot <[email protected]>
  • Loading branch information
ProjectMuBot authored Oct 16, 2023
1 parent 90fa83e commit d2469c6
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Common/MU
Submodule MU updated 32 files
+6 −0 AdvLoggerPkg/Docs/ReadMe.md
+ AdvLoggerPkg/Docs/debug_log_level.png
+10 −1 Cargo.toml
+13 −0 HidPkg/Crates/AbsolutePointer/Cargo.toml
+114 −0 HidPkg/Crates/AbsolutePointer/src/lib.rs
+13 −0 HidPkg/Crates/HidIo/Cargo.toml
+153 −0 HidPkg/Crates/HidIo/src/lib.rs
+4 −0 HidPkg/HidPkg.dec
+2 −0 HidPkg/HidPkg.dsc
+161 −0 HidPkg/Include/Protocol/HidIo.h
+24 −0 HidPkg/UefiHidDxe/Cargo.toml
+22 −0 HidPkg/UefiHidDxe/UefiHidDxe.inf
+149 −0 HidPkg/UefiHidDxe/src/driver_binding.rs
+220 −0 HidPkg/UefiHidDxe/src/hid.rs
+45 −0 HidPkg/UefiHidDxe/src/keyboard.rs
+60 −0 HidPkg/UefiHidDxe/src/main.rs
+517 −0 HidPkg/UefiHidDxe/src/pointer.rs
+1,072 −0 HidPkg/UsbHidDxe/UsbHidDxe.c
+42 −0 HidPkg/UsbHidDxe/UsbHidDxe.inf
+17 −13 UefiTestingPkg/AuditTests/PagingAudit/UEFI/AArch64/PagingAuditProcessor.c
+1,192 −100 UefiTestingPkg/AuditTests/PagingAudit/UEFI/Dxe/App/DxePagingAuditTestApp.c
+1 −0 UefiTestingPkg/AuditTests/PagingAudit/UEFI/DxePagingAuditDriver.inf
+3 −0 UefiTestingPkg/AuditTests/PagingAudit/UEFI/DxePagingAuditTestApp.inf
+1 −0 UefiTestingPkg/AuditTests/PagingAudit/UEFI/SmmPagingAuditTestApp.inf
+14 −7 UefiTestingPkg/AuditTests/PagingAudit/UEFI/X64/PagingAuditProcessor.c
+2 −0 UefiTestingPkg/AuditTests/PagingAudit/Windows/BinaryParsing.py
+366 −260 UefiTestingPkg/AuditTests/PagingAudit/Windows/DxePaging_template_AArch64.html
+360 −255 UefiTestingPkg/AuditTests/PagingAudit/Windows/DxePaging_template_X64.html
+1 −0 UefiTestingPkg/AuditTests/PagingAudit/Windows/Globals.py
+7 −2 UefiTestingPkg/AuditTests/PagingAudit/Windows/PagingReportGenerator.py
+1 −0 UefiTestingPkg/Library/FlatPageTableLib/AArch64/FlatPageTableAArch64.c
+2 −1 UefiTestingPkg/UefiTestingPkg.ci.yaml
1 change: 1 addition & 0 deletions Platforms/QemuQ35Pkg/PlatformBuild.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@
# Declare test whose failure will not return a non-zero exit code
FAILURE_EXEMPT_TESTS = {
# example "PiValueTestApp.efi": datetime.datetime(3141, 5, 9, 2, 6, 53, 589793),
"DxePagingAuditTestApp.efi": datetime.datetime(2023, 10, 16, 0, 0, 0, 0)
}

# Allow failure exempt tests to be ignored for 90 days
Expand Down
1 change: 1 addition & 0 deletions Platforms/QemuQ35Pkg/QemuQ35Pkg.dsc
Original file line number Diff line number Diff line change
Expand Up @@ -207,6 +207,7 @@
DxeMemoryProtectionHobLib |MdeModulePkg/Library/MemoryProtectionHobLibNull/DxeMemoryProtectionHobLibNull.inf
ExceptionPersistenceLib |MsCorePkg/Library/ExceptionPersistenceLibCmos/ExceptionPersistenceLibCmos.inf
CpuPageTableLib |UefiCpuPkg/Library/CpuPageTableLib/CpuPageTableLib.inf
FlatPageTableLib |UefiTestingPkg/Library/FlatPageTableLib/FlatPageTableLib.inf

# Variable Libraries
VariablePolicyLib |MdeModulePkg/Library/VariablePolicyLib/VariablePolicyLib.inf
Expand Down
1 change: 1 addition & 0 deletions Platforms/QemuSbsaPkg/PlatformBuild.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
# Declare test whose failure will not return a non-zero exit code
FAILURE_EXEMPT_TESTS = {
# example "PiValueTestApp.efi": datetime.datetime(3141, 5, 9, 2, 6, 53, 589793),
"DxePagingAuditTestApp.efi": datetime.datetime(2023, 10, 16, 0, 0, 0, 0)
}

# Allow failure exempt tests to be ignored for 90 days
Expand Down
1 change: 1 addition & 0 deletions Platforms/QemuSbsaPkg/QemuSbsaPkg.dsc
Original file line number Diff line number Diff line change
Expand Up @@ -300,6 +300,7 @@
XenPlatformLib|QemuPkg/Library/XenPlatformLib/XenPlatformLib.inf
MmUnblockMemoryLib|MdePkg/Library/MmUnblockMemoryLib/MmUnblockMemoryLibNull.inf
ResetSystemLib|MdeModulePkg/Library/DxeResetSystemLib/DxeResetSystemLib.inf
FlatPageTableLib|UefiTestingPkg/Library/FlatPageTableLib/FlatPageTableLib.inf

FdtHelperLib|QemuSbsaPkg/Library/FdtHelperLib/FdtHelperLib.inf
OemMiscLib|QemuSbsaPkg/Library/OemMiscLib/OemMiscLib.inf
Expand Down

0 comments on commit d2469c6

Please sign in to comment.