mirror of
https://github.com/smxi/inxi.git
synced 2025-01-19 00:47:47 +00:00
New version, new tarball. Bug fix: added basic support for NVMe M2 disk storage type.
NOTE: missing product name/serial info, because it's not being treated by linux kernel as a standard disk. Could not find that data anywhere in the system debugger dump. If you know how to find the model name/number and or serial, let me know. Also small fix, as noted: ip: should be ip-v4 to match with ip-v6, thanks mikaela. Also some debugger fixes and updates.
This commit is contained in:
parent
63a0732392
commit
454da4e4ae
7
inxi
7
inxi
|
@ -1,7 +1,7 @@
|
|||
#!/usr/bin/env bash
|
||||
########################################################################
|
||||
#### Script Name: inxi
|
||||
#### Version: 2.2.32
|
||||
#### Version: 2.2.33
|
||||
#### Date: 2016-01-30
|
||||
#### Patch Number: 00
|
||||
########################################################################
|
||||
|
@ -1760,6 +1760,11 @@ debug_data_collector()
|
|||
lspci -mmnnv &> $debug_data_dir/lspci-mmnnv.txt
|
||||
lspci -v &> $debug_data_dir/lspci-v.txt
|
||||
lsusb &> $debug_data_dir/lsusb.txt
|
||||
if type -p hciconfig &>/dev/null;then
|
||||
hciconfig -a &> $debug_data_dir/hciconfig-a.txt
|
||||
else
|
||||
touch $debug_data_dir/hciconfig-absent
|
||||
fi
|
||||
ls /sys &> $debug_data_dir/ls-sys.txt
|
||||
ps aux &> $debug_data_dir/ps-aux.txt
|
||||
ps -e &> $debug_data_dir/ps-e.txt
|
||||
|
|
|
@ -1,3 +1,25 @@
|
|||
=====================================================================================
|
||||
Version: 2.2.33
|
||||
Patch Version: 00
|
||||
Script Date: 2016-01-30
|
||||
-----------------------------------
|
||||
Changes:
|
||||
-----------------------------------
|
||||
New version, new tarball. Bug fix: added basic support for NVMe M2 disk storage type.
|
||||
|
||||
NOTE: missing product name/serial info, because it's not being treated by linux kernel
|
||||
as a standard disk. Could not find that data anywhere in the system debugger dump.
|
||||
|
||||
If you know how to find the model name/number and or serial, let me know.
|
||||
|
||||
Also small fix, as noted: ip: should be ip-v4 to match with ip-v6, thanks mikaela.
|
||||
|
||||
Also some debugger fixes and updates.
|
||||
|
||||
-----------------------------------
|
||||
-- Harald Hope - Sat, 30 Jan 2016 17:07:42 -0800
|
||||
|
||||
|
||||
=====================================================================================
|
||||
Version: 2.2.32
|
||||
Patch Version: 00
|
||||
|
@ -11,18 +33,6 @@ corrupted.
|
|||
-----------------------------------
|
||||
-- Harald Hope - Sun, 03 Jan 2016 14:08:04 -0800
|
||||
|
||||
=====================================================================================
|
||||
Version: 2.2.31
|
||||
Patch Version: 00
|
||||
Script Date: 2015-12-30
|
||||
-----------------------------------
|
||||
Changes:
|
||||
-----------------------------------
|
||||
No version change til confirmed. New tarball.
|
||||
|
||||
-----------------------------------
|
||||
-- Harald Hope - Wed, 30 Dec 2015 13:11:10 -0800
|
||||
|
||||
=====================================================================================
|
||||
Version: 2.2.31
|
||||
Patch Version: 00
|
||||
|
|
Loading…
Reference in a new issue