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

Remove Page Audit Report Generator Print #96

Merged
merged 19 commits into from Dec 9, 2022
Merged
Changes from 1 commit
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
891b789
initial upload
TaylorBeebe Nov 8, 2022
2904163
Update Stack Cookie Exception Handler to Register Based on Fixed PCD …
TaylorBeebe Nov 10, 2022
97b2440
Update DXE Paging Audit App to Include RWX Test (#101)
TaylorBeebe Nov 12, 2022
9b238c2
MfciPkg/MfciDxe: Fix GCC compilation issue in a test (#107)
makubacki Nov 15, 2022
87f4da7
pip: update pytool-library to ~=0.12.1 pytool-extensions to ~= 0.20.0
dependabot[bot] Nov 14, 2022
494ae54
pip-requirements.txt: Use exact match instead of compatible release
makubacki Nov 15, 2022
ca21da4
Fix MfciDxe Debug error print missing new line character (#97)
antklein Nov 15, 2022
9be9753
Fix unitialized variable found in clang compiler experiments (#108)
cfernald Nov 16, 2022
cf429a7
Add missing braces to gPciRootBridge #define for GCC (#110)
garybeihl Nov 21, 2022
7b13b00
Enable stale bot GitHub action (#111)
makubacki Nov 23, 2022
57f3b4b
Enable Label Sync GitHub Action (#112)
makubacki Nov 29, 2022
509a609
Update reset notification list to be notified before NVMe (#80)
mikeytdisco Nov 29, 2022
348b96d
pull_request_template.md: Remove since file is in .github now (#113)
makubacki Nov 30, 2022
49706d1
Repo File Sync: Synced file(s) with microsoft/mu_devops (#114)
uefibot Nov 30, 2022
03f9725
Add PcdShellFvGuid to allow platforms to provide FV GUID to search sh…
srisrid Dec 1, 2022
f6ddfd2
Repo File Sync: Synced file(s) with microsoft/mu_devops (#117)
uefibot Dec 6, 2022
41fea2f
Add logic for container build to Matrix-Build-Job.yml (#118)
cfernald Dec 6, 2022
a92e6c5
Repo File Sync: Synced file(s) with microsoft/mu_devops (#119)
uefibot Dec 9, 2022
111e8b2
Merge branch 'release/202208' into fix_report_gen
TaylorBeebe Dec 9, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Expand Up @@ -138,7 +138,6 @@ def Parse(self):

if pte.GcdType is None:
pte.GcdType = mr.GcdType
logging.info("pte.GcdType: %d"% (pte.GcdType))
else:
logging.error("Multiple memory types found for one region " + pte.pteDebugStr() +" " + mr.MemoryRangeToString())
self.ErrorMsg.append("Multiple memory types found for one region. Base: 0x%X. GCD Memory Type: %d and %d"% (pte.PhysicalStart, pte.GcdType,mr.GcdType))
Expand Down