From fe5dae9658091ce2ea1869566350ee8dcbfe945a Mon Sep 17 00:00:00 2001 From: Harald Hope Date: Sat, 13 Jan 2018 11:53:32 -0800 Subject: [PATCH] New version, new tarball. Significant albeit small fix to the debugger tool. Without this fix, newer kernels can hang on the data parsing. --- inxi | 8 ++++---- inxi.changelog | 16 ++++++++++++++++ 2 files changed, 20 insertions(+), 4 deletions(-) diff --git a/inxi b/inxi index e3eac19..7c4516e 100755 --- a/inxi +++ b/inxi @@ -2,8 +2,8 @@ ######################################################################## SELF_NAME='inxi' # don't quote the following, parsers grab these too -SELF_VERSION=2.3.53 -SELF_DATE=2017-12-07 +SELF_VERSION=2.3.54 +SELF_DATE=2018-01-13 SELF_PATCH=00 ######################################################################## #### SPECIAL THANKS @@ -21,7 +21,7 @@ SELF_PATCH=00 #### Gaim/Pidgin, Weechat, KVIrc and Kopete. #### Original infobash author and copyright holder: #### 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 #### Further fixes (listed as known): Horst Tritremmel #### 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 # 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 - 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 # we discover syntax of foreign language characters # Must be ascii like. This is questionable and might require further diff --git a/inxi.changelog b/inxi.changelog index 668bf09..ab6c3b7 100644 --- a/inxi.changelog +++ b/inxi.changelog @@ -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 Patch Version: 00