From 69b0694e9191558e930699b7799488b0f80bc2b7 Mon Sep 17 00:00:00 2001 From: "Trash80.v2.0" Date: Wed, 5 Aug 2009 04:59:55 +0000 Subject: [PATCH] corrected the cpu input, accidentally added bugfix to wrong line. --- inxi | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/inxi b/inxi index 9b493b0..5a77418 100755 --- a/inxi +++ b/inxi @@ -1,7 +1,7 @@ #!/bin/bash ######################################################################## #### Script Name: inxi -#### version: 1.1.11 +#### version: 1.1.12 #### Date: August 4 2009 ######################################################################## #### SPECIAL THANKS @@ -1999,11 +1999,11 @@ get_cpu_ht_multicore_smp_data() # looking at logical processor counts over 1, which means either HT, SMP or MCP # http://en.wikipedia.org/wiki/Symmetric_multiprocessing - if ( processor_logical_count > 1 && core_count > 1 ) { + if ( processor_logical_count > 1 ) { if ( processor_logical_count > core_count && physical_cpu_count > 1 ) { type = "SMP-HT" # could be Xeon/P4 HT dual cpu } - else if ( processor_logical_count > core_count ) { + else if ( processor_logical_count > core_count && core_count > 1) { type = "HT" # this is more than likely a P4 w/HT or an Atom 270 } else {