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
2 changes: 2 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,8 @@ members = [
]

[patch.crates-io]
# TODO: workaround for https://github.com/rust-osdev/uefi-rs/issues/329
qemu-exit = { git = "https://github.com/toku-sa-n/qemu-exit.git", rev = "7279783c309423168398394682faa93ff81cdd31" }
uefi-macros = { path = "uefi-macros" }
uefi = { path = "." }

Expand Down
2 changes: 1 addition & 1 deletion uefi-services/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@

#![no_std]
#![feature(alloc_error_handler)]
#![feature(asm)]
#![feature(lang_items)]
#![feature(panic_info_message)]
#![feature(abi_efiapi)]
Expand All @@ -28,6 +27,7 @@ extern crate log;
// Core types.
extern crate uefi;

use core::arch::asm;
use core::ffi::c_void;
use core::ptr::NonNull;

Expand Down
1 change: 0 additions & 1 deletion uefi-test-runner/src/main.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
#![no_std]
#![no_main]
#![feature(asm)]
#![feature(abi_efiapi)]

#[macro_use]
Expand Down