Skip to content

Instantly share code, notes, and snippets.

@Letterus
Created February 14, 2022 11:11
Show Gist options
  • Save Letterus/06dea864fbdee875c90d07fc876333d1 to your computer and use it in GitHub Desktop.
Save Letterus/06dea864fbdee875c90d07fc876333d1 to your computer and use it in GitHub Desktop.
Kernel modules and X11 config for PPC G5 to enable use of second graphics card from AMD (radeon) only
# /etc/modprobe.d/blacklist-nvidia-nouveau.conf
blacklist nouveau
options nouveau modeset=0
options radeon modeset=1
# /etc/X11/xorg.conf.d/select-card.conf
Section "Monitor"
Identifier "Monitor1"
EndSection
Section "Device"
Identifier "Card1"
Driver "radeon"
BusID "PCI:6@1:0:0"
EndSection
Section "Screen"
Identifier "Screen1"
Device "Card1"
Monitor "Monitor1"
SubSection "Display"
Depth 24
Modes "1920x1080_60.00"
EndSubSection
EndSection
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment