New version, new tarball. Significant albeit small fix to the debugger tool.

Without this fix, newer kernels can hang on the data parsing.
This commit is contained in:
Harald Hope 2018-01-13 11:53:32 -08:00
parent e1119e9bb6
commit fe5dae9658
2 changed files with 20 additions and 4 deletions

8
inxi
View file

@ -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.53 SELF_VERSION=2.3.54
SELF_DATE=2017-12-07 SELF_DATE=2018-01-13
SELF_PATCH=00 SELF_PATCH=00
######################################################################## ########################################################################
#### SPECIAL THANKS #### SPECIAL THANKS
@ -21,7 +21,7 @@ SELF_PATCH=00
#### Gaim/Pidgin, Weechat, KVIrc and Kopete. #### Gaim/Pidgin, Weechat, KVIrc and Kopete.
#### Original infobash author and copyright holder: #### Original infobash author and copyright holder:
#### Copyright (C) 2005-2007 Michiel de Boer a.k.a. locsmif #### Copyright (C) 2005-2007 Michiel de Boer a.k.a. locsmif
#### inxi version: Copyright (C) 2008-2017 Harald Hope #### inxi version: Copyright (C) 2008-2018 Harald Hope
#### Additional features (C) Scott Rogers - kde, cpu info #### Additional features (C) Scott Rogers - kde, cpu info
#### Further fixes (listed as known): Horst Tritremmel <hjt at sidux.com> #### Further fixes (listed as known): Horst Tritremmel <hjt at sidux.com>
#### Steven Barrett (aka: damentz) - usb audio patch; swap percent used patch #### Steven Barrett (aka: damentz) - usb audio patch; swap percent used patch
@ -2007,7 +2007,7 @@ sys_traverse_data()
# note: a new file in 4.11 /sys can hang this, it is /parameter/ then # note: a new file in 4.11 /sys can hang this, it is /parameter/ then
# a few variables. Since inxi does not need to see that file, we will # a few variables. Since inxi does not need to see that file, we will
# not use it. Also do not need . files or __ starting files # not use it. Also do not need . files or __ starting files
return if $File::Find::name =~ /\/(\.[a-z]|__|parameters\/|debug\/)/; return if $File::Find::name =~ /\/(\.[a-z]|__|kernel\/|parameters\/|debug\/)/;
# comment this one out if you experience hangs or if # comment this one out if you experience hangs or if
# we discover syntax of foreign language characters # we discover syntax of foreign language characters
# Must be ascii like. This is questionable and might require further # Must be ascii like. This is questionable and might require further

View file

@ -1,3 +1,19 @@
=====================================================================================
Version: 2.3.54
Patch Version: 00
Script Date: 2018-01-13
-----------------------------------
Changes:
-----------------------------------
New version, new tarball. Significant albeit small fix to the debugger tool.
Without this fix, newer kernels can hang on the data parsing.
-----------------------------------
-- Harald Hope - Sat, 13 Jan 2018 11:51:50 -0800
===================================================================================== =====================================================================================
Version: 2.3.53 Version: 2.3.53
Patch Version: 00 Patch Version: 00