⚙️Configuration
Setting your bootloader up.
The bootloader can be configured in various ways, like the selection of the boot style. When GRILO starts for the first time, the application creates the following files and folders necessary for the configuration:
%LOCALAPPDATA%/GRILOon Windows systems$HOME/.config/GRILOon Linux systems
The configuration files and folders within the directory are made by GRILO itself:
BootloaderConfig.jsonThis file stores all the bootloader configuration options.
The type is a file
StylesLists all the custom boot styles
The type is a folder
BootablesStores all the folders that contain bootable applications inside
The type is a folder
BootloaderDebug.logStores all the debugging messages that come from the bootloader
The type is a file
Let's start with the configuration file, as this page covers the general GRILO configuration.
Configuration
Typical GRILO configuration files start with this:
{
"Boot style": "Default",
"Diagnostic messages": false,
"Additional bootable folders": [],
"Timeout to boot to selection": 60,
"Default boot entry selection": 0
}The following configuration descriptions are listed below:
Boot styleStores the name of the boot style
The type of this variable is a string
Diagnostic messagesWhether to enable storing the diagnostic messages to the
BootloaderDebug.logfileThe type of this variable is a boolean
Additional bootable foldersAn array of complete file paths to additional bootable folders for the scanner to use
The type of this variable is an array of strings
Timeout to boot to selectionTimeout in seconds to boot to selection if no key is pressed
The type of this variable is an integer
Default boot entry selectionZero-based choice number for the default boot entry
The type of this variable is an integer
Each time GRILO starts up, it checks the settings file for any values and installs them to the bootloader, making it configurable.
Last updated