Просмотр исходного кода

Merge pull request #85 from phip1611/rename-bootloader-magic-component

renamed multiboot2 bootloader magic constant
Isaac Woods 3 лет назад
Родитель
Сommit
341b07e49d
2 измененных файлов с 2 добавлено и 2 удалено
  1. 1 1
      src/header.rs
  2. 1 1
      src/lib.rs

+ 1 - 1
src/header.rs

@@ -8,7 +8,7 @@ use core::marker::PhantomData;
 /// 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;
+pub const MULTIBOOT2_BOOTLOADER_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.

+ 1 - 1
src/lib.rs

@@ -16,7 +16,7 @@ pub use elf_sections::{
     ElfSection, ElfSectionFlags, ElfSectionIter, ElfSectionType, ElfSectionsTag,
 };
 pub use framebuffer::{FramebufferColor, FramebufferField, FramebufferTag, FramebufferType};
-pub use header::MB2_MAGIC;
+pub use header::MULTIBOOT2_BOOTLOADER_MAGIC;
 use header::{Tag, TagIter, TagType};
 pub use memory_map::{
     EFIMemoryAreaType, EFIMemoryDesc, EFIMemoryMapTag, MemoryArea, MemoryAreaIter, MemoryAreaType,