http://bugzilla.opensuse.org/show_bug.cgi?id=1002875 http://bugzilla.opensuse.org/show_bug.cgi?id=1002875#c108 --- Comment #108 from Aleksey Kontsevich <akontsevich@gmail.com> --- (In reply to Aleksey Kontsevich from comment #95)
(In reply to Cliff Zhao from comment #94)
Maybe the proprietary Nvidia drivers require a kernel command line to get the mode-setting. I'm still collecting the information...
Found working solution: https://www.reddit.com/r/openSUSE/comments/dxlyfd/ how_do_i_bring_back_plymouth_after_nvidia_driver/ - plymouth works just fine now with nvidia proprietary drivers.
Think while rpms with drivers are created by SUSE: https://download.nvidia.com/opensuse/README - need to add scripts to create these files on rpms install:
Make a nvidia.conf file with the following content:
options nvidia_drm modeset=1
Then copy this file to /etc/modprobe.d/
Second, make another nvidia.conf file with the following content:
add_drivers+=" nvidia nvidia_modeset nvidia_uvm nvidia_drm "
install_items+=" /etc/modprobe.d/nvidia.conf "
Copy this file to /etc/dracut.conf.d/
Then update dracut:
sudo dracut -f
On latest 5.15 kernel it produces error on dracut run:
`dracut-install: Failed to find module 'nvidia_uvm'`
So need to remove `nvidia_uvm` from `/etc/dracut.conf.d/nvidia.conf` file: ``` add_drivers+=" nvidia nvidia_modeset nvidia_drm " install_items+=" /etc/modprobe.d/nvidia.conf " ``` and rerun `sudo dracut -f`. https://www.reddit.com/r/openSUSE/comments/dxlyfd/comment/ho8jtd0/?utm_source=share&utm_medium=web2x&context=3 -- You are receiving this mail because: You are on the CC list for the bug.