Skip to content

Commit

Permalink
Bumps Common/MU from 2023020001.5.2 to 2023020002.0.1
Browse files Browse the repository at this point in the history
Introduces 8 new commits in [Common/MU](https://github.com/microsoft/mu_plus.git).

<details>
<summary>Commits</summary>
<ul>
<li><a href="https://github.com/microsoft/mu_plus/commit/c528cb5ac7eca1e0ae02f5d73dcb7c8cba4939ea">c528cb</a> Spellcheck Fixes</li>
<li><a href="https://github.com/microsoft/mu_plus/commit/af263a940da344a33bbb715dd5db234a1e0b0196">af263a</a> Add FlatPageTableLib</li>
<li><a href="https://github.com/microsoft/mu_plus/commit/277d45568c2b05cde80b37c95f11a255dd6a1016">277d45</a> Update DxePagingAudit to use FlatPageTableLib</li>
<li><a href="https://github.com/microsoft/mu_plus/commit/4c5d1d1c3c78d4329a550ba6f5d049834d456dcc">4c5d1d</a> Only call HdwPortWrite if DebugLevel Met (<a href="https://github.com/microsoft/mu_plus/pull/311">#311</a>)</li>
<li><a href="https://github.com/microsoft/mu_plus/commit/115ef0b24bdaf267d3ac08171fdd85a575704084">115ef0</a> pip: bump edk2-pytool-library from 0.18.2 to 0.19.0 (<a href="https://github.com/microsoft/mu_plus/pull/330">#330</a>)</li>
<li><a href="https://github.com/microsoft/mu_plus/commit/bd605b16a2008a25dfc86126685a2c6928388200">bd605b</a> pip: bump edk2-pytool-extensions from 0.24.1 to 0.25.0 (<a href="https://github.com/microsoft/mu_plus/pull/329">#329</a>)</li>
<li><a href="https://github.com/microsoft/mu_plus/commit/ec920bacb71f973240723115c3ecb3f214c827c3">ec920b</a> Repo File Sync: synced file(s) with microsoft/mu_devops (<a href="https://github.com/microsoft/mu_plus/pull/328">#328</a>)</li>
<li><a href="https://github.com/microsoft/mu_plus/commit/142315478f245d0cb686286d79502912397530c1">142315</a> AdvLoggerPkg: BaseAdvancedLoggerLib: Fixing a missed PCD for AARCH64 usage (<a href="https://github.com/microsoft/mu_plus/pull/331">#331</a>)</li>
</ul>
</details>

Signed-off-by: Project Mu Bot <[email protected]>
  • Loading branch information
ProjectMuBot authored and makubacki committed Oct 13, 2023
1 parent f2897f7 commit a668815
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Common/MU
Submodule MU updated 39 files
+1 −1 .azurepipelines/MuDevOpsWrapper.yml
+1 −1 .github/workflows/auto-approve.yml
+1 −1 .github/workflows/auto-merge.yml
+2 −2 .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
+1 −8 AdvLoggerPkg/Library/AdvancedLoggerHdwPortLib/AdvancedLoggerHdwPortLib.c
+1 −6 AdvLoggerPkg/Library/AdvancedLoggerHdwPortLib/AdvancedLoggerHdwPortLib.inf
+14 −3 AdvLoggerPkg/Library/AdvancedLoggerLib/AdvancedLoggerCommon.c
+3 −2 AdvLoggerPkg/Library/AdvancedLoggerLib/BaseArm/AdvancedLoggerLib.inf
+1 −0 AdvLoggerPkg/Library/AdvancedLoggerLib/Dxe/AdvancedLoggerLib.inf
+4 −1 AdvLoggerPkg/Library/AdvancedLoggerLib/MmCore/AdvancedLoggerLib.inf
+1 −0 AdvLoggerPkg/Library/AdvancedLoggerLib/Pei/AdvancedLoggerLib.inf
+1 −0 AdvLoggerPkg/Library/AdvancedLoggerLib/Pei64/AdvancedLoggerLib.inf
+1 −0 AdvLoggerPkg/Library/AdvancedLoggerLib/Runtime/AdvancedLoggerLib.inf
+1 −0 AdvLoggerPkg/Library/AdvancedLoggerLib/Sec/AdvancedLoggerLib.inf
+1 −0 AdvLoggerPkg/Library/AdvancedLoggerLib/SmmCore/AdvancedLoggerLib.inf
+1 −1 UefiTestingPkg/AuditTests/PagingAudit/UEFI/AArch64/PagingAuditProcessor.c
+0 −145 UefiTestingPkg/AuditTests/PagingAudit/UEFI/Dxe/App/AArch64/DxePagingAuditTests.c
+114 −2 UefiTestingPkg/AuditTests/PagingAudit/UEFI/Dxe/App/DxePagingAuditTestApp.c
+0 −45 UefiTestingPkg/AuditTests/PagingAudit/UEFI/Dxe/App/DxePagingAuditTestApp.h
+0 −79 UefiTestingPkg/AuditTests/PagingAudit/UEFI/Dxe/App/X64/DxePagingAuditTests.c
+1 −3 UefiTestingPkg/AuditTests/PagingAudit/UEFI/DxePagingAuditTestApp.inf
+1 −1 UefiTestingPkg/AuditTests/PagingAudit/UEFI/PagingAuditCommon.h
+1 −1 UefiTestingPkg/AuditTests/PagingAudit/UEFI/X64/PagingAuditProcessor.c
+15 −15 UefiTestingPkg/AuditTests/PagingAudit/Windows/BinaryParsing.py
+2 −2 UefiTestingPkg/AuditTests/PagingAudit/Windows/MemoryRangeObjects.py
+174 −0 UefiTestingPkg/Include/Library/FlatPageTableLib.h
+374 −0 UefiTestingPkg/Library/FlatPageTableLib/AArch64/FlatPageTableAArch64.c
+114 −0 UefiTestingPkg/Library/FlatPageTableLib/FlatPageTableLib.c
+55 −0 UefiTestingPkg/Library/FlatPageTableLib/FlatPageTableLib.inf
+108 −0 UefiTestingPkg/Library/FlatPageTableLib/X64/FlatPageTableX64.c
+5 −0 UefiTestingPkg/UefiTestingPkg.dec
+2 −0 UefiTestingPkg/UefiTestingPkg.dsc
+2 −2 pip-requirements.txt

0 comments on commit a668815

Please sign in to comment.