pci-utils.tcz is identical in TC9 and TC10 so this applies to both.
Change the line about backing up updates
From:
add usr/local/share/pci.ids.gz to your backup to keep the update
To:
add usr/local/share/hwdata/pci.ids.gz to your backup to keep the update
From lspci help:
Usage: lspci [<switches>]
---- SNIP ----
Other options:
-i <file> Use specified ID database instead of /usr/local/share/hwdata/pci.ids.gz
-p <file> Look up kernel modules in a given file instead of default modules.pcimap
-M Enable `bus mapping' mode (dangerous; root only)
---- SNIP ----
From the tce-installed file:
tc@box:~$ cat /usr/local/tce.installed/pci-utils
#!/bin/sh
if [ ! -d /usr/local/share/hwdata ]; then
mkdir -p /usr/local/share/hwdata
fi
if [ ! -f /usr/local/share/hwdata/pci.ids.gz ]; then
cp /usr/local/share/pciutils/files/pci.ids.gz /usr/local/share/hwdata
fi
tc@box:~$
Attached is a corrected .info file with the correction noted in the change log.