Skip to content

Commit

Permalink
template: do not show lonely comma
Browse files Browse the repository at this point in the history
For non-Arm cpu cores we do not have AArch32 support information. In
such cases, on big.little systems, lonely comma was shown.
  • Loading branch information
hrw committed Nov 29, 2023
1 parent 7d511d8 commit e538f7b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion templates/arm-socs.html.j2
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@
{% if cpu_cores[core.implementer][core.part].trm %}<a href="{{ cpu_cores[core.implementer][core.part].trm }}">{% endif %}{{ cpu_cores[core.implementer][core.part].name }}{% if cpu_cores[core.implementer][core.part].trm %}</a>{% endif %}
{% if not loop.last %},<br />{% endif %}
{%- endfor %}</td>
<td class="nowrap">{% for core in soc.cores %}{{ core.aarch32 }}{% if not loop.last %},<br />{% endif %}{% endfor %}</td>
<td class="nowrap">{% for core in soc.cores %}{{ core.aarch32 }}{% if not loop.last and core.aarch32 != "" %},<br />{% endif %}{% endfor %}</td>
{% for feature in cpu_features %}
{% if feature in soc['features'] %}
<td> YES </td>
Expand Down

0 comments on commit e538f7b

Please sign in to comment.