Skip to content

Commit eb5839f

Browse files
ZR233nicholasbishop
authored andcommitted
fix: correct SHA256 hashes and add latest EDK2_STABLE202508_R1 version
- Updated EDK2_STABLE202505_R2 hash to official rust-osdev release - Added EDK2_STABLE202508_R1 (latest) with verified hash - Updated LATEST to point to EDK2_STABLE202508_R1 - Fixed doctest failures caused by hash mismatches
1 parent 0ed88e7 commit eb5839f

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

ovmf-prebuilt/src/source_constants.rs

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,12 +29,17 @@ impl Source {
2929

3030
pub const EDK2_STABLE202505_R2: Self = Self {
3131
tag: "edk2-stable202505-r2",
32-
sha256: "3502d59957d5af87b3717af3e10d5e92d7575a2a37aa8b1fe6d42a92b786fcdd",
32+
sha256: "ed4e5502dc6b4e1d524929b27b274f9d6e2581a4179612b5628de9660008c8e0",
33+
};
34+
35+
pub const EDK2_STABLE202508_R1: Self = Self {
36+
tag: "edk2-stable202508-r1",
37+
sha256: "e461e2f0a43092ef9d29996ba0f8c05de097223791c33f5ff61a7e1ea12e6dac",
3338
};
3439

3540
/// Latest release tag.
3641
///
3742
/// Note that this is not necessarily the latest prebuilt available
3843
/// from the git repo.
39-
pub const LATEST: Self = Self::EDK2_STABLE202505_R2;
44+
pub const LATEST: Self = Self::EDK2_STABLE202508_R1;
4045
}

0 commit comments

Comments
 (0)