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?
|
|
|
|
|
2023-06-05 00:39:14 +03:00
|
|
|
Limine (pronounced as shown [here](https://www.merriam-webster.com/dictionary/in%20limine))
|
|
|
|
is a modern, advanced, portable, multiprotocol bootloader, also used
|
2022-03-22 06:48:24 +03:00
|
|
|
as the reference implementation for the [Limine boot protocol](/PROTOCOL.md).
|
2020-09-21 15:08:45 +03:00
|
|
|
|
2023-06-12 18:46:39 +03:00
|
|
|
### Donate
|
|
|
|
|
|
|
|
If you want to support the work I (@mintsuki) do on Limine, feel free to donate to me on Liberapay:
|
|
|
|
<a href="https://liberapay.com/mintsuki/donate"><img alt="Donate using Liberapay" src="https://liberapay.com/assets/widgets/donate.svg"></a>
|
|
|
|
|
|
|
|
Donations welcome, but absolutely not mandatory!
|
|
|
|
|
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")
|
|
|
|
|
2023-07-29 19:32:55 +03:00
|
|
|
[Photo by Pixabay](https://www.pexels.com/photo/painting-of-black-cloud-during-sunset-164175/)
|
2020-11-09 16:29:53 +03:00
|
|
|
|
2022-08-25 21:01:30 +03:00
|
|
|
### Supported architectures
|
|
|
|
* IA-32 (32-bit x86)
|
|
|
|
* x86_64
|
|
|
|
* aarch64 (arm64)
|
2023-06-04 02:36:06 +03:00
|
|
|
* riscv64
|
2022-08-25 21:01:30 +03:00
|
|
|
|
2020-04-20 13:39:24 +03:00
|
|
|
### Supported boot protocols
|
2021-07-26 17:09:03 +03:00
|
|
|
* Linux
|
2022-03-22 06:48:24 +03:00
|
|
|
* [Limine](/PROTOCOL.md)
|
2021-06-29 17:08:08 +03:00
|
|
|
* Multiboot 1
|
2021-09-10 06:55:32 +03:00
|
|
|
* Multiboot 2
|
2021-07-06 04:17:28 +03:00
|
|
|
* Chainloading
|
2020-04-20 13:39:24 +03:00
|
|
|
|
2023-02-06 22:24:57 +03:00
|
|
|
### Supported partitioning schemes
|
|
|
|
* MBR
|
|
|
|
* GPT
|
|
|
|
* Unpartitioned media
|
|
|
|
|
2020-04-20 13:39:24 +03:00
|
|
|
### Supported filesystems
|
2023-02-20 07:02:42 +03:00
|
|
|
* ext2/3/4
|
2021-05-11 07:46:42 +03:00
|
|
|
* FAT12/16/32
|
2021-02-25 08:44:41 +03:00
|
|
|
* ISO9660 (CDs/DVDs)
|
2020-04-20 13:39:24 +03:00
|
|
|
|
2023-02-06 22:24:57 +03:00
|
|
|
If your filesystem isn't listed here, please read [the philosophy](/PHILOSOPHY.md) first, especially before
|
|
|
|
opening issues or pull requests related to this.
|
2020-04-20 13:39:24 +03:00
|
|
|
|
2022-03-02 20:08:06 +03:00
|
|
|
### Minimum system requirements
|
2022-08-25 21:01:30 +03:00
|
|
|
For 32-bit x86 systems, support is only ensured starting with those with
|
|
|
|
Pentium Pro (i686) class CPUs.
|
|
|
|
|
2023-06-04 02:36:06 +03:00
|
|
|
All x86_64, aarch64, and riscv64 (UEFI) systems are supported.
|
2022-03-02 20:08:06 +03:00
|
|
|
|
2023-02-07 02:42:13 +03:00
|
|
|
## Packaging status
|
|
|
|
|
2022-11-15 13:23:22 +03:00
|
|
|
[![Packaging status](https://repology.org/badge/vertical-allrepos/limine.svg)](https://repology.org/project/limine/versions)
|
|
|
|
|
2021-03-21 11:16:06 +03:00
|
|
|
## Binary releases
|
2020-11-01 23:38:56 +03:00
|
|
|
|
2021-07-26 17:09:03 +03:00
|
|
|
For convenience, for point releases, binaries are distributed. These binaries
|
|
|
|
are shipped in the `-binary` branches and tags of this repository
|
|
|
|
(see [branches](https://github.com/limine-bootloader/limine/branches/all) and
|
|
|
|
[tags](https://github.com/limine-bootloader/limine/tags)).
|
2020-11-01 23:38:56 +03:00
|
|
|
|
2023-07-09 04:55:27 +03:00
|
|
|
For example, to clone the latest binary release of the `v5.x` branch one can do
|
2020-11-01 23:38:56 +03:00
|
|
|
```bash
|
2023-07-09 04:55:27 +03:00
|
|
|
git clone https://github.com/limine-bootloader/limine.git --branch=v5.x-branch-binary --depth=1
|
2020-11-01 23:38:56 +03:00
|
|
|
```
|
2023-08-19 16:43:54 +03:00
|
|
|
or, to clone a specific binary point release (for example `v5.20230819.0`)
|
2021-01-15 07:08:21 +03:00
|
|
|
```bash
|
2023-08-19 16:43:54 +03:00
|
|
|
git clone https://github.com/limine-bootloader/limine.git --branch=v5.20230819.0-binary --depth=1
|
2021-01-15 07:08:21 +03:00
|
|
|
```
|
2021-03-21 11:16:06 +03:00
|
|
|
|
2023-04-11 23:04:05 +03:00
|
|
|
In order to rebuild host utilities like `limine`, simply run `make` in the binary
|
2022-01-22 06:10:48 +03:00
|
|
|
release directory.
|
2021-03-21 11:16:06 +03:00
|
|
|
|
2023-02-07 02:42:13 +03:00
|
|
|
Host utility binaries are provided for Windows.
|
2022-07-05 17:19:00 +03:00
|
|
|
|
2021-03-21 11:16:06 +03:00
|
|
|
## Building the bootloader
|
|
|
|
|
2022-01-22 06:10:48 +03:00
|
|
|
*The following steps are not necessary if cloning a binary release. If so, skip to*
|
2021-04-08 20:41:46 +03:00
|
|
|
*"Installing Limine binaries".*
|
2020-09-04 06:21:58 +03:00
|
|
|
|
2022-01-21 04:57:31 +03:00
|
|
|
### Prerequisites
|
2021-04-08 20:41:46 +03:00
|
|
|
|
2022-03-02 20:08:06 +03:00
|
|
|
In order to build Limine, the following programs have to be installed:
|
2022-08-25 21:01:30 +03:00
|
|
|
common UNIX tools (also known as `coreutils`),
|
2022-03-02 20:08:06 +03:00
|
|
|
`GNU make`, `grep`, `sed`, `find`, `awk`, `gzip`, `nasm`, `mtools`
|
2023-06-14 04:14:41 +03:00
|
|
|
(optional, necessary to build `limine-uefi-cd.bin`).
|
2022-08-09 14:30:16 +03:00
|
|
|
Furthermore, `gcc` or `llvm/clang` must also be installed, alongside
|
2022-06-20 03:17:00 +03:00
|
|
|
the respective binutils.
|
2021-07-26 17:09:03 +03:00
|
|
|
|
2022-01-21 04:57:31 +03:00
|
|
|
### Configure
|
|
|
|
|
2022-01-22 06:10:48 +03:00
|
|
|
If using a release tarball (recommended, see https://github.com/limine-bootloader/limine/releases),
|
|
|
|
run `./configure` directly.
|
|
|
|
|
2022-06-15 01:35:16 +03:00
|
|
|
If checking out from the repository, run `./bootstrap` first in order to download the
|
|
|
|
necessary dependencies and generate the configure script (`GNU autoconf` and `GNU automake` required).
|
2022-01-21 04:57:31 +03:00
|
|
|
|
2022-06-15 01:35:16 +03:00
|
|
|
`./configure` takes arguments and environment variables; for more information on
|
|
|
|
these, run `./configure --help`.
|
2022-01-21 04:57:31 +03:00
|
|
|
|
2022-06-25 10:08:41 +03:00
|
|
|
**`./configure` by default does not build any Limine port. Make sure to read the**
|
|
|
|
**output of `./configure --help` and enable any or all ports!**
|
|
|
|
|
2022-01-22 06:10:48 +03:00
|
|
|
Limine supports both in-tree and out-of-tree builds. Simply run the `configure`
|
2022-01-21 04:57:31 +03:00
|
|
|
script from the directory you wish to execute the build in. The following `make`
|
|
|
|
commands are supposed to be ran inside the build directory.
|
|
|
|
|
|
|
|
### Building Limine
|
|
|
|
|
|
|
|
To build Limine, run:
|
2020-09-13 16:47:43 +03:00
|
|
|
```bash
|
2021-07-26 17:09:03 +03:00
|
|
|
make # (or gmake where applicable)
|
2020-09-13 16:47:43 +03:00
|
|
|
```
|
|
|
|
|
2022-08-25 21:01:30 +03:00
|
|
|
The generated bootloader files are going to be in `./bin`.
|
2021-07-26 17:09:03 +03:00
|
|
|
|
2021-03-21 11:16:06 +03:00
|
|
|
## Installing Limine binaries
|
|
|
|
|
2022-08-25 21:01:30 +03:00
|
|
|
This step is optional as the bootloader binaries can be used from the `./bin` or
|
2022-07-05 22:04:18 +03:00
|
|
|
release directory just fine. This step will only install them to `share`, `include`, and
|
2022-01-16 08:09:36 +03:00
|
|
|
`bin` directories in the specified prefix (default is `/usr/local`, see
|
2022-07-05 22:04:18 +03:00
|
|
|
`./configure --help`, or the `PREFIX` variable if installing from a binary release).
|
2021-02-25 10:18:43 +03:00
|
|
|
|
2022-01-16 08:09:36 +03:00
|
|
|
To install Limine, run:
|
|
|
|
```bash
|
2022-01-22 05:10:25 +03:00
|
|
|
make install # (or gmake where applicable)
|
2022-01-16 08:09:36 +03:00
|
|
|
```
|
2020-09-04 06:21:58 +03:00
|
|
|
|
|
|
|
## How to use
|
2020-11-01 23:38:56 +03:00
|
|
|
|
2021-03-08 10:09:15 +03:00
|
|
|
### UEFI
|
2023-06-14 01:14:20 +03:00
|
|
|
The `BOOT*.EFI` files are valid EFI applications that can be simply copied to
|
2022-08-25 21:01:30 +03:00
|
|
|
the `/EFI/BOOT` directory of a FAT formatted EFI system partition. These files can
|
2021-07-26 17:09:03 +03:00
|
|
|
be installed there and coexist with a BIOS installation of Limine (see below) so
|
|
|
|
that the disk will be bootable on both BIOS and UEFI systems.
|
2021-03-08 10:09:15 +03:00
|
|
|
|
2023-02-07 02:42:13 +03:00
|
|
|
The boot device must contain the `limine.cfg` files in
|
2022-10-06 07:29:11 +03:00
|
|
|
either the root, `limine`, `boot`, or `boot/limine` directory of one of the
|
|
|
|
partitions, formatted with a supported file system (the ESP partition is recommended).
|
2021-03-08 10:09:15 +03:00
|
|
|
|
2023-02-07 02:49:40 +03:00
|
|
|
### Secure Boot
|
|
|
|
Limine can be booted with secure boot using shim. This will also allow one to enroll
|
|
|
|
the BLAKE2B hash of the Limine config file into the Limine EFI executable image itself for
|
|
|
|
verification purposes.
|
2023-04-11 23:04:05 +03:00
|
|
|
For more information see the `limine enroll-config` program and [the philosophy](/PHILOSOPHY.md).
|
2023-02-07 02:49:40 +03:00
|
|
|
|
2021-03-08 10:09:15 +03:00
|
|
|
### BIOS/MBR
|
2020-09-04 06:21:58 +03:00
|
|
|
In order to install Limine on a MBR device (which can just be a raw image file),
|
2023-04-11 23:04:05 +03:00
|
|
|
run `limine bios-install` as such:
|
2020-04-07 08:24:19 +03:00
|
|
|
|
|
|
|
```bash
|
2023-04-11 23:04:05 +03:00
|
|
|
limine bios-install <path to device/image>
|
2020-04-07 08:24:19 +03:00
|
|
|
```
|
|
|
|
|
2023-06-15 03:02:32 +03:00
|
|
|
The boot device must contain the `limine-bios.sys` and `limine.cfg` files in
|
2022-10-06 07:29:11 +03:00
|
|
|
either the root, `limine`, `boot`, or `boot/limine` directory of one of the
|
|
|
|
partitions, formatted with a supported file system.
|
2021-02-25 10:18:43 +03:00
|
|
|
|
2021-03-08 10:09:15 +03:00
|
|
|
### BIOS/GPT
|
2021-07-26 17:09:03 +03:00
|
|
|
If using a GPT formatted device, there are 2 options one can follow for
|
|
|
|
installation:
|
2020-12-07 20:20:52 +03:00
|
|
|
* Specifying a dedicated stage 2 partition.
|
2023-04-11 23:04:05 +03:00
|
|
|
* Letting `limine bios-install` attempt to embed stage 2 within GPT structures.
|
2020-12-07 20:20:52 +03:00
|
|
|
|
|
|
|
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
|
2023-04-11 23:04:05 +03:00
|
|
|
to `limine bios-install` as a second argument; such as:
|
2020-04-20 13:39:24 +03:00
|
|
|
|
|
|
|
```bash
|
2023-04-11 23:04:05 +03:00
|
|
|
limine bios-install <path to device/image> <1-based stage 2 partition number>
|
2020-04-20 13:39:24 +03:00
|
|
|
```
|
|
|
|
|
2023-04-11 23:04:05 +03:00
|
|
|
In case one wants to let `limine bios-install` embed stage 2 within GPT's structures,
|
|
|
|
simply omit the partition number, and invoke `limine bios-install` the same as one
|
2021-07-26 17:09:03 +03:00
|
|
|
would do for an MBR partitioned device.
|
2020-11-09 17:04:53 +03:00
|
|
|
|
2023-06-15 03:02:32 +03:00
|
|
|
The boot device must contain the `limine-bios.sys` and `limine.cfg` files in
|
2022-10-06 07:29:11 +03:00
|
|
|
either the root, `limine`, `boot`, or `boot/limine` directory of one of the
|
|
|
|
partitions, formatted with a supported file system.
|
2021-02-25 10:18:43 +03:00
|
|
|
|
2021-05-23 06:07:24 +03:00
|
|
|
### BIOS/UEFI hybrid ISO creation
|
2021-07-26 17:09:03 +03:00
|
|
|
In order to create a hybrid ISO with Limine, place the
|
2023-06-15 03:02:32 +03:00
|
|
|
`limine-uefi-cd.bin`, `limine-bios-cd.bin`, `limine-bios.sys`, and `limine.cfg` files
|
2021-07-26 17:09:03 +03:00
|
|
|
into a directory which will serve as the root of the created ISO.
|
2023-06-15 03:02:32 +03:00
|
|
|
(`limine-bios.sys` and `limine.cfg` must either be in the root, `limine`, `boot`, or
|
2023-06-15 02:07:44 +03:00
|
|
|
`boot/limine` directory; `limine-uefi-cd.bin` and `limine-bios-cd.bin` can reside
|
2021-07-26 17:09:03 +03:00
|
|
|
anywhere).
|
2021-02-25 08:44:41 +03:00
|
|
|
|
2023-06-13 13:35:15 +03:00
|
|
|
After that, create a `<ISO root directory>/EFI/BOOT` directory and copy the
|
|
|
|
relevant Limine EFI executables over (such as `BOOTX64.EFI`).
|
|
|
|
|
2021-07-26 17:09:03 +03:00
|
|
|
Place any other file you want to be on the final ISO in said directory, then
|
|
|
|
run:
|
2021-02-25 08:44:41 +03:00
|
|
|
```
|
2023-06-15 02:07:44 +03:00
|
|
|
xorriso -as mkisofs -b <relative path of limine-bios-cd.bin> \
|
2021-05-23 06:07:24 +03:00
|
|
|
-no-emul-boot -boot-load-size 4 -boot-info-table \
|
2023-06-14 04:14:41 +03:00
|
|
|
--efi-boot <relative path of limine-uefi-cd.bin> \
|
2021-05-23 06:07:24 +03:00
|
|
|
-efi-boot-part --efi-boot-image --protective-msdos-label \
|
|
|
|
<root directory> -o image.iso
|
2021-02-25 08:44:41 +03:00
|
|
|
```
|
|
|
|
|
2021-03-29 12:28:21 +03:00
|
|
|
*Note: `xorriso` is required.*
|
2021-02-25 08:44:41 +03:00
|
|
|
|
2023-04-11 23:04:05 +03:00
|
|
|
And do not forget to also run `limine bios-install` on the generated image:
|
2021-03-29 12:28:21 +03:00
|
|
|
```
|
2023-04-11 23:04:05 +03:00
|
|
|
limine bios-install image.iso
|
2021-03-29 12:28:21 +03:00
|
|
|
```
|
|
|
|
|
2023-06-15 02:07:44 +03:00
|
|
|
`<relative path of limine-bios-cd.bin>` is the relative path of
|
|
|
|
`limine-bios-cd.bin` inside the root directory.
|
|
|
|
For example, if it was copied in `<root directory>/boot/limine-bios-cd.bin`,
|
|
|
|
it would be `boot/limine-bios-cd.bin`.
|
2021-03-29 12:28:21 +03:00
|
|
|
|
2023-06-14 04:14:41 +03:00
|
|
|
`<relative path of limine-uefi-cd.bin>` is the relative path of
|
|
|
|
`limine-uefi-cd.bin` inside the root directory.
|
2021-07-26 17:09:03 +03:00
|
|
|
For example, if it was copied in
|
2023-06-14 04:14:41 +03:00
|
|
|
`<root directory>/boot/limine-uefi-cd.bin`, it would be
|
|
|
|
`boot/limine-uefi-cd.bin`.
|
2021-03-29 12:28:21 +03:00
|
|
|
|
2021-03-08 10:09:15 +03:00
|
|
|
### BIOS/PXE boot
|
2023-06-14 04:04:01 +03:00
|
|
|
The `limine-bios-pxe.bin` binary is a valid PXE boot image.
|
2021-02-26 02:32:02 +03:00
|
|
|
In order to boot Limine from PXE it is necessary to setup a DHCP server with
|
2021-07-26 17:09:03 +03:00
|
|
|
support for PXE booting. This can either be accomplished using a single DHCP
|
|
|
|
server or your existing DHCP server and a proxy DHCP server such as dnsmasq.
|
2021-02-26 02:32:02 +03:00
|
|
|
|
2023-06-15 03:02:32 +03:00
|
|
|
`limine.cfg` and `limine-bios.sys` are expected to be on the server used for boot.
|
2021-02-26 02:32:02 +03:00
|
|
|
|
2023-01-17 19:40:43 +03:00
|
|
|
### UEFI/PXE boot
|
2023-06-14 01:14:20 +03:00
|
|
|
The `BOOT*.EFI` files are compatible with UEFI PXE.
|
2023-01-17 19:40:43 +03:00
|
|
|
The steps needed to boot Limine are the same as with BIOS PXE,
|
2023-06-15 03:02:32 +03:00
|
|
|
except that the `limine-bios.sys` file is not needed on the server.
|
2023-01-17 19:40:43 +03:00
|
|
|
|
2020-09-15 13:16:31 +03:00
|
|
|
### Configuration
|
2021-02-26 02:32:02 +03:00
|
|
|
The `limine.cfg` file contains Limine's configuration.
|
2020-04-07 08:24:19 +03:00
|
|
|
|
2021-08-26 04:16:54 +03:00
|
|
|
An example `limine.cfg` file can be found in [`test/limine.cfg`](https://github.com/limine-bootloader/limine/blob/trunk/test/limine.cfg).
|
2020-04-07 08:24:19 +03:00
|
|
|
|
2021-08-26 04:11:52 +03:00
|
|
|
More info on the format of `limine.cfg` can be found in [`CONFIG.md`](https://github.com/limine-bootloader/limine/blob/trunk/CONFIG.md).
|
2020-04-21 20:18:13 +03:00
|
|
|
|
2020-09-13 16:47:43 +03:00
|
|
|
## Acknowledgments
|
2023-05-03 20:36:47 +03:00
|
|
|
Limine uses a stripped-down version of [tinf](https://github.com/jibsen/tinf) for early GZIP decompression.
|
2023-03-05 10:01:41 +03:00
|
|
|
|
2023-06-05 01:07:03 +03:00
|
|
|
Limine relies on [stb_image](https://github.com/nothings/stb/blob/dev/stb_image.h) for runtime GZIP decompression and image loading.
|
2020-09-06 04:35:32 +03:00
|
|
|
|
2020-05-02 18:02:05 +03:00
|
|
|
## Discord server
|
2021-07-26 17:09:03 +03:00
|
|
|
We have a [Discord server](https://discord.gg/QEeZMz4) if you need support,
|
|
|
|
info, or you just want to hang out with us.
|