View previous topic :: View next topic |
Author |
Message |
jfktoo n00b
Joined: 09 Sep 2004 Posts: 2
|
Posted: Thu Sep 09, 2004 9:20 pm Post subject: lspci not showing device names (only numbers) |
|
|
I may have turned off a necessary feature of the kernle to produce this lspci output:
Code: | # lspci
0000:00:00.0 Class 0600: 1106:0691 (rev 44)
0000:00:01.0 Class 0604: 1106:8598
0000:00:07.0 Class 0601: 1106:0596 (rev 23)
0000:00:07.1 Class 0101: 1106:0571 (rev 10)
0000:00:07.3 Class 0600: 1106:3050 (rev 30)
0000:00:11.0 Class 0200: 1317:0985 (rev 11)
0000:00:13.0 Class 0401: 1274:5880 (rev 02)
0000:01:00.0 Class 0300: 10de:0110 (rev b2)
|
Any ideas why the full device names do not appear?
Thank you. |
|
Back to top |
|
|
oberyno Guru
Joined: 15 Feb 2004 Posts: 467 Location: /bin/zsh
|
Posted: Thu Sep 09, 2004 9:26 pm Post subject: |
|
|
Most likely you did turn something off in the kernel. Look under Bus options for PCI device name database and make sure it's checked. In make menuconfig of course. |
|
Back to top |
|
|
BarryJ n00b
Joined: 13 Apr 2003 Posts: 72 Location: Wisconsin, USA
|
Posted: Sat Sep 11, 2004 4:22 pm Post subject: |
|
|
I have the same problem, but the database is compiled in. Could it be a udev problem? |
|
Back to top |
|
|
fimbulvetr n00b
Joined: 03 Feb 2004 Posts: 51 Location: South Dakota
|
Posted: Sat Sep 11, 2004 4:28 pm Post subject: |
|
|
Does that help? |
|
Back to top |
|
|
fimbulvetr n00b
Joined: 03 Feb 2004 Posts: 51 Location: South Dakota
|
Posted: Sat Sep 11, 2004 4:32 pm Post subject: |
|
|
Err wait, does this file exist?
/usr/share/misc/pci.ids
If so, what does Code: | wc -l /usr/share/misc/pci.ids | give you?
(That shows how many lines are in the file)
I get 8983.
This is the pci id -> name conversion database.
Could have you accidently removed/deleted/renamed it? |
|
Back to top |
|
|
BarryJ n00b
Joined: 13 Apr 2003 Posts: 72 Location: Wisconsin, USA
|
Posted: Sat Sep 11, 2004 6:53 pm Post subject: |
|
|
This:
Code: | bjlinux ~ # wc -l /usr/share/misc/pci.ids
9260 /usr/share/misc/pci.ids |
so I actually have more...odd. Using lspci -vvv gives more information, but still not names. |
|
Back to top |
|
|
bookstack Apprentice
Joined: 27 Feb 2004 Posts: 245
|
Posted: Sun Sep 12, 2004 5:36 am Post subject: |
|
|
I have met the same problem. I used gentoo livecd 2004.2,
and start from stage3. The version of pciutils is 2.1.11-r1.
I just re-emerged this package. Everything is OK.
Hope it works for you. |
|
Back to top |
|
|
BarryJ n00b
Joined: 13 Apr 2003 Posts: 72 Location: Wisconsin, USA
|
Posted: Sun Sep 12, 2004 2:40 pm Post subject: |
|
|
Sure enough, there was a -r2 that didn't want to get automerged with -U world. Thanks! |
|
Back to top |
|
|
duderonomy Guru
Joined: 20 Mar 2004 Posts: 349 Location: SF Bay Area
|
Posted: Sun Sep 12, 2004 7:45 pm Post subject: |
|
|
ok...
the solution is a file access issue...
(at least in my case, which was much like this thread:
https://forums.gentoo.org/viewtopic.php?t=217882
I simply added a symlink as illustrated in the following file listing:
Code: | # pushd /usr/share/
/usr/share ~
# ls -Fl
total 62
<SNIP>
drwxr-xr-x 4 root root 616 Aug 22 15:18 ntp/
drwxr-xr-x 4 root root 1096 Aug 31 20:43 ogonkify/
drwxr-xr-x 7 root root 208 Sep 7 23:24 omf/
drwxr-xr-x 2 root root 128 Sep 8 10:49 openbox/
drwxr-xr-x 2 root root 72 Jul 11 12:58 openssh/
lrwxrwxrwx 1 root root 12 Sep 12 12:26 pci.ids -> misc/pci.ids
drwxr-xr-x 3 root root 80 Aug 23 06:34 perl/
drwxr-xr-x 15 root root 5240 Sep 8 10:49 pixmaps/
drwxr-xr-x 2 root root 112 Aug 31 20:17 psutils/
drwxr-xr-x 3 root root 72 Aug 26 22:36 pygtk/
<SNIP>
|
Cheers,
D
PS: Forgot to mention the version of my pciutil package: Code: |
* sys-apps/pciutils
Latest version available: 2.1.11-r1
Latest version installed: 2.1.11-r1
|
|
|
Back to top |
|
|
|