From: Michael Tremer Date: Sun, 22 Mar 2015 22:26:31 +0000 (+0100) Subject: fireinfo: Don't declare AMD CPUs with HT as "Intel Hyper-Threading" X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2ada97a670beb696340ee6d0294462d90d744a8e;p=ipfire.org.git fireinfo: Don't declare AMD CPUs with HT as "Intel Hyper-Threading" --- diff --git a/templates/fireinfo/profile-detail.html b/templates/fireinfo/profile-detail.html index c5ec9067..e440b60f 100644 --- a/templates/fireinfo/profile-detail.html +++ b/templates/fireinfo/profile-detail.html @@ -70,7 +70,11 @@ {% end %} {% if profile.processor.uses_ht() %} - {{ _("using Intel Hyper-Threading Technology") }} + {% if profile.processor.vendor == "Intel" %} + {{ _("using Intel Hyper-Threading Technology") }} + {% else %} + {{ _("with %s logical cores") % profile.processor.core_count }} + {% end %} {% end %}

{% end %}