Last active
July 8, 2021 15:30
-
-
Save raphaelbruno/032d6fb30f010b42c4e4ca4e4d96cf74 to your computer and use it in GitHub Desktop.
Change radeon to amdgpu
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Set these configs | |
radeon.cik_support=0 | |
amdgpu.cik_support=1 | |
radeon.si_support=0 | |
amdgpu.si_support=1 | |
# Without GRUB (Pop!_OS...) | |
$ sudo kernelstub -a "radeon.cik_support=0" | |
$ sudo kernelstub -a "amdgpu.cik_support=1" | |
$ sudo kernelstub -a "radeon.si_support=0" | |
$ sudo kernelstub -a "amdgpu.si_support=1" | |
$ reboot | |
# With GRUB (Mint...) | |
$ sudo nano /etc/default/grub | |
# Add the configs to GRUB_CMDLINE_LINUX_DEFAULT, Example | |
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash radeon.cik_support=0 amdgpu.cik_support=1 radeon.si_support=0 amdgpu.si_support=1" | |
$ sudo update-grub | |
$ reboot |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment