deps: Update mu_msvm to v26.0.3 release#3421
Open
maheeraeron wants to merge 1 commit intomicrosoft:mainfrom
Open
deps: Update mu_msvm to v26.0.3 release#3421maheeraeron wants to merge 1 commit intomicrosoft:mainfrom
maheeraeron wants to merge 1 commit intomicrosoft:mainfrom
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
Updates the pinned microsoft/mu_msvm UEFI firmware dependency to the v26.0.3 release, aligning both the Nix-based firmware fetch and Flowey pipeline version selection.
Changes:
- Bump Nix
uefi_mu_msvmderivation to downloadmu_msvmv26.0.3 artifacts. - Update Flowey’s central
MU_MSVMversion constant to26.0.3.
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated 1 comment.
| File | Description |
|---|---|
| nix/uefi_mu_msvm.nix | Updates the mu_msvm release URL/version used by Nix to fetch MSVM.fd artifacts. |
| flowey/flowey_lib_hvlite/src/_jobs/cfg_versions.rs | Bumps the Flowey pipeline’s mu_msvm version constant to match the new release. |
Comment on lines
+17
to
23
| version = "26.0.3"; | ||
|
|
||
| src = fetchzip { | ||
| url = | ||
| "https://github.com/microsoft/mu_msvm/releases/download/v26.0.1/RELEASE-${archToolchain}-artifacts.tar.gz"; | ||
| "https://github.com/microsoft/mu_msvm/releases/download/v26.0.3/RELEASE-${archToolchain}-artifacts.tar.gz"; | ||
| stripRoot = false; | ||
| inherit hash; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
mu_msvm release notes: https://github.com/microsoft/mu_msvm/releases/tag/v26.0.3
This includes a fix to a critical race condition with EfiHvDxe where we freed a page back to DXE core without clearing the RO flags, then try to write to it again after.