瀏覽代碼

README fixes after previous PR.

Philipp Schuster 3 年之前
父節點
當前提交
4895c30d25
共有 3 個文件被更改,包括 54 次插入29 次删除
  1. 8 29
      README.md
  2. 11 0
      multiboot2-header/README.md
  3. 35 0
      multiboot2/README.md

+ 8 - 29
README.md

@@ -1,34 +1,13 @@
-# multiboot2
-![Build](https://github.com/rust-osdev/multiboot2/actions/workflows/rust.yml/badge.svg)
-[![crates.io](https://img.shields.io/crates/v/multiboot2.svg)](https://crates.io/crates/multiboot2)
-[![docs](https://docs.rs/multiboot2/badge.svg)](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
 

+ 11 - 0
multiboot2-header/README.md

@@ -0,0 +1,11 @@
+# multiboot2-header
+![Build](https://github.com/rust-osdev/multiboot2/actions/workflows/rust.yml/badge.svg)
+[![crates.io](https://img.shields.io/crates/v/multiboot2-header.svg)](https://crates.io/crates/multiboot2-header)
+[![docs](https://docs.rs/multiboot2-header/badge.svg)](https://docs.rs/multiboot2-header/)
+
+Rust library with type definitions and parsing functions for Multiboot2 headers.
+This library is `no_std` and can be used in bootloaders.
+
+## License & Contribution
+
+See main [README](../README.md) file.

+ 35 - 0
multiboot2/README.md

@@ -0,0 +1,35 @@
+# multiboot2
+![Build](https://github.com/rust-osdev/multiboot2/actions/workflows/rust.yml/badge.svg)
+[![crates.io](https://img.shields.io/crates/v/multiboot2.svg)](https://crates.io/crates/multiboot2)
+[![docs](https://docs.rs/multiboot2/badge.svg)](https://docs.rs/multiboot2/)
+
+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.
+
+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`.
+
+## License & Contribution
+
+See main [README](../README.md) file.