Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions ovmf-prebuilt/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,11 @@ pub struct Source {
}

/// UEFI architecture.
///
/// Note that not all releases contain every architecture:
/// * `Ia32` is available in `edk2-stable202508` and earlier releases.
/// * `LoongArch64` is available in `edk2-stable202505` and later releases.
/// * `Aarch64`, `Riscv64`, and `X64` are available in all releases.
#[allow(missing_docs)]
#[derive(Clone, Copy, Debug, Eq, PartialEq, Ord, PartialOrd, Hash)]
pub enum Arch {
Expand Down