Answer the question
In order to leave comments, you need to log in
GRUB how to remove "Welcome to GRUB" message?
I wrote a file in C that displays "Boot ..."
Through GRUB, I made an iso image of this miracle
grub.cfg:
set timeout=0
set default=0
GRUB_TIMEOUT=0 # Do not show the GRUB menu at all
GRUB_CMDLINE_LINUX_DEFAULT=quiet
GRUB_CMDLINE_LINUX="console=tty12" # Redirect the kernel output to another tty
menuentry "OS" {
multiboot /boot/mykernel.bin
boot
}
//Вывод на экран
void printf(char* str)
{
unsigned short* vMem = (unsigned short*)0xb8000;
for(int i = 0; str[i] != '\0'; ++i)
{
vMem[i] = (vMem[i] & 0xFF00) | str[i];
}
}
Answer the question
In order to leave comments, you need to log in
https://github.com/ccontavalli/grub-shusher/
?
*link from here rabexc.org/posts/grub-shush (first on google for " grub disable Welcome to GRUB ")
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question