Skip to content

Commit

Permalink
Merge branch 'rust-osdev:main' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
nicholasbishop committed Jul 29, 2024
2 parents 394a73c + f7f4fa8 commit 24f962a
Show file tree
Hide file tree
Showing 50 changed files with 2,273 additions and 993 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/qa.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ jobs:
steps:
- uses: actions/checkout@v4
# Executes "typos ."
- uses: crate-ci/typos@v1.22.9
- uses: crate-ci/typos@v1.23.2
116 changes: 58 additions & 58 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions template/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
use uefi::prelude::*;

#[entry]
fn main(_handle: Handle, mut system_table: SystemTable<Boot>) -> Status {
uefi::helpers::init(&mut system_table).unwrap();
fn main(_handle: Handle, system_table: SystemTable<Boot>) -> Status {
uefi::helpers::init().unwrap();

Status::SUCCESS
}
5 changes: 5 additions & 0 deletions uefi-macros/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# uefi-macros - [Unreleased]

## Changed

- The `entry` macro now accepts a function with zero arguments in addition to
the two-argument form.


# uefi-macros - 0.14.0 (2024-07-02)

Expand Down
Loading

0 comments on commit 24f962a

Please sign in to comment.