Update grub config

This commit is contained in:
Alex 2023-03-29 03:00:46 +03:00
parent 9edefa7abe
commit ca3a6f11e7
Signed by untrusted user who does not match committer: enderice2
GPG Key ID: EACC3AD603BAB4DD

View File

@ -1,6 +1,8 @@
set default=0 set default=0
set timeout=0 set timeout=5
# set lang=ro_RO # set lang=ro_RO
set menu_color_normal=white/black
set menu_color_highlight=black/light-gray
menuentry "Fennix" { menuentry "Fennix" {
clear clear
@ -8,3 +10,13 @@ menuentry "Fennix" {
multiboot2 /kernel.fsys --alloc=xallocv1 --cores=0 --ioapicirq=1 --tasking=multi --drvdir=/system/drivers --init=/system/init.elf --ioc=true --udl=true --simd=false --bootanim=false multiboot2 /kernel.fsys --alloc=xallocv1 --cores=0 --ioapicirq=1 --tasking=multi --drvdir=/system/drivers --init=/system/init.elf --ioc=true --udl=true --simd=false --bootanim=false
boot boot
} }
menuentry 'Boot from next volume' {
exit 1
}
if [ ${grub_platform} == "efi" ]; then
menuentry 'UEFI Firmware Settings' {
fwsetup
}
fi