Jump to content
10 posts in this topic

Recommended Posts

Download the latest X1900 G5 driver from ATI.

 

Now we need to trick the installer into thinking we have a PowerMac G5. The installer will use sysctl to check the hw.model attribute. We are just going to temporarily replace the sysctl binary with something that always outputs what we want. Copy it somewhere safe.

 

sudo cp /usr/sbin/sysctl /usr/sbin/sysctl.real

 

open in text edit sysctl select all and cut it then add in just

 

#!/bin/sh

echo "PowerMac11,2"

 

Make it executable

 

sudo chmod +x /usr/sbin/sysctl

 

Run the installer just like anyone would.

 

Put the real sysctl back:

 

sudo mv /usr/sbin/sysctl.real /usr/sbin/sysctl

 

done. :)

 

Sadly it does not work... :tomato:

 

34184dc98e.png

  • 4 weeks later...
×
×
  • Create New...