linux-y3pi:~
From here: http://www.cyberciti.biz/tips/linux-find-supported-pci-hardware-drivers.html
Sampling Result:
00: 1b.0 0403: 8086: 27d8 (rev 01) Where,
- 00: 1b.0 - Device
- 8086 - Designer Code for Intel Corporation
- 27d8 is the model identifier.
So, I discovered:
/usr/src/f/rtnet/drivers/experimental/rt_r8169.c
Relevant Code (IMO):
static struct pci_device_id rtl8169_pci_tbl[] __devinitdata = { { 0x10ec, 0x8169, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0 }, { 0x1186, 0x4300, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0 }, {0,}, };
So for me this information will be:
{ 0x10ec, 0x8136, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0 },
Is this the place where I have to add this PCI info and just do make and install?
source share