|
|
|
|
|
by trynewideas
1219 days ago
|
|
You can try setting `i915.enable_psr=0` at boot (the "add i915.enable_psr=0 into your kernel boot parameters" part of the comment I linked to and posted) or set the enable_psr parameter on the i915 kernel module. The Fedora docs cover setting module parameters.[1] This is how setting the kernel module parameter manifests on my system: $ sudo grep -iR i915.enable_psr /etc/modprobe.d
/etc/modprobe.d/i915.conf:options i915 enable_psr=0
$ sudo cat /etc/modprobe.d/i915.conf
options i915 enable_psr=0
Assuming you use the default GRUB 2 boot loader, the Fedora docs also cover setting the kernel boot parameters.[2]1: https://docs.fedoraproject.org/en-US/fedora/latest/system-ad... 2: https://docs.fedoraproject.org/en-US/fedora/latest/system-ad... |
|