|
Karina
Via VT6103 Tahoe lan works, but you need to find and patch the Via Rhine driver source then recompile. (hard enough to find the original driver now) (Try searching the web for via-rhine-beos-src-0.92.zip) The source pci.c file should be patched by replacing the PCI Info Table with the following and then recompiling.
* PCI Information Table
*
struct viarhine_pci_id_info pci_tbl[] =
{
{"VIA VT86C100A Rhine-I", 0x1106, 0x6100, 0xffff, PCI_command_io | PCI_command_master, 128},
{"VIA VT3042 Rhine", 0x1106, 0x3043, 0xffff, PCI_command_io | PCI_command_master, 128},
{"VIA VT6102 Rhine-II/VT6103 Tahoe 10/100M Fast Ethernet Adapter", 0x1106, 0x3065, 0xffff, PCI_command_io | PCI_command_master, 128},
{"VIA VT6105 Rhine-III Management Adapter", 0x1106, 0x3106, 0xffff, PCI_command_io | PCI_command_master, 128},
{0}
};
This should also work for some of the Rhine II controllers rating: 7 |