guest_test_uefi/uefi/
mod.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.

mod rt;
mod splash;
mod tests;

use core::num::NonZeroU8;
use splash::Splashes;
use uefi::Status;
use uefi::entry;
use uefi::println;
use uefi::system;

#[entry]
fn uefi_main() -> Status {
    println!("UEFI vendor = {}", system::firmware_vendor());
    println!("UEFI revision = {:x}", system::firmware_revision());

    // Attempt to draw a pretty splash screen. Not always possible (e.g: when
    // running UEFI on a VM without a gfx adapter - such as in CI).
    splash::draw_splash(Splashes(NonZeroU8::new(1).unwrap()));

    tests::run_tests();

    Status::SUCCESS
}