morpheus_bootloader/boot/arch/x86_64/
mod.rs

1
2
3
4
5
6
7
8
9
10
11
//! x86_64 architecture-specific boot code
//!
//! GRUB-compatible boot paths:
//! - EFI Handover Protocol (industry standard)
//! - 32-bit protected mode (legacy fallback)

pub mod handoff;
pub mod transitions;

pub use handoff::BootPath;
pub use transitions::drop_to_protected_mode;