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

Bump Common/MU from 2023020002.0.1 to 2023020002.0.2 #736

Merged
merged 2 commits into from
Oct 16, 2023
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 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