Results 1 to 6 of 6
lspci shows devices "unknown Device:"..
in this place is possible to update myname if im a device driver developer....
- 04-24-2009 #1
unknown Device
lspci shows devices "unknown Device:"..
in this place is possible to update myname if im a device driver developer.
- 04-24-2009 #2Linux Guru
- Join Date
- Apr 2009
- Location
- I can be found either 40 miles west of Chicago, or in a galaxy far, far away.
- Posts
- 8,970
Please be more specific. Is this a device that you are writing a driver for? And what is it?
Sometimes, real fast is almost as good as real time.
Just remember, Semper Gumbi - always be flexible!
- 04-25-2009 #3
ya,
im writing Drivers for pci devices. when i insert a device in my system,
lspci command shows "unknown device : Device ID".
and im able to do all the things i want in that device...
i would like to know "is there any way to change that "unknown device" to some thing i want like, Device Name/My name..
- 04-25-2009 #4
Linux should have a list of PCI ID's that lspci will use to convert the hexidecimal Vendor and Device ID values to text.
If you have a hardware device that appears Unknown, then it is not in the list.
I think it is called pci.ids
Men occasionally stumble over the truth,
but most of them pick themselves up
and hurry off as if nothing had happened.
Winston Churchill
... then the Unix-Gods created "man" ...
- 04-25-2009 #5
You are correct. If the device is listed as Unknown, then the device is newer than the pci.ids file. You can download and install the most current pci.ids file from here:
The PCI ID Repository
The location of where you should put it differs depending on the distro you are using. To find the existing file, use this command:
Here is the location of that file on two of my PCs:Code:locate pci.ids
Fedora 10: /usr/share/hwdata/pci.ids
Mythbuntu: /usr/share/misc/pci.idsPaul
Please do not send Private Messages to me with requests for help. I will not reply.
- 04-27-2009 #6
is it possible to add an entry through Device Drivers???


Reply With Quote