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:
Harald Hope 2016-01-30 17:13:25 -08:00
parent 63a0732392
commit 454da4e4ae
2 changed files with 28 additions and 13 deletions

7
inxi
View file

@ -1,7 +1,7 @@
#!/usr/bin/env bash #!/usr/bin/env bash
######################################################################## ########################################################################
#### Script Name: inxi #### Script Name: inxi
#### Version: 2.2.32 #### Version: 2.2.33
#### Date: 2016-01-30 #### Date: 2016-01-30
#### Patch Number: 00 #### Patch Number: 00
######################################################################## ########################################################################
@ -1760,6 +1760,11 @@ debug_data_collector()
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
lsusb &> $debug_data_dir/lsusb.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 ls /sys &> $debug_data_dir/ls-sys.txt
ps aux &> $debug_data_dir/ps-aux.txt ps aux &> $debug_data_dir/ps-aux.txt
ps -e &> $debug_data_dir/ps-e.txt ps -e &> $debug_data_dir/ps-e.txt

View file

@ -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 Version: 2.2.32
Patch Version: 00 Patch Version: 00
@ -11,18 +33,6 @@ corrupted.
----------------------------------- -----------------------------------
-- Harald Hope - Sun, 03 Jan 2016 14:08:04 -0800 -- 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 Version: 2.2.31
Patch Version: 00 Patch Version: 00