lanzaboote/rust/src/main.rs

16 lines
273 B
Rust
Raw Normal View History

2022-11-21 05:44:04 -05:00
#![no_main]
#![no_std]
#![feature(abi_efiapi)]
2022-11-21 09:36:39 -05:00
use log::info;
2022-11-21 05:44:04 -05:00
use uefi::prelude::*;
#[entry]
fn main(_handle: Handle, mut system_table: SystemTable<Boot>) -> Status {
uefi_services::init(&mut system_table).unwrap();
2022-11-21 09:36:39 -05:00
info!("Hello World!");
2022-11-21 05:44:04 -05:00
Status::SUCCESS
}