mirror of
https://github.com/edera-dev/sprout.git
synced 2025-12-19 15:20:17 +00:00
11 lines
197 B
Rust
11 lines
197 B
Rust
|
|
#![feature(uefi_std)]
|
||
|
|
pub mod chainload;
|
||
|
|
pub mod setup;
|
||
|
|
|
||
|
|
const CHAINLOADER_TARGET: &str = "\\EFI\\BOOT\\KERNEL.efi";
|
||
|
|
|
||
|
|
fn main() {
|
||
|
|
setup::init();
|
||
|
|
chainload::chainload(CHAINLOADER_TARGET);
|
||
|
|
}
|