|
@@ -1,34 +1,13 @@
|
|
|
-# multiboot2
|
|
|
-
|
|
|
-[](https://crates.io/crates/multiboot2)
|
|
|
-[](https://docs.rs/multiboot2/)
|
|
|
+# Multiboot2: MBI + Header
|
|
|
|
|
|
-Rust library that helps you to parse the multiboot information structure (mbi) from
|
|
|
-Multiboot2-compliant bootloaders, like GRUB. It supports all tags from the specification
|
|
|
-including full support for the sections of ELF-64 files. This library is `no_std` and can be
|
|
|
-used in a Multiboot2-kernel.
|
|
|
+This repository contains the crates `multiboot2` and `multiboot2-header`.
|
|
|
+Please check their individual README-files ([multiboot2](multiboot2/README.md),
|
|
|
+[multiboot2-header](multiboot2-header/README.md)).
|
|
|
|
|
|
-It follows the Multiboot 2.0 specification at https://www.gnu.org/software/grub/manual/multiboot2/multiboot.html and the ELF 64 specification at http://www.uclibc.org/docs/elf-64-gen.pdf.
|
|
|
-
|
|
|
-## Background: The Multiboot 2 Information Structure
|
|
|
-The Multiboot information structure looks like this:
|
|
|
-
|
|
|
-Field | Type
|
|
|
----------------- | -----------
|
|
|
-total size | u32
|
|
|
-reserved | u32
|
|
|
-tags | variable
|
|
|
-end tag = (0, 8) | (u32, u32)
|
|
|
-
|
|
|
-There are many different types of tags, but they all have the same beginning:
|
|
|
-
|
|
|
-Field | Type
|
|
|
-------------- | -----------------
|
|
|
-type | u32
|
|
|
-size | u32
|
|
|
-other fields | variable
|
|
|
-
|
|
|
-All tags and the mbi itself are 8-byte aligned. The last tag must be the _end tag_, which is a tag of type `0` and size `8`.
|
|
|
+The `multiboot2` crate helps to parse the Multiboot2 information structure
|
|
|
+(MBI) and is relevant in kernels, that get booted by a bootloader such as
|
|
|
+GRUB, for example. `multiboot2-header` is relevant, if you want to write a bootloader that provides a MBI to a payload for
|
|
|
+example.
|
|
|
|
|
|
## License
|
|
|
|