mirror of
https://github.com/smxi/inxi.git
synced 2025-01-19 08:57:57 +00:00
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:
parent
e1119e9bb6
commit
fe5dae9658
8
inxi
8
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 <hjt at sidux.com>
|
||||
#### 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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue