Skip to content

Releases: microsoft/mu_plus

v2025110002.0.1

Choose a tag to compare

@mu-automation mu-automation released this 26 Jun 14:38

What's Changed

  • [REBASE \& FF] AdvLoggerPkg: PeiCore Instance: Use Local PeiMain.h @os-d (#909)
    Change Details
      ## Description

    The PEI Core AdvLoggerLib instance relies on PeiMain.h which defines the PEI_CORE_INSTANCE structure. A special PlatformBlob is added there to use stack space for the adv logger info pointer. This avoids a HOB lookup for every log.

    However, edk2's PeiMain.h has been updated to use a private header in PeiMain.h. This is pulled into mu_basecore, which then breaks building this library because it doesn't have access to the private header.

    Using PEI_CORE_INSTANCE to host the advanced logger pointer has always been a hack; it will be separately addressed and removed, but in the meantime, this library needs to continue to work.

    This copies PeiMain.h, removes the use of the private header, and consumes it in the PeiCore instance of AdvLoggerLib.

    • Impacts functionality?
    • Impacts security?
    • Breaking change?
    • Includes tests?
    • Includes documentation?

    How This Was Tested

    Booting patina-qemu to shell with the PEI memory bin changes cherry-picked.

    Integration Instructions

    N/A.

      </blockquote>
      <hr>
    </details>
    

Full Changelog: v2025110002.0.0...v2025110002.0.1

v2025110003.0.0

Choose a tag to compare

@mu-automation mu-automation released this 26 Jun 16:57

What's Changed

  • AdvLoggerPkg: PeilessArm: Check if Buffer Is Already Valid @os-d (#911)
    Change Details
      ## Description

    PeilessArm currently assumes it is setting up the adv logger buffer. However, an earlier phase may have initialized the buffer, such as StMM running before SEC is started.

    This adds a check to see if the buffer is already valid and just inherits it if so.

    • Impacts functionality?
    • Impacts security?
    • Breaking change?
    • Includes tests?
    • Includes documentation?

    How This Was Tested

    Tested on a platform where StMM initializes the log buffer and runs before SEC.

    Integration Instructions

    N/A.

      </blockquote>
      <hr>
    </details>
    

⚠️ Breaking Changes

  • [REBASE \& FF] AdvLoggerPkg: PeiCore Instance: Update Override Tag And Apply SecDebugAgent Fix @os-d (#912)
    Change Details
      ## Description

    Update the override tag in PeiMain.h as it has been updated in basecore v2025110002.0.8.

    Also, SecDebugAgent was missed when using the local header, update it.

    • Impacts functionality?
    • Impacts security?
    • Breaking change?
    • Includes tests?
    • Includes documentation?

    How This Was Tested

    N/A.

    Integration Instructions

    This is marked as a breaking change because the build will break if mu_basecore v2025110002.0.8 is not updated to (or later) at the same time by consumers.

      </blockquote>
      <hr>
    </details>
    

Full Changelog: v2025110002.0.1...v2025110003.0.0

v2025110002.0.0

Choose a tag to compare

@mu-automation mu-automation released this 25 Jun 18:24
38867aa

What's Changed

  • Drop mu\_pi and mu\_rust\_helpers crate dependencies (and fix build due to incoming r-efi v7) [Rebase \& FF] @makubacki (#907)
    Change Details
      ## Description

    A series of commits with two goals:

    1. mu_rust_helpers moved to r-efi v7 in eefef09. The minor version was updated which caused many crates depending on mu_rust_helpers to pick up the change automatically per semantic versioning while there other dependencies stayed on r-efi v6. This could lead to type mismatches (and did in this repo). So, this prevents that.
    2. Support the longer-term goal of deprecating mu_rust_helpers and mu_pi (as described in #906) by removing their usage in this repo.

    MuTelemetryHelperLib: Fix r-efi v7 GUID constant conflict

    mu_rust_helpers re-exports mu_uefi_guid, which updated to r-efi v7.

    Its guid::ZERO and guid::CALLER_ID constants are compiled against
    r-efi v7, while patina (and the rest of the tree) remain on r-efi v6,
    producing mismatched-type errors when those constants are used in v6
    contexts.

    This makes the move to the patina crate's GUID constants. The patina
    version used here is still on r-efi v6, so its patina::guids::ZERO
    and patina::guids::CALLER_ID constants are compiled against r-efi
    v6.

    This is also a step toward removing the mu_rust_helpers dependency
    from this crate.


    MuTelemetryHelperLib: Use patina instead of mu_pi

    Replaces the mu_pi status code types and error-code constants with the
    equivalent definitions from the patina crate (patina::pi::status_code
    and patina::pi::protocols::status_code).

    This removes the mu_pi dependency from the crate and the workspace.


    MsWheaPkg: Remove mu_rust_helpers dependency

    Makes the remaining changes needed to replace mu_rust_helpers with
    the patina crate. This is part of the effort to remove mu_rust_helpers
    as it is being deprecated.


    Remove mu_rust_helpers as a workspace dependency

    Makes the remaining changes needed in UefiHidDxeV2 to use
    patina::function instead of mu_rust_helpers::function so the
    crate dependency can be removed from the workspace.


    • Impacts functionality?
    • Impacts security?
    • Breaking change?
    • Includes tests?
    • Includes documentation?

    How This Was Tested

    • Run cargo make tasks
    • CI

    Integration Instructions

    • N/A - Replace mu_rust_helpers and mu_pi functionality with equivalent functionality from the patina crate. The patina crate was already a dependency.


  • AdvLoggerPkg: Gate hardware port writes at OS runtime @chaokai-ching (#902)
    Change Details
      ## Description

    AdvancedLoggerWrite unconditionally wrote debug output to the hardware serial
    port at both boot time and OS runtime (after ExitBootServices). Some platforms'
    serial implementations cannot be safely called at OS runtime.

    This change adds an opt-in FeatureFlag PCD
    PcdAdvancedLoggerHdwPortRuntimeDisable (default FALSE):

    • Default (FALSE): behavior is unchanged — hardware port writes remain
      enabled at runtime, so existing platforms are unaffected.
    • TRUE: a platform whose serial cannot be safely called after
      ExitBootServices restricts hardware port writes to boot time only, while
      early-boot and boot-time serial output is preserved.

    Runtime is detected via the logger info block's AtRuntime field when
    available. The DXE runtime AdvancedLoggerLib instance clears its logger info
    pointer at ExitBootServices, so it consults a module-scoped
    ADVANCED_LOGGER_RUNTIME build flag plus a gAdvancedLoggerAtRuntime flag to
    distinguish post-EBS runtime from early boot when the logger info block is NULL.

    • Impacts functionality? Only when the new PCD is set TRUE (default FALSE = no change)
    • Impacts security?
    • Breaking change? No — default preserves existing behavior
    • Includes tests? Not included; hardware-port gating path has no existing host-test coverage. Can add a GoogleTest if desired.
    • Includes documentation? PCD documented in AdvLoggerPkg.dec

    How This Was Tested

    Built an ARM AARCH64 platform (DEBUG); all AdvancedLoggerLib instances
    compile. Verified on ARM AARCH64 hardware with a temporary driver that forces a
    serial write on the first post-SetVirtualAddressMap runtime call:

    • PCD default (FALSE): the firmware faults on the runtime serial write
      (reproduces the unsafe-at-runtime behavior).
    • PCD TRUE: the runtime write is suppressed and the system boots cleanly,
      while boot-time serial output is unaffected.

    Integration Instructions

    None required by default. Platforms whose serial implementation cannot be
    called safely at OS runtime should set
    gAdvLoggerPkgTokenSpaceGuid.PcdAdvancedLoggerHdwPortRuntimeDisable to TRUE.




  • .github: Switch Mu PR Validation workflow to main branch @makubacki (#897)
    Change Details
      ## Description

    These workflow files were previously using a dedicated branch for development of the Mu PR Validation workflow. It has been stable for a couple of months now, so we can switch back to using the main branch which has the latest changes.

    • Impacts functionality?
    • Impacts security?
    • Breaking change?
    • Includes tests?
    • Includes documentation?

    How This Was Tested

    • Compare branch content (main <-> add_mu_pr_val_workflow_e2e_val)

    Integration Instructions

    • N/A. Only affects GitHub repo workflow.


⚠️ Breaking Changes

  • Patina 22.1.0 integration (r-efi 7) [Rebase \& FF] @makubacki (#908)
    Change Details
      ## Description

    Two commits to integrate the latest patina v22.1.0 (and fix the build).


    Cargo.toml: Add AdvLoggerPkg/Crates/RustAdvancedLoggerDxe as a member

    Library crates are currently being listed in the members section, so
    the line about binary crates is removed.

    RustAdvancedLoggerDxe is currently being built as a dependency, but
    this commit adds it as a member for consistency with other crates.


    Bump r-efi to 7 to match patina's update

    patina 22.1.0 moved its r-efi dependency up to version 7, but the
    workspace was still pinned to ^6.

    Cargo then pulled in both r-efi 6 and 7 at the same time, and since
    types from different major versions don't unify, that broke
    cargo make check and cargo make test.

    This moves the workspace to r-efi 7.


    • Impacts functionality?
    • Impacts security?
    • Breaking change?
    • Includes tests?
    • Includes documentation?

    How This Was Tested

    • cargo make tasks
    • Repo CI

    Integration Instructions

    • If library crates are used from this repo, it is recommended to move to r-efi 7.


🐛 Bug Fixes

  • MsCorePkg: Fix double components specifier for AARCH64 @makubacki (#901)
    Change Details
      ## Description

    [Components.AARCH64, Components.AARCH64] should just be [Components.AARCH64] in MsCorePkg.dsc.

    • Impacts functionality?
    • Impacts security?
    • Breaking change?
    • Includes tests?
    • Includes documentation?

    How This Was Tested

    • Local MsCorePkg CI build

    Integration Instructions

    • N/A


  • MsCorePkg: Remove the non-existent header files in aarch64 @qaz6750 (#899)
    Change Details
      ## Description

    As stated in #895, this header file no longer exists, and the issue has been fixed in X64. However, Aarch64 was overlooked, so it should be applied to AArch64 as well.

    • Impacts functionality?
    • Impacts security?
    • Breaking change?
    • Includes tests?
    • Includes documentation?

    How This Was Tested

    N/A

    Integration Instructions

    ...

Read more

v2025110001.0.0

Choose a tag to compare

@mu-automation mu-automation released this 08 Jun 18:29
f7c042a

What's Changed

  • Migrate to R-EFI 6.0 @vineelko (#892)
    Change Details
      ## Description

    This PR consumed the major branch changes done in Patina as part of R-EFI 6.0 migration(release as version 22).

    • Impacts functionality?
    • Impacts security?
    • Breaking change?
    • Includes tests?
    • Includes documentation?

    How This Was Tested

    cargo make all

    Integration Instructions

    Will merge this once OpenDevicePartnership/patina#1548 is merged and patina release 22 is made.




  • UefiHidDxeV2: Add keystroke repeat functionality @joschock (#883)
    Change Details
      ## Description

    Implement keyboard repeat for held keys, matching the behavior of the
    legacy C HidKeyboardDxe driver:

    • 500ms initial delay before repeat begins

    • 20ms repeat rate (~50 keys/sec) while key is held

    • Modifier keys, toggle keys, and non-spacing (dead) keys are excluded

    • Last newly pressed repeatable key wins in multi-key reports

    • Timer cancelled on key release or keyboard reset

    • Impacts functionality?

    • Impacts security?

    • Breaking change?

    • Includes tests?

    • Includes documentation?

    How This Was Tested

    Included unit tests, tested on hardware at UEFI shell and confirmed expected repeat behavior.

    Integration Instructions

    None.




  • Fix missing UefiLib dependency in MfciPolicyParsingUnitTestApp @GiriMohanNaidu (#887)
    Change Details
      ## Description

    Added the missing UefiLib library class dependency to MfciPolicyParsingUnitTestApp.inf. The module uses UefiLib APIs but did not declare the dependency in its [LibraryClasses] section, causing build failures when the library was not implicitly pulled in by the platform DSC.
    The module uses AsciiPrint() from UefiLib but did not declare the dependency in its LibraryClasses section.

    • Impacts functionality? No — build fix only; no logic changes.
    • Impacts security?
    • Breaking change?
    • Includes tests? N/A — fixes the test app itself so it builds correctly.
    • Includes documentation?

    How This Was Tested

    Built MfciPkg/UnitTests/MfciPolicyParsingUnitTest/MfciPolicyParsingUnitTestApp.inf and confirmed the build completes without missing library errors.

    Integration Instructions

    N/A — consumers of MfciPkg do not need any changes; this only affects the unit test app build.

      </blockquote>
      <hr>
    </details>
    
  • Migrate mu\_plus from mu\_uefi\_boot\_services crate to patina crate @vineelko (#881)
    Change Details
      ## Description
    • mu_uefi_boot_services is not maintained and its functionality is moved into patina.
    • The mu_uefi_boot_services's crates.io point to non-existent repo.
    • This cleanup is needed to move mu_plus's r-efi dependency to 6.0

    Next, Once Patina is updated to r-efi 6.0 we can migrate mu_plus to patina vnext and r-efi to 6.0

    • Impacts functionality?
    • Impacts security?
    • Breaking change?
    • Includes tests?
    • Includes documentation?

    How This Was Tested

    cargo make all worked. Will be tested in internal repos once r-efi 6.0 migration is done.

    Integration Instructions

    NA




  • AdvLoggerPkg/AdvancedLoggerLib: Print to HW if logger info is not available @makubacki (#876)
    Change Details
      ## Description

    In the course of testing advanced logger changes with edk2 Standalone MM on OVMF, there was a change needed in MmPlatformHobProducerLibOvmf in OvmfPkg to account for gAdvancedLoggerHobGuid in the HOBs that are passed to the MM environment.

    Prior to this change, the system appeared to hang entering that environment:

    INFO - Loading PEIM at 0x00005B95000 EntryPoint=0x00005B95340 StandaloneMmIplPei.efi
    INFO - StandaloneMM IPL loading MM Core at MMRAM address 7FF0000
    INFO - MmCoreImageBase  - 0x0000000007FF0000
    INFO - MmCoreImageSize  - 0x0000000000010000
    INFO - StandaloneMM IPL calling Standalone MM Core at MMRAM address - 0x0000000007FF1000
    

    After the change, the issue is clearly printed to serial output: ("MmCore AdvancedLoggerGetLoggerInfo: Advanced Logger Hob not found")

    INFO - Loading PEIM at 0x00005B94000 EntryPoint=0x00005B94340 StandaloneMmIplPei.efi
    INFO - StandaloneMM IPL loading MM Core at MMRAM address 7FF0000
    INFO - MmCoreImageBase  - 0x0000000007FF0000
    INFO - MmCoreImageSize  - 0x0000000000010000
    INFO - StandaloneMM IPL calling Standalone MM Core at MMRAM address - 0x0000000007FF1000
    INFO - MmCore AdvancedLoggerGetLoggerInfo: Advanced Logger Hob not found
    INFO - MmMain - 0x5B11000
    INFO - MmramRangeCount - 0x4
    INFO - MmramRanges[0]: 0x0000000006000000 - 0x1000
    INFO - MmramRanges[1]: 0x0000000006001000 - 0xE000
    INFO - MmramRanges[2]: 0x000000000600F000 - 0x1FE1000
    INFO - MmramRanges[3]: 0x0000000007FF0000 - 0x10000
    INFO - MmInitializeMemoryServices
    INFO - MmAddMemoryRegion 2 : 0x000000000600F000 - 0x0000000001FE1000
    INFO - HobSize - 0x538
    INFO - MmHobStart - 0x7FEE810
    INFO - MmInstallConfigurationTable For HobList
    INFO - ASSERT [StandaloneMmCore] AdvancedLoggerLib.c(164): mLoggerInfo != ((void *) 0)
    

    This change allows writes to proceed to hardware output if enabled even if the logger info is not available, to make information such as this available for debugging purposes.

    • Impacts functionality?
    • Impacts security?
    • Breaking change?
    • Includes tests?
    • Includes documentation?

    How This Was Tested

    • Test MM entry with and without gAdvancedLoggerHobGuid in the HOB list.

    Integration Instructions

    • N/A


⚠️ Breaking Changes

  • Delete HelloWorldRustDxe Component @vineelko (#882)
    Change Details
      ## Description

    HelloWorldRustDxe Component is currently being compiled for 32 bit causing PR gates to fail when dependent Rust packages do not compile(by design) for 32 bit. This PR deletes it completely.


    • Impacts functionality?
    • Impacts security?
    • Breaking change?
    • Includes tests?
    • Includes documentation?

    How This Was Tested

    cargo make all

    Integration Instructions

    NA




🚀 Features & ✨ Enhancements

  • AdvancedLoggerPkg/MmCoreArm: Initialize LoggerInfo if not already set by earlier firmware phase @sureshkumarpMSFT (#886)
    Change Details
      ## Description

    In the MmCoreArm instance of AdvancedLoggerLib, AdvancedLoggerGetLoggerInfo() previously assumed that an earlier firmware phase (e.g. BL31 prior to StandaloneMM) had already initialized the ADVANCED_LOGGER_INFO header at PcdAdvancedLoggerBase. On ARM boot flows where StandaloneMM is the first phase to touch this buffer, the signature check in subsequent logger calls fails and no log records are written.

    This change adds a one-time, in-place initialization of the ADVANCED_LOGGER_INFO header inside AdvancedLoggerGetLoggerInfo() when the signature is not already valid:

    • Impacts functionality?
    • Impacts security?
    • Breaking change?
    • Includes tests?
    • Includes documentation?

    How This Was Tested

    Verified on an ARM platform where no pre-StandaloneMM entity initializes the AdvancedLogger buffer

    Integration Instructions

    N/A




🐛 Bug Fixes

  • Fix SWM init retry when SRE is not ready @mikitl (#888)
    Change Details
      ## Description

    GopRegisteredCallback sets mGop when it finds GOP but exits early if SRE is not available yet. Because mGop remains set, the callback never retries on subsequent GOP notifications, so SWM never initializes.

    Reset mGop to NULL when SRE is not found so the callback can retry.

    • Impacts functionality?
    • Impacts security?
    • Breaking change?
    • Includes tests?
    • Includes documentation?

    How This Was Tested

    Tested on:

    • ARM64 platform with GPU driver that installs GOP during early display enumeration, before GopOverrideDxe and SRE have processed it
    • Verified SWM callback retries and completes Stage2 initialization after SRE becomes available
    • Confirmed Front Page and on-screen keyboard render correctly
    • Verified no regression when GOP and SRE appear simultaneously (standard boot path)

    Integration Instructions

    N...

Read more

v2025110000.0.4

Choose a tag to compare

@mu-automation mu-automation released this 23 Apr 20:05
db8020f

What's Changed

  • Skip Mu PR validation for PRs targeting non-default branches @makubacki (#872)
    Change Details
      ## Description

    Because mu-pr-validation.yml is in the default branch (release/202511) and runs on a workflow_run trigger for the CodeQL workflow where the CodeQL workflow runs for all release branches, the Mu PR Validation workflow will run for all PRs targeting any release branch.

    Because mu_tiano_platforms is only compatible with default branches, we want to skip Mu PR Validation targeting those non-default branches.

    • Impacts functionality?
    • Impacts security?
    • Breaking change?
    • Includes tests?
    • Includes documentation?

    How This Was Tested

    Verified for PRs against the default on non-default branch on my fork.

    Non-Default Case (Skip)

    image

    Default Case (Run)

    image

    Integration Instructions

    • N/A


  • MsGraphicsPkg/SwmDialogsLib: Show OSK after dialog rendering completes @makubacki (#866)
    Change Details
      ## Description

    Moves the ShowKeyboard() call after the canvas Draw() call in the KEYFOCUS handling block of PasswordDialog and SemmUserAuthDialog.

    Previously, the on-screen keyboard was displayed before the dialog finished rendering at its shifted position.

    By deferring ShowKeyboard() until after Draw() completes, the dialog is fully painted in its final position before the keyboard appears.

    • Impacts functionality?
    • Impacts security?
    • Breaking change?
    • Includes tests?
    • Includes documentation?

    How This Was Tested

    1. Go to the "Security -> UEFI password" page
    2. In the "Enter password" screen, touch the blank area on the screen
    3. Watch the on-screen keyboard load

    Integration Instructions

    • N/A


  • mu-pr-validation-pending.yml: Temporarily disable commit status updates @makubacki (#870)
    Change Details
      ## Description

    The Mu Automation GitHub app requires a permission update to be accepted by a microsoft org admin. Until that happens, disable the calling the GitHub API to update the commit status.

    This will still run validation and post PR comments. The pass/fail result just won't be reported in the status check area of the PR until the permission is allowed.

    • Impacts functionality?
    • Impacts security?
    • Breaking change?
    • Includes tests?
    • Includes documentation?

    How This Was Tested

    • N/A

    Integration Instructions

    • N/A


  • .github: Add Mu PR Validation workflow @makubacki (#865)
    Change Details
      ## Description

    Adds workflows to run QEMU-based platform validation on pull requests to mu_plus. This includes:

    • mu-pr-validation.yml: The main workflow that performs the actual QEMU validation, including building and booting.

    • mu-pr-validation-pending.yml: A workflow that posts an immediate "pending" notification on a pull request when it's pushed, indicating that QEMU validation is waiting for CI to complete. This is broken out to its own workflow to use the pull_request_target trigger (access to secrets on PRs from public forks) while minimizing the amount of code that runs with those elevated permissions.

    • mu-pr-validation-post.yml: A workflow that posts the results of the QEMU validation run to the pull request once the validation is complete.


    Notes

    This workflow differs slightly from the Mu Basecore equivalent file in that it is triggered by the CodeQL workflow instead of the CLANGPDB Package CI workflow used there. The reason is that the CLANGPDB Package CI workflow was not added to mu_plus since mu_plus requires Rust code to be built and that workflow doesn't include Rust build support. The CodeQL workflow in mu_plus serves a similar purpose by verifying local package compilation prior to attempting a mu_tiano_platforms build with the changes.


    • Impacts functionality?
    • Impacts security?
    • Breaking change?
    • Includes tests?
    • Includes documentation?

    How This Was Tested

    Ran the workflow under various conditions on my mu_plus fork.

    Note that the "boot times" are not precise. They are the total time for the --flashonly step to run including stuart overhead. However, they are not too far off from the boot time and provide the ability to get a relative sense of perf impact.


    PENDING STATE (when the workflow is waiting for CI to finish)

    image image

    IN PROGRESS (building / booting QEMU FW with the change)

    image

    Granular status updates (see ending text):

    image image image image

    SUCCESS

    image

    Integration Instructions

    • N/A - Only impacts PR validation in this repo


Full Changelog: v2025110000.0.3...v2025110000.0.4

v2025110000.0.3

Choose a tag to compare

@mu-automation mu-automation released this 02 Apr 14:55

What's Changed

  • [REBASE \& FF] Copy FltUsedLib to MsCorePkg @os-d (#864)
    Change Details
      ## Description

    FltUsedLib is a library that has a single line, adding a reference to _fltused, which is needed by MSVC and clang when building floating point code.

    FltUsedLib is only used in mu_plus, so in order to reduce deltas from edk2, it is moved to mu_plus. This commit then updates references in mu_plus to this new library.

    A PR will be put up to mu_basecore to drop the library after this merges.

    • Impacts functionality?
    • Impacts security?
    • Breaking change?
    • Includes tests?
    • Includes documentation?

    How This Was Tested

    Build testing.

    Integration Instructions

    Platforms should update to FltUsedLib|MsCorePkg/Library/FltUsedLib/FltUsedLib.inf in their DSCs. This change is not a breaking change, but the removal in mu_basecore will be.

      </blockquote>
      <hr>
    </details>
    
  • Global: Remove backport workflow. @apop5 (#859)
    Change Details
     

    Description

    The switch from dev/release to just relase left the backport workflow in the repo. Though it will
    not be triggered, dependabot will continue
    to attempt to update the github actions used.

    Remove the workflow to reduce unused workflows and to prevent dependabot from attempting to update.

    • Impacts functionality?
    • Impacts security?
    • Breaking change?
    • Includes tests?
    • Includes documentation?

    How This Was Tested

    N/A

    Integration Instructions

    N/A




Full Changelog: v2025110000.0.2...v2025110000.0.3

v2025110000.0.2

Choose a tag to compare

@mu-automation mu-automation released this 23 Mar 20:12
f5b19d4

What's Changed

  • UefiTestingPkg: MpManagement clangpdb compatibility @apop5 (#858)
    Change Details
     

    Description

    Make the MpManagement FunctionalTest compile with clangpdb.

    Correct some uninitialized variable paths, and use macros for
    loading variables it registers in assembly.

    • Impacts functionality?
    • Impacts security?
    • Breaking change?
    • Includes tests?
    • Includes documentation?

    How This Was Tested

    ClangPdb Build.

    Integration Instructions

    No integration necessary.




Full Changelog: v2025110000.0.1...v2025110000.0.2

v2025110000.0.1

Choose a tag to compare

@mu-automation mu-automation released this 18 Mar 21:19

What's Changed

  • UefiTestingPkg: FlatPageTableLib: Include Public Page Table Defs @os-d (#857)
    Change Details
      ## Description

    In mu_basecore commit 5ba3221588832c47249a6db1f38b490f034e07ca the X86 Page Table definitions were moved from CpuPageTableLib to MdePkg. Consume these from the new location and define a macro that remained in the private header in edk2.

    • Impacts functionality?
    • Impacts security?
    • Breaking change?
    • Includes tests?
    • Includes documentation?

    How This Was Tested

    Built.

    Integration Instructions

    N/A.

      </blockquote>
      <hr>
    </details>
    
  • Replace memcpy with CopyGuid. @jaykrell (#852)
    Change Details
      There is a link error here, due to struct assignment being memcpy with some compilers.

    Replace struct assignment with CopyGuid.




Full Changelog: v2025110000.0.0...v2025110000.0.1

v2025110000.0.0

Choose a tag to compare

@apop5 apop5 released this 11 Mar 04:11
92e607e

First release compatible with mu_basecore release/202511

Please view Readme.rst for release information.

v2025020003.0.3

Choose a tag to compare

@mu-automation mu-automation released this 23 Feb 18:26
039747f

What's Changed

  • AdvLoggerPkg: Check for migrated buffer on ReadyToLock notification @makubacki (#833)
    Change Details
      ## Description
    1. Adds a ReadyToLock handler to ensure that any buffer migration that may not have occurred prior to that point happens at ReadyToLock.
    2. Aligns Traditional MM and Standalone MM code on the ReadyToLock boundary.
    3. Also ensures all calls to check for a new logger are gated on PcdAdvancedLoggerFixedInRAM to avoid unnecessary checks when the logger won't be migrated.
    • Impacts functionality?
    • Impacts security?
    • Breaking change?
    • Includes tests?
    • Includes documentation?

    How This Was Tested

    • Boot Traditional SMM virtual machine platform to Windows with change
    • Boot Standalone MM virtual machine platform to Windows with change
    • Boot Intel platform to Windows with change (Traditional and Standalone MM)
    • Dump log at EFI shell
    • Dump log uses the latest decode Python script in Windows

    Integration Instructions

    • N/A


🐛 Bug Fixes

  • SwmDialog: Fix missing NULL terminator for UninstallMultipleProtocolInterfaces @joschock (#831)
    Change Details
      ## Description

    SwmDialogsDestructor calls UninstallMultipleProtocolInterfaces() which takes a Null-terminated list of <guid, interface> pairs to uninstall. However, it fails to include the NULL terminator, which causes an attempt to uninstall stack garbage. This PR adds the NULL termination to the call to correctly terminate the list.

    • Impacts functionality?
    • Impacts security?
    • Breaking change?
    • Includes tests?
    • Includes documentation?

    How This Was Tested

    Unloaded a driver before/after the fix, observed that attempt to uninstall non-existent protocol no longer occurs.

    Integration Instructions

    N/A




Full Changelog: v2025020003.0.2...v2025020003.0.3