Skip to content

Instantly share code, notes, and snippets.

@raphaelbruno
Last active July 8, 2021 15:30
Show Gist options
  • Save raphaelbruno/032d6fb30f010b42c4e4ca4e4d96cf74 to your computer and use it in GitHub Desktop.
Save raphaelbruno/032d6fb30f010b42c4e4ca4e4d96cf74 to your computer and use it in GitHub Desktop.
Change radeon to amdgpu
# 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