Open3
Dell XPS 13(9310), Manjaro
Wifiが認識しないため、sudo rmmod ath11k_pci して再起動。
ランダムでフリーズする問題を解消する。
i915.enable_psr=0をKernelパラメタに作成してPanel self refreshを無効にする。
GRUB_CMDLINE_LINUX_DEFAULT="quiet apparmor=1 security=apparmor udev.log_priority=3 i915.enable_psr=0"
適用する
sudo update-grub
再起動する。
suspend/resume時に自動でwifiを認識するようにする
[Unit]
Description=Suspend: rmmod ath11k_pci
Before=sleep.target
[Service]
Type=simple
ExecStart=/usr/bin/rmmod ath11k_pci
[Install]
WantedBy=sleep.target
[Unit]
Description=Resume: modprobe ath11k_pci
After=suspend.target
[Service]
Type=simple
ExecStart=/usr/bin/modprobe ath11k_pci
[Install]
WantedBy=suspend.target
適用
sudo systemctl enable /etc/systemd/system/ath11k-resume.service
sudo systemctl enable /etc/systemd/system/ath11k-suspend.service