Skip to content
Merged
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
- `LoadedImage::device` now returns an `Option<Handle>` and is no longer `const`.
- `BootServices::get_image_file_system` now returns
`ScopedProtocol<SimpleFileSystem>` instead of `fs::FileSystem`.
- `uefi::proto::shim` is now available on 32-bit x86 targets.

## uefi-macros - [Unreleased]

Expand Down
4 changes: 2 additions & 2 deletions uefi-test-runner/src/proto/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ pub fn test(image: Handle, st: &mut SystemTable<Boot>) {
string::test(bt);

#[cfg(any(
target_arch = "i386",
target_arch = "x86",
target_arch = "x86_64",
target_arch = "arm",
target_arch = "aarch64"
Expand Down Expand Up @@ -64,7 +64,7 @@ mod network;
mod pi;
mod rng;
#[cfg(any(
target_arch = "i386",
target_arch = "x86",
target_arch = "x86_64",
target_arch = "arm",
target_arch = "aarch64"
Expand Down
4 changes: 2 additions & 2 deletions uefi/src/proto/shim/mod.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
//! Shim lock protocol.

#![cfg(any(
target_arch = "i386",
target_arch = "x86",
target_arch = "x86_64",
target_arch = "arm",
target_arch = "aarch64"
Expand Down Expand Up @@ -45,7 +45,7 @@ pub struct Hashes {

// These macros set the correct calling convention for the Shim protocol methods.

#[cfg(any(target_arch = "i386", target_arch = "x86_64"))]
#[cfg(any(target_arch = "x86", target_arch = "x86_64"))]
macro_rules! shim_function {
(fn $args:tt -> $return_type:ty) => (extern "sysv64" fn $args -> $return_type)
}
Expand Down