mirror of
https://github.com/smxi/inxi.git
synced 2024-11-17 00:31:19 +00:00
bug fix, update version number, removed extra {...} in if clause.
This doesn't fix the main xeon failure though
This commit is contained in:
parent
cf7508d125
commit
959caae1f7
6
inxi
6
inxi
|
@ -1,8 +1,8 @@
|
|||
#!/bin/bash
|
||||
########################################################################
|
||||
#### Script Name: inxi
|
||||
#### version: 0.9.5
|
||||
#### Date: 23 January 2009
|
||||
#### version: 0.9.6
|
||||
#### Date: 24 January 2009
|
||||
########################################################################
|
||||
#### SPECIAL THANKS
|
||||
########################################################################
|
||||
|
@ -1484,7 +1484,6 @@ get_cpu_ht_multicore_smp_data()
|
|||
# if = 1 processor then single core/processor Uni-Processor (UP)
|
||||
|
||||
if [[ $B_CPUINFO == 'true' ]]; then
|
||||
{
|
||||
A_CPU_TYPE_PCNT_CCNT=( $( gawk '
|
||||
BEGIN { FS=": "; i = 0 } {IGNORECASE = 1}
|
||||
/^processor/ { num_of_processors = $NF + 1 } # counts logical processors, both HT and physical
|
||||
|
@ -1552,7 +1551,6 @@ get_cpu_ht_multicore_smp_data()
|
|||
}
|
||||
END { print type " " processors " " cores }
|
||||
' $DIR_CPUINFO ) )
|
||||
}
|
||||
fi
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue