Unzipping "6500 Bridge FW Patch.zip" on modern macOS puts the resource fork in a separate file. The zip doesn't appear to include FinderInfo (it assumes all the FinderInfo exists in the resource fork)?I've included some OpenFirmware dumps and System Profiler screenshots both pre and post bridge FW patch.
https://tinkerdifferent.com/threads/sit-create-stuffit-archives-on-unix-systems.4830/post-42185
The 6500 Bridge FW Patch doesn't help your Power Mac 6500 because it doesn't have the built-in ATI chip that is normally at device number @12 (slot F1). The patch works around a problem in the fcode for the built-in ATI chip by making that device/slot get probed last (therefore executing its fcode after executing the fcode for every other device).
Your Radeon 7000 is at device number @E (slot B1).Unfortunately my 6500 has decided it doesn't want to play nice with my Radeon 7000... again, so it's getting a timeout unless something is needed from OF directly. This is a long-standing on&off issue, pretty sure the 6500 is just a trash machine that isn't worthy of my time, but of course I don't have any other PCI machines to test the card in nor any other Mac-firmwared PCI cards that work in my 6500...
What if you change the patch so that it gets probed last instead of device number @12?
Here's the patch:
Code:
dev pci1
defer ?p
a3b get-token drop to ?p
: ps
0d 17 -1 ?p
0e 19 -1 ?p
0f 1c -1 ?p
11 16 -1 ?p
12 18 -1 ?p
;
' probe-slots dup
284 + ' ps blpatch
dup 288 + swap 2FC + brpatch
unselect-dev
Change the order of the lines in
:ps to change the probe order. For example:
Code:
0d 17 -1 ?p
0f 1c -1 ?p
11 16 -1 ?p
12 18 -1 ?p
0e 19 -1 ?p
If it's a 5V or universal PCI card with Open Firmware and an ndrv then it should work. What Macs is it supposed to work in? We could try updating the firmware. For example, we can make a 7800GT from a Quad G5 work in a Beige G3 or Power Mac 9600 with a PCIe to PCI bridge.And naturally the GF2MX doesn't work in Macs this old so I can't test with one of those.
https://forums.macrumors.com/thread...l-work-in-a-beige-power-macintosh-g3.2303689/











