rulimine/README.md

142 lines
4.5 KiB
Markdown
Raw Normal View History

2020-08-29 21:02:16 +03:00
# Limine
2020-09-18 21:08:19 +03:00
2020-09-21 15:08:45 +03:00
### What is Limine?
2020-09-18 21:08:19 +03:00
Limine is an advanced x86/x86_64 BIOS Bootloader which supports *modern* PC features
2020-09-21 15:08:45 +03:00
such as Long Mode, 5-level paging, and SMP (multicore), to name a few.
2020-09-25 23:39:14 +03:00
### Limine's boot menu
2020-04-07 08:24:19 +03:00
2020-08-05 01:08:40 +03:00
![Reference screenshot](/screenshot.png?raw=true "Reference screenshot")
2020-11-09 16:29:53 +03:00
[Photo by Nishant Aneja from Pexels](https://www.pexels.com/photo/close-up-photo-of-waterdrops-on-glass-2527248/)
2020-04-20 13:39:24 +03:00
### Supported boot protocols
* Linux
2020-08-29 21:02:16 +03:00
* stivale and stivale2 (Limine's native boot protocols, see STIVALE{,2}.md for details)
2020-09-25 23:42:01 +03:00
* Chainloading
2020-04-20 13:39:24 +03:00
### Supported filesystems
2020-09-21 15:08:45 +03:00
* ext2/3/4
2020-04-22 18:49:19 +03:00
* echfs
* FAT32
2020-04-20 13:39:24 +03:00
### Supported partitioning schemes
* MBR
* GPT
2020-11-09 16:38:32 +03:00
## Warning about using `unstable`
2020-11-09 16:38:32 +03:00
Please refrain from using the `unstable` branch of this repository directly, unless
you have a *very* good reason to.
2020-11-09 16:38:32 +03:00
The `unstable` branch is unstable, and non-backwards compatible changes are made to it
routinely.
Use instead a [release](https://github.com/limine-bootloader/limine/releases).
One can clone a release directly using
```bash
2020-12-19 21:38:32 +03:00
git clone https://github.com/limine-bootloader/limine.git --branch=v0.7.2
```
2020-12-19 21:38:32 +03:00
(replace `v0.7.2` with the chosen release)
2020-11-09 16:38:32 +03:00
Also note that the documentation contained in `unstable` does not reflect the
documentation for the specific releases, and one should refer to the releases'
documentation instead, contained in their files.
## Building
2020-09-13 16:47:43 +03:00
### Building the bootloader
Building the bootloader is not necessary as a prebuilt copy is shipped in this
repository (`limine.bin`).
Should one want to build the bootloader to make sure the shipped copy is authentic,
to develop, to debug, or any other reason, it is necessary to first build the
set of tools that the bootloader needs in order to be built.
This can be accomplished by running:
```bash
make toolchain
```
*The above step may take a while*
2020-09-13 16:47:43 +03:00
After that is done, the bootloader itself can be built with:
```bash
make
2020-09-13 16:47:43 +03:00
```
A newly generated `limine.bin` image should now be present in the root of the repo.
2020-09-13 16:47:43 +03:00
This newly built image should match 1:1 (aka, same checksum) with the one shipped
with the respective commit.
2020-09-13 16:47:43 +03:00
### Compiling `limine-install`
To build the `limine-install` program, simply run `make limine-install` in the root
of the repo.
## How to use
### MBR
In order to install Limine on a MBR device (which can just be a raw image file),
run the `limine-install` as such:
2020-04-07 08:24:19 +03:00
```bash
limine-install <bootloader image> <path to device/image>
2020-04-07 08:24:19 +03:00
```
Where `<bootloader image>` is the path to a `limine.bin` file.
### GPT
If using a GPT formatted device, there are 2 options one can follow for installation:
* Specifying a dedicated stage 2 partition.
* Letting `limine-install` attempt to embed stage 2 within GPT structures.
In case one wants to specify a stage 2 partition, create a partition on the GPT
device of at least 32KiB in size, and pass the 1-based number of the partition
to `limine-install` as a third argument; such as:
2020-04-20 13:39:24 +03:00
```bash
limine-install <bootloader image> <path to device/image> <partition 1-based number>
2020-04-20 13:39:24 +03:00
```
In case one wants to let `limine-install` embed stage 2 within GPT's structures,
simply omit the partition number, and invoke `limine-install` the same as one would
do for an MBR partitioned device.
### Configuration
2020-04-07 08:24:19 +03:00
Then make sure the device/image contains at least 1 partition formatted in
2020-08-29 21:02:16 +03:00
a supported filesystem containing a `/limine.cfg` or `/boot/limine.cfg` file
and the kernel/modules one wants to load.
2020-04-07 08:24:19 +03:00
2020-08-29 21:02:16 +03:00
An example `limine.cfg` file can be found in `test/limine.cfg`.
2020-04-07 08:24:19 +03:00
2020-08-29 21:02:16 +03:00
More info on the format of `limine.cfg` can be found in `CONFIG.md`.
2020-04-21 20:18:13 +03:00
### Example
2020-04-07 08:24:19 +03:00
For example, to create an empty image file of 64MiB in size, 1 echfs partition
on the image spanning the whole device, format it, copy the relevant files over,
2020-08-29 21:02:16 +03:00
and install Limine, one can do:
2020-04-07 08:24:19 +03:00
```bash
dd if=/dev/zero bs=1M count=0 seek=64 of=test.img
parted -s test.img mklabel msdos
parted -s test.img mkpart primary 1 100%
parted -s test.img set 1 boot on # Workaround for buggy BIOSes
2020-04-07 08:24:19 +03:00
echfs-utils -m -p0 test.img quick-format 32768
2020-08-29 21:02:16 +03:00
echfs-utils -m -p0 test.img import path/to/limine.cfg limine.cfg
2020-04-07 08:24:19 +03:00
echfs-utils -m -p0 test.img import path/to/kernel.elf kernel.elf
echfs-utils -m -p0 test.img import <path to file> <path in image>
...
./limine-install limine.bin test.img
2020-04-07 08:24:19 +03:00
```
One can get `echfs-utils` by installing https://github.com/qword-os/echfs.
2020-04-20 13:39:24 +03:00
2020-09-13 16:47:43 +03:00
## Acknowledgments
Limine uses a stripped-down version of [tinf](https://github.com/jibsen/tinf).
2020-05-02 18:02:05 +03:00
## Discord server
We have a [Discord server](https://discord.gg/QEeZMz4) if you need support, info, or
you just want to hang out with us.