Files
asterinas/framework/jinux-frame/src/arch/x86/boot/mod.rs
2023-08-04 11:37:34 +08:00

10 lines
273 B
Rust

//! The boot module defines the entrypoints of Jinux and the corresponding
//! headers for different bootloaders.
//!
//! We currently support Multiboot2. The support for Linux Boot Protocol is
//! on its way.
//!
mod multiboot2;
pub use self::multiboot2::init_boot_args;