diff --git a/inxi b/inxi index c7a8171..69ac8b7 100755 --- a/inxi +++ b/inxi @@ -2,7 +2,7 @@ ######################################################################## SELF_NAME='inxi' # don't quote the following, parsers grab these too -SELF_VERSION=2.3.44 +SELF_VERSION=2.3.45 SELF_DATE=2017-11-21 SELF_PATCH=00 ######################################################################## @@ -2292,7 +2292,10 @@ debug_data_collector() sys_tree() { if type -p tree &>/dev/null;then - tree -a -L 10 /sys > $Debug_Data_Dir/sys-tree-10.txt + tree -a -L 10 /sys > $Debug_Data_Dir/sys-tree-full-10.txt + for branch in $( tree -i -L 1 -d --noreport /sys | grep -v 'sys$' );do + tree -a -L 10 /sys/$branch > $Debug_Data_Dir/sys-tree-$branch-10.txt + done else ls_sys 1 ls_sys 2 diff --git a/inxi.changelog b/inxi.changelog index 7092d47..afd0aea 100644 --- a/inxi.changelog +++ b/inxi.changelog @@ -1,3 +1,17 @@ +===================================================================================== +Version: 2.3.45 +Patch Version: 00 +Script Date: 2017-11-21 +----------------------------------- +Changes: +----------------------------------- +New version, new tarball. Because it's kind of hard to read the per /sys sub +directory output, I split it into sections, and also have the full /sys tree +in case there are some subtle differences in how the paths interlink. + +----------------------------------- +-- Harald Hope - Tue, 21 Nov 2017 11:26:51 -0800 + ===================================================================================== Version: 2.3.44 Patch Version: 00