diff options
Diffstat (limited to 'dev-python/rhpxl/files/0.32-use-radeon-ddc.patch')
-rw-r--r-- | dev-python/rhpxl/files/0.32-use-radeon-ddc.patch | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/dev-python/rhpxl/files/0.32-use-radeon-ddc.patch b/dev-python/rhpxl/files/0.32-use-radeon-ddc.patch new file mode 100644 index 000000000000..60b5e90fd975 --- /dev/null +++ b/dev-python/rhpxl/files/0.32-use-radeon-ddc.patch @@ -0,0 +1,17 @@ +Index: rhpxl/xhwstate.py +=================================================================== +RCS file: /usr/local/CVS/rhpxl/rhpxl/xhwstate.py,v +retrieving revision 1.32 +diff -u -b -B -r1.32 xhwstate.py +--- rhpxl/xhwstate.py 25 Aug 2006 17:26:31 -0000 1.32 ++++ rhpxl/xhwstate.py 7 Sep 2006 05:50:35 -0000 +@@ -404,6 +404,9 @@ + # UseFBDev on at cards on ppc + if rhpl.getArch() == "ppc" and driver in ("radeon", "r128", "ati"): + self.videocard_options.append(("UseFBDev", "true")) ++ # radeon driver needs to use DDC, otherwise it comes up with invalid modes ++ if driver in ("radeon", "ati"): ++ self.videocard_options.append(("DDCMode", "true")) + + def set_videocard_ram(self, ram): + self.video_ram = ram |