aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTimo Wilken2024-03-29 17:39:04 -0500
committerTimo Wilken2024-03-29 17:39:04 -0500
commit250d11d0dd14404a39593540b277a0de66cd8f47 (patch)
tree74c9dad410d677ec4ddf854d2f82717147617f3f
parenta56bdba05f21d75dc4b0fad74d3912c384d5c6c5 (diff)
Fix Framework Laptop display flashing white after a while
This seems to happen randomly, usually after a fair bit of use, though more frequently if I'm on a Jitsi call after about 30m-1h. Perhaps some video memory corruption. Framework community posts seem to indicate the kernel parameter in this commit should fix it.
-rw-r--r--tw/system/frm.scm2
1 files changed, 2 insertions, 0 deletions
diff --git a/tw/system/frm.scm b/tw/system/frm.scm
index 5e9e7d55..8a81465c 100644
--- a/tw/system/frm.scm
+++ b/tw/system/frm.scm
@@ -66,6 +66,8 @@
;; (it's in an M.2 slot). Alternatives are S (SDIO) and U (USB).
(kernel (nongnu:corrupt-linux linux-libre #:configs '("CONFIG_MT7921E=m")))
(kernel-loadable-modules (list ddcci-driver-linux))
+ ;; Fix screen flashing white: https://community.frame.work/t/39073
+ (kernel-arguments (cons* "amdgpu.sg_display=0" %default-kernel-arguments))
(initrd nongnu:microcode-initrd)
(firmware (cons* nongnu:amdgpu-firmware mt7922-firmware %base-firmware))