Kaynağa Gözat

Add PCI Power Management information

Tomás Pinho 7 yıl önce
ebeveyn
işleme
8c9149a54a
1 değiştirilmiş dosya ile 19 ekleme ve 0 silme
  1. 19 0
      README.md

+ 19 - 0
README.md

@@ -19,3 +19,22 @@ In order to remove the driver from your system open a terminal in the directory
 sudo ./dkms-remove.sh
 ```
 
+## Possible issues
+Your distribution may come with PCIe Active State Power Management enabled by default. That may conflict with this driver. To disable:
+
+```
+sudo $EDITOR /etc/default/grub
+```
+Add pci=noaer at the end of GRUB_CMDLINE_LINUX_DEFAULT. Line should look like this:
+
+```
+GRUB_CMDLINE_LINUX_DEFAULT="quiet splash pci=noaer"
+```
+
+Then update your GRUB configuration:
+```
+sudo update-grub
+```
+
+Reboot.
+