blob: 87432afd9ace96e28232a50c734dc79c6a20e1c4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#![no_main]
#![no_std]
use core::time::Duration;
use log::info;
use uefi::prelude::*;
#[entry]
fn main() -> Status {
uefi::helpers::init().unwrap();
info!("Hello world!");
boot::stall(Duration::from_secs(10));
Status::SUCCESS
}
|