I'm not sure with what you said about "normal/abnormal" splash screen
but to prevent FreeBSD forth logo from displaying, you can putsomewhere in /boot/loader.conf[.local]Code:beastie_disable=yes
set boot_mute
boot_mute=""
You can also turn it on by typing
at the loader(8) prompt, or by addingCode:set boot_mute
to /boot/loader.conf (the variable just needs to be set, doesn't seem to matter to what). I haven't come across any documentation about it personally, and I'm not familiar with a way of turning it off, but I don't see what you gain by doing so. It only appears briefly at start up--as an alternative to what would otherwise be an empty black screen--during the time you'd normally be watching kernel output scroll by if it wasn't being silenced.Code:boot_mute=""
Yeah, I thought so too, but rudimentary support is there. The logo definitely appears when you boot from UEFI in VirtualBox and enable boot_mute.This is not something that came from FreeBSD. There is no splash screen, certainly not a default one.
Yeah, I thought so too, but rudimentary support is there. The logo definitely appears when you boot from UEFI in VirtualBox and enable boot_mute.
juan9182
The logo seems to be defined in /usr/src/sys/dev/vt/logo/logo_freebsd.c and you are going to have to recompile the kernel to change the image. AFAICT it only supports monochrome images at this time.
I think you can get rid of it by either including nodevice splash or removing device splash from your kernel config. Again recompiling the kernel is necessary as there currently is no tunable for this.
This is all just a guess from quickly looking at the sources and I have not tested any of this.