TomatBoot scans for config file on the boot filesystem. The config file is located either under /tomatboot.cfg
or
/boot/tomatboot.cfg
, for compatibility with Limine, we also scan for /limine.cfg
and /boot/limine.cfg
The TomatBoot configuration file is comprised of assignments and entries.
Entries describe boot entries which the user can select in the boot menu.
An entry is simply a line starting with :
followed by a newline-terminated string. Any locally assignable key
that comes after it, and before another entry, or the end of the file, will be tied to the entry.
Assignments are simple KEY=VALUE
style assignments. VALUE
can have spaces and =
symbols, without requiring
quotations. New lines are delimiters.
Some assignments are part of an entry (local), some other assignments are global. Global assignments can appear anywhere in the file and are not part of an entry, although usually one would put them at the beginning of the config.
TIMEOUT
- Specifies the timeout in seconds before the first entry is automatically booted, this overrides the value in the setup menu.DEFAULT_ENTRY
- 0-based entry index of the entry which will be automatically selected at startup. If unspecified, it is 0, this overrides the one in the setup menu.
PROTOCOL
- The boot protocol that will be used to boot the kernel. Valid protocols are:linux
,stivale
,stivale2
.CMDLINE
- The command line string to be passed to the kernel. Can be omitted.KERNEL_CMDLINE
- Alias ofCMDLINE
.KERNEL_PATH
- The URI path of the kernel.
-
Linux protocol:
MODULE_PATH
- The URI path to the initramfs.
-
stivale and stivale2 protocols:
MODULE_PATH
- The URI path to a module.MODULE_STRING
- A string to be passed to a module.
Note that one can define these 2 variable multiple times to specify multiple modules. The entries will be matched in order. E.g.: the 1st partition entry will be matched to the 1st path and the 1st string entry that appear, and so on.
A URI is a path that TomatBoot uses to locate resources in the whole system. It is comprised of a resource, a root, and a path. It takes the form of:
resource://root/path
The format for root
changes depending on the resource used.
A resource can be one of the following:
boot
- Theroot
is the 1-based decimal value representing the partition on the boot drive. If omitted, the partition containing the configuration file on the boot drive is used. For example:boot://2/...
will use partition 2 of the boot drive andboot:///...
will use the partition containing the config file on the boot drive.guid
- Theroot
takes the form of a GUID/UUID, such asguid://736b5698-5ae1-4dff-be2c-ef8f44a61c52/....
The GUID is that of either a filesystem, when available, or a GPT partition GUID, when using GPT, in a unified namespace.uuid
- Alias ofguid
.