This is a discussion on Re: Net Driver 8139, unknown vendor within the mailing.openbsd.tech forums, part of the OpenBSD category; --> On Sat, Oct 07, 2006 at 09:14:57PM -0300, Francisco D. Kurpiel wrote: > I have an OpenBSD 3.9 stable ...
| |||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| ||||
| On Sat, Oct 07, 2006 at 09:14:57PM -0300, Francisco D. Kurpiel wrote: > I have an OpenBSD 3.9 stable and I can't make it use one network > adapter. The machine got tree adapters, all of them got 8139. I got the > following lines on /var/log/messages (related to all the tree adapters) > > Oct 7 13:37:36 polluxbsd02 /bsd: rl0 at pci1 dev 4 function 0 "Realtek > 8139" rev 0x10: irq 12, address 00:08:54:d9:08:d6 > Oct 7 13:37:36 polluxbsd02 /bsd: rlphy0 at rl0 phy 0: RTL internal PHY > Oct 7 13:37:36 polluxbsd02 /bsd: unknown vendor 0x1904 product 0x8139 > (class network subclass ethernet, rev 0x01) at pci1 dev 5 function 0 not > configured > Oct 7 13:37:36 polluxbsd02 /bsd: rl1 at pci1 dev 7 function 0 "Realtek > 8139" rev 0x10: irq 11, address 00:d0:09:d8:38:7d > > The information printed on the chip is: > > RTL8139C > 15078S1 > 120B TAIWAN > > The working adapters got RTL9139D on it. > > Thank-you. Try this diff, do you see any kind of vendor name on the card or packaging at all? Index: sys/dev/pci/if_rl_pci.c ================================================== ================= RCS file: /cvs/src/sys/dev/pci/if_rl_pci.c,v retrieving revision 1.14 diff -u -p -r1.14 if_rl_pci.c --- sys/dev/pci/if_rl_pci.c 23 May 2006 00:41:50 -0000 1.14 +++ sys/dev/pci/if_rl_pci.c 8 Oct 2006 02:14:54 -0000 @@ -95,7 +95,8 @@ const struct pci_matchid rl_pci_devices[ { PCI_VENDOR_DELTA, PCI_PRODUCT_DELTA_8139 }, { PCI_VENDOR_DLINK, PCI_PRODUCT_DLINK_530TXPLUS }, { PCI_VENDOR_NORTEL, PCI_PRODUCT_NORTEL_BS21 }, - { PCI_VENDOR_REALTEK, PCI_PRODUCT_REALTEK_RT8129 } + { PCI_VENDOR_REALTEK, PCI_PRODUCT_REALTEK_RT8129 }, + { 0x1904, 0x8139 } }; int |