A simple and configurable UEFI bootloader, written in Rust.
Wakatiwai (named after the Māori watercraft "waka tīwai", a simple canoe) is a bootloader for x86_64 UEFI written in Rust. It is engineered to support booting the Eisen operating system.
Wakatiwai needs to occupy an EFI System partition on your disk. This partition:
- must be formatted to a FAT32 filesystem
- must be large enough to function as an EFI System partition (At least 64MB but 300MB-1GB is usually recommended)
- should be the first partition on disk - this is not necessarily required but is the safest and most conventional position
Upon starting the bootloader, you will be greeted with a list of menu options. Use the up and down keys to focus one of these options, and press the space or enter keys to boot the focused option.
The following keys also have functions:
Key | Function |
---|---|
F5 | Restarts the bootloader. |
F12 | Powers off the system. |
The Wakatiwai Bootloader is configured via a file called wtconfig.json
, located in the root of the EFI partition in which the bootloader resides. It takes the following case-sensitive properties and values:
Property | Type | Default | Required | Notes |
---|---|---|---|---|
loglevel |
String | "NORMAL" |
✘ | Describes how much logging information will be outputted by the bootloader. Options are:
|
timeout |
Integer | 5 | ✘ | Amount of time in seconds to wait until booting the default boot entry. May also be set to 0 to immediately boot or to a negative number to wait for user input. N.B. This must be a signed long integer (-2,147,483,648 to 2,147,483,647) |
offershell |
Boolean | true |
✘ | If true , the bootloader will present the option to access the UEFI shell in the boot menu.N.B. The UEFI shell is not provided on all machines. |
editconfig |
Boolean | true |
✘ | If true , the bootloader will present the option to edit the local wtconfig.json for future boots in the boot menu.WARNING: If set to false , mistakes in the bootloader's configuration might only be fixable from another operating system - your system may become unbootable. |
menuclear |
Boolean | true |
✘ | If true , the screen will be cleared when the boot menu is displayed. |
bootentries |
[BootEntry] | N/A | ✘ | An array of boot entries to be used by the bootloader. They will be booted preferentially from the start of the array. N.B. If left blank, the bootloader will emit an appropriate warning and automatically offer the user the option to access the UEFI shell or edit the bootloader configuration file. |
Boot entries are themselves respresented in JSON within the bootentries
array of the wtconfig.json
. They take the following case-sensitive properties and values:
Property | Type | Default | Required | Notes |
---|---|---|---|---|
name |
String | N/A | ✔ | The name of the boot entry. N.B. This name should be no longer than 64 characters. |
diskguid |
String | The Bootloader's disk GUID. | ✘ | The GUID of the GPT of the disk upon which this boot option resides. |
partition |
Integer | N/A | ✔ | The partition in which this boot option resides. |
fs |
String | N/A | ✔ | The file system of the given partition. A list of supported filesystems (case sensitive, in quotes) can be found here. |
progtype |
String | N/A | ✔ | The type of program this boot entry points to. Options are:
|
Contributions are more than welcome and will be processed whenever possible. Please adhere to the following guidelines:
- Use British English
- Avoid using programming languages other than Rust - inline assembly is acceptable where absolutely crucial
- LF, not CRLF
The tests
directory contains some useful scripts for testing out Wakatiwai as well as creating disk images. You can find them documented here.