Kumi
8b16798b54
Renamed boot menu entries and updated kernel paths to reflect the new operating system name: KumiOS. This change ensures consistency across the boot configuration, paving the way for a smoother branding transition. Users will now see "KumiOS" instead of "myOS" at boot time, matching the updated kernel naming.
19 lines
No EOL
546 B
INI
19 lines
No EOL
546 B
INI
# Timeout in seconds that Limine will use before automatically booting.
|
|
TIMEOUT=5
|
|
|
|
# The entry name that will be displayed in the boot menu.
|
|
:KumiOS (KASLR on)
|
|
# We use the Limine boot protocol.
|
|
PROTOCOL=limine
|
|
|
|
# Path to the kernel to boot. boot:/// represents the partition on which limine.cfg is located.
|
|
KERNEL_PATH=boot:///kumios
|
|
|
|
# Same thing, but without KASLR.
|
|
:KumiOS (KASLR off)
|
|
PROTOCOL=limine
|
|
|
|
# Disable KASLR (it is enabled by default for relocatable kernels)
|
|
KASLR=no
|
|
|
|
KERNEL_PATH=boot:///kumios |