소스 검색

Merge pull request #305 from a-h-ismail/patch-1

Fix incorrect kernel option and add grubby equivalent.
Tomás Pinho 2 년 전
부모
커밋
a478095a45
1개의 변경된 파일7개의 추가작업 그리고 3개의 파일을 삭제
  1. 7 3
      README.md

+ 7 - 3
README.md

@@ -90,16 +90,16 @@ This will enable verbose debug logging, helpful to developers.
 
 ## Possible issues
 
-### PCIe Activate State Power Management
+### PCIe Active State Power Management
 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:
+Add pcie_aspm=off at the end of GRUB_CMDLINE_LINUX_DEFAULT. Line should look like this:
 
 ```
-GRUB_CMDLINE_LINUX_DEFAULT="quiet splash pci=noaer"
+GRUB_CMDLINE_LINUX_DEFAULT="quiet splash pcie_aspm=off"
 ```
 
 Then update your GRUB configuration:
@@ -107,6 +107,10 @@ Then update your GRUB configuration:
 sudo update-grub
 ```
 
+On systems that doesn't have `update-grub` but have `grubby` like Fedora, you can directly execute instead:
+```
+sudo grubby --update-kernel=ALL --args=pcie_aspm=off
+```
 Reboot.
 
 ### Lenovo Yoga laptops