Lost boot splash (plymouth?) after switching to open-source driver

I have a hydrid gpu: intel + nvidia. But since nvidia binary randomly causes ui glitches I wanted to try using only intel. I do not play games on linux and so I will not be missing nvidia.

I removed intel-nvidia-prime and installed video-linux:

Everything appears to be fine except the boot experience. I seem to have lost the boot splash. Instead I only see a black screen post grub and until the login screen. (I do see a nice boot splash when the system shutsdown though)

Did not change anything else in grub or mkinitcpio config.

grub: (removed commented lines for brevity)

GRUB_DEFAULT=saved
GRUB_TIMEOUT=5
GRUB_TIMEOUT_STYLE=hidden
GRUB_DISTRIBUTOR="Manjaro"
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash apparmor=1 security=apparmor resume=UUID=cd407363-6714-4634-8880-92fb188e7ddb udev.log_priority=3 snd_intel_dspcfg.dsp_driver=1"

GRUB_CMDLINE_LINUX=""
GRUB_SAVEDEFAULT=true
GRUB_PRELOAD_MODULES="part_gpt part_msdos"
GRUB_TERMINAL_INPUT=console
GRUB_GFXMODE=1280x1024x32
GRUB_GFXPAYLOAD_LINUX=keep
GRUB_DISABLE_RECOVERY=true
GRUB_DISABLE_OS_PROBER=false
GRUB_COLOR_NORMAL="light-gray/black"
GRUB_COLOR_HIGHLIGHT="green/black"
GRUB_THEME="/usr/share/grub/themes/manjaro/theme.txt"

mkinitcpio.conf: (removed commented lines for brevity)

MODULES=""
BINARIES=()
FILES=""
HOOKS="base udev autodetect modconf block keyboard keymap consolefont plymouth resume filesystems fsck"

Solved by adding i915 to MODULES in /etc/mkinitcpio.conf

MODULES="i915"
1 Like

This topic was automatically closed 2 days after the last reply. New replies are no longer allowed.