first commit

This commit is contained in:
ngn
2024-01-16 23:58:24 +03:00
commit b4ca73a748
7 changed files with 746 additions and 0 deletions

18
boot/grub/grub.cfg Normal file
View File

@ -0,0 +1,18 @@
set default=0
set timeout=10
insmod efi_gop
insmod font
if loadfont /boot/grub/fonts/unicode.pf2
then
insmod gfxterm
set gfxmode-auto
set gfxpayload=keep
terminal_output gfxterm
fi
menuentry 'MatterLinux ISO' --class os {
insmod gzio
insmod part_msdos
linux /boot/vmlinuz-linux loglevel=3
initrd /boot/initrd.img
}