diff --git a/proc/linux-lib.pl b/proc/linux-lib.pl index 28281d877..79c534fc1 100755 --- a/proc/linux-lib.pl +++ b/proc/linux-lib.pl @@ -641,6 +641,12 @@ if (&has_command("sensors")) { } @cpu = @cputhermisters if (!@cpu && @cputhermisters); + +# Fix to remove cannot detect +# package temperatures (178) +if (@cpu) { + @cpu = grep {$_->{'temp'} != 178} @cpu; + } return (\@cpu, \@fans); }