mirror of
https://github.com/smxi/inxi.git
synced 2025-01-31 18:12:21 +00:00
New version, new tarball. Added an important debugger output, lsusb -v
This commit is contained in:
parent
d529fafe26
commit
5410a31f09
9
inxi
9
inxi
|
@ -2,8 +2,8 @@
|
||||||
########################################################################
|
########################################################################
|
||||||
SELF_NAME='inxi'
|
SELF_NAME='inxi'
|
||||||
# don't quote the following, parsers grab these too
|
# don't quote the following, parsers grab these too
|
||||||
SELF_VERSION=2.3.55
|
SELF_VERSION=2.3.56
|
||||||
SELF_DATE=2018-01-13
|
SELF_DATE=2018-01-17
|
||||||
SELF_PATCH=00
|
SELF_PATCH=00
|
||||||
########################################################################
|
########################################################################
|
||||||
#### SPECIAL THANKS
|
#### SPECIAL THANKS
|
||||||
|
@ -1532,7 +1532,12 @@ debug_data_collector()
|
||||||
lspci -mmnn &> $Debug_Data_Dir/lspci-mmnn.txt
|
lspci -mmnn &> $Debug_Data_Dir/lspci-mmnn.txt
|
||||||
lspci -mmnnv &> $Debug_Data_Dir/lspci-mmnnv.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
|
||||||
|
if type -p lsusb &>/dev/null;then
|
||||||
lsusb &> $Debug_Data_Dir/lsusb.txt
|
lsusb &> $Debug_Data_Dir/lsusb.txt
|
||||||
|
lsusb -v &> $Debug_Data_Dir/lsusb-v.txt
|
||||||
|
else
|
||||||
|
touch $Debug_Data_Dir/lsusb-absent
|
||||||
|
fi
|
||||||
if type -p hciconfig &>/dev/null;then
|
if type -p hciconfig &>/dev/null;then
|
||||||
hciconfig -a &> $Debug_Data_Dir/hciconfig-a.txt
|
hciconfig -a &> $Debug_Data_Dir/hciconfig-a.txt
|
||||||
else
|
else
|
||||||
|
|
|
@ -1,3 +1,15 @@
|
||||||
|
=====================================================================================
|
||||||
|
Version: 2.3.56
|
||||||
|
Patch Version: 00
|
||||||
|
Script Date: 2018-01-17
|
||||||
|
-----------------------------------
|
||||||
|
Changes:
|
||||||
|
-----------------------------------
|
||||||
|
New version, new tarball. Added an important debugger output, lsusb -v
|
||||||
|
|
||||||
|
-----------------------------------
|
||||||
|
-- Harald Hope - Wed, 17 Jan 2018 11:36:09 -0800
|
||||||
|
|
||||||
=====================================================================================
|
=====================================================================================
|
||||||
Version: 2.3.55
|
Version: 2.3.55
|
||||||
Patch Version: 00
|
Patch Version: 00
|
||||||
|
|
Loading…
Reference in a new issue