mirror of
https://github.com/asterinas/asterinas.git
synced 2025-06-25 10:23:23 +00:00
10 lines
273 B
Rust
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;
|