Эх сурвалжийг харах

add multiboot2 magic number

Philipp Schuster 3 жил өмнө
parent
commit
6f4b9e9e8e
2 өөрчлөгдсөн 10 нэмэгдсэн , 0 устгасан
  1. 9 0
      src/header.rs
  2. 1 0
      src/lib.rs

+ 9 - 0
src/header.rs

@@ -2,6 +2,15 @@ use core::marker::PhantomData;
 use core::fmt::{Debug, Formatter};
 use core::cmp::Ordering;
 
+/// Magic number that a multiboot2-compliant boot loader will store in `eax` register
+/// right before handoff to the payload (the kernel). This value can be used to check,
+/// that the kernel was indeed booted via multiboot2.
+///
+/// Caution: You might need some assembly code (e.g. GAS or NASM) first, which
+/// moves `eax` to another register, like `edi`. Otherwise it probably happens,
+/// that the Rust compiler output changes `eax` before you can access it.
+pub const MB2_MAGIC: u32 = 0x36d76289;
+
 /// Possible Types of a [`Tag`]. The names and values are taken from the example C code
 /// at the bottom of the Multiboot2 specification.
 #[repr(u32)]

+ 1 - 0
src/lib.rs

@@ -17,6 +17,7 @@ pub use elf_sections::{
 };
 pub use framebuffer::{FramebufferColor, FramebufferField, FramebufferTag, FramebufferType};
 use header::{Tag, TagIter, TagType};
+pub use header::MB2_MAGIC;
 pub use memory_map::{
     EFIMemoryAreaType, EFIMemoryDesc, EFIMemoryMapTag, MemoryArea, MemoryAreaIter, MemoryAreaType,
     MemoryMapTag,