Skip to content

Commit ef218c1

Browse files
committed
Merge remote-tracking branch 'upstream/main' into enhancement/efi_shell_interface
2 parents fe6eca9 + 7ff771e commit ef218c1

File tree

25 files changed

+330
-138
lines changed

25 files changed

+330
-138
lines changed

.github/workflows/qa.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
steps:
88
- uses: actions/checkout@v4
99
# Executes "typos ."
10-
- uses: crate-ci/typos@v1.31.1
10+
- uses: crate-ci/typos@v1.32.0
1111
lints:
1212
name: Lints
1313
runs-on: ubuntu-latest

Cargo.lock

Lines changed: 11 additions & 11 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

book/src/tutorial/app.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ to your `Cargo.toml`. The resulting `Cargo.toml` should look like that:
2424
```toml
2525
[dependencies]
2626
log = "0.4.21"
27-
uefi = { version = "0.34.0", features = [ "panic_handler", "logger" ] }
27+
uefi = { version = "0.35.0", features = [ "panic_handler", "logger" ] }
2828
```
2929

3030
Replace the contents of `src/main.rs` with this:

template/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ edition = "2021"
55
publish = false
66

77
[dependencies]
8-
uefi = { version = "0.34.1", features = ["panic_handler"] }
8+
uefi = { version = "0.35", features = ["panic_handler"] }

uefi-macros/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
# uefi-macros - [Unreleased]
22

33

4+
# uefi-macros - 0.18.1 (2025-05-04)
5+
6+
Minor documentation updates.
7+
8+
49
# uefi-macros - 0.18.0 (2025-02-07)
510

611
As of this release, the project has been relicensed from MPL-2.0 to

uefi-macros/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "uefi-macros"
3-
version = "0.18.0"
3+
version = "0.18.1"
44
readme = "README.md"
55
description = "Procedural macros for the `uefi` crate."
66

uefi-raw/CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# uefi-raw - [Unreleased]
22

3+
4+
# uefi-raw - 0.11.0 (2025-05-04)
5+
36
## Added
47
- MSRV increased to 1.77.
58
- Added `Boolean` type

uefi-raw/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "uefi-raw"
3-
version = "0.10.0"
3+
version = "0.11.0"
44
readme = "README.md"
55
description = """
66
Raw UEFI types and bindings for protocols, boot, and runtime services. This can

uefi-test-runner/examples/hello_world.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
// ANCHOR_END: features
88

99
// ANCHOR: use
10+
use core::time::Duration;
1011
use log::info;
1112
use uefi::prelude::*;
1213
// ANCHOR_END: use
@@ -20,7 +21,7 @@ fn main() -> Status {
2021
// ANCHOR_END: services
2122
// ANCHOR: log
2223
info!("Hello world!");
23-
boot::stall(10_000_000);
24+
boot::stall(Duration::from_secs(10));
2425
// ANCHOR_END: log
2526
// ANCHOR: return
2627
Status::SUCCESS

uefi-test-runner/examples/loaded_image.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
#![no_main]
55
#![no_std]
66

7+
use core::time::Duration;
78
use log::info;
89
use uefi::boot::{self, SearchType};
910
use uefi::prelude::*;
@@ -20,7 +21,7 @@ fn main() -> Status {
2021

2122
print_image_path().unwrap();
2223

23-
boot::stall(10_000_000);
24+
boot::stall(Duration::from_secs(10));
2425
Status::SUCCESS
2526
}
2627
// ANCHOR_END: main

0 commit comments

Comments
 (0)