mirror of
https://github.com/smxi/inxi.git
synced 2025-02-23 13:32:18 +00:00
added more debugging data collection for lspci output types, might be able to get better support for failed machine type and other data
types.
This commit is contained in:
parent
683902e148
commit
5f516498bd
7
inxi
7
inxi
|
@ -605,7 +605,7 @@ DISTROS_OS_RELEASE_GOOD="arch-release SuSE-release"
|
||||||
## OUTPUT FILTERS/SEARCH ##
|
## OUTPUT FILTERS/SEARCH ##
|
||||||
# Note that \<ltd\> bans only words, not parts of strings; in \<corp\> you can't use punctuation characters like . or ,
|
# Note that \<ltd\> bans only words, not parts of strings; in \<corp\> you can't use punctuation characters like . or ,
|
||||||
# we're saving about 10+% of the total script exec time by hand building the ban lists here, using hard quotes.
|
# we're saving about 10+% of the total script exec time by hand building the ban lists here, using hard quotes.
|
||||||
BAN_LIST_NORMAL='chipset|components|computing|computer|corporation|communications|electronics|electrical|electric|gmbh|group|industrial|international|revision|semiconductor|software|technologies|technology|ltd\.|\<ltd\>|inc\.|\<inc\>|intl\.|co\.|\<co\>|corp\.|\<corp\>|\(tm\)|\(r\)|®|\(rev ..\)'
|
BAN_LIST_NORMAL='chipset|components|computing|computer|corporation|communications|electronics|electrical|electric|gmbh|group|incorporation|industrial|international|nee|revision|semiconductor|software|technologies|technology|ltd\.|\<ltd\>|inc\.|\<inc\>|intl\.|co\.|\<co\>|corp\.|\<corp\>|\(tm\)|\(r\)|®|\(rev ..\)'
|
||||||
BAN_LIST_CPU='@|cpu deca|dual core|dual-core|tri core|tri-core|quad core|quad-core|ennea|genuine|hepta|hexa|multi|octa|penta|processor|single|triple|[0-9\.]+ *[MmGg][Hh][Zz]'
|
BAN_LIST_CPU='@|cpu deca|dual core|dual-core|tri core|tri-core|quad core|quad-core|ennea|genuine|hepta|hexa|multi|octa|penta|processor|single|triple|[0-9\.]+ *[MmGg][Hh][Zz]'
|
||||||
|
|
||||||
SENSORS_GPU_SEARCH='intel|radeon|nouveau'
|
SENSORS_GPU_SEARCH='intel|radeon|nouveau'
|
||||||
|
@ -1579,8 +1579,13 @@ debug_data_collector()
|
||||||
|
|
||||||
lscpu &> $debug_data_dir/lscpu.txt
|
lscpu &> $debug_data_dir/lscpu.txt
|
||||||
lspci &> $debug_data_dir/lspci.txt
|
lspci &> $debug_data_dir/lspci.txt
|
||||||
|
lspci -k &> $debug_data_dir/lspci-k.txt
|
||||||
|
lspci -knn &> $debug_data_dir/lspci-knn.txt
|
||||||
lspci -n &> $debug_data_dir/lspci-n.txt
|
lspci -n &> $debug_data_dir/lspci-n.txt
|
||||||
lspci -nn &> $debug_data_dir/lspci-nn.txt
|
lspci -nn &> $debug_data_dir/lspci-nn.txt
|
||||||
|
lspci -mm &> $debug_data_dir/lspci-mm.txt
|
||||||
|
lspci -mmnn &> $debug_data_dir/lspci-mmnn.txt
|
||||||
|
lspci -mmnnv &> $debug_data_dir/lspci-mmnnv.txt
|
||||||
lspci -v &> $debug_data_dir/lspci-v.txt
|
lspci -v &> $debug_data_dir/lspci-v.txt
|
||||||
lsusb &> $debug_data_dir/lsusb.txt
|
lsusb &> $debug_data_dir/lsusb.txt
|
||||||
ps aux &> $debug_data_dir/ps-aux.txt
|
ps aux &> $debug_data_dir/ps-aux.txt
|
||||||
|
|
Loading…
Reference in a new issue