View Single Post
 
Old 12-22-2009, 07:33 PM
will1384 will1384 is offline
Jaguar
 
Join Date: Dec 2009
Location: USA, Arkansas
Posts: 54
Quote:
Originally Posted by MonkeyDLuffy View Post

I'm using GraphicsEnabler in my ATI 4650 and im just getting output in VGA port. I have full QI/CE.
As far as I know there is no ATICAP, but I hope that by using a ROM file
along with GraphicsEnabler, it will do what you need.

Your "com.apple.Boot.plist" in "/Extra" would be something like this

Code:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
    <key>Kernel</key>
    <string>mach_kernel</string>
    <key>Timeout</key>
    <string>5</string>
    <key>Kernel Flags</key>
    <string>arch=i386</string>
    <key>Kernel Flags</key>
    <string>-useatirom</string>
    <key>EthernetBuiltIn</key>
    <string>y</string>
    <key>Graphics Mode</key>
    <string>1024x768x32</string>
    <key>GraphicsEnabler</key>
    <string>y</string>
</dict>
</plist>
You could also do this instead

Code:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
    <key>Kernel</key>
    <string>mach_kernel</string>
    <key>Timeout</key>
    <string>5</string>
    <key>Kernel Flags</key>
    <string>arch=i386 -useatirom</string>
    <key>EthernetBuiltIn</key>
    <string>y</string>
    <key>Graphics Mode</key>
    <string>1024x768x32</string>
    <key>GraphicsEnabler</key>
    <string>y</string>
</dict>
</plist>
Now just get your ROM and rename it with the "Device ID" and "Vendor ID"
and put it into your "/Extra" folder
Reply With Quote