-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathcve_omap4.html
30 lines (29 loc) · 895 Bytes
/
cve_omap4.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
---
title: CVE-OMAP4
icon: newspaper-o
---
<div class="card">
<div class="card-heading">
<h3>TI OMAP4 Kernel (common 3.0.y)</h3>
</div>
<div class="card-content-1">
<h2>Patched</h2>
{% for cve in site.data.cve %}
{% if cve.omap4commitid and cve.omap4commitid != "unaffected" and cve.omap4commitid != null %}
<b>{{ cve.cve }}</b>: <a href="https://github.com/Unlegacy-Android/android_kernel_ti_omap4/commit/{{ cve.omap4commitid }}">{{ cve.omap4commitid }}</a></br>
{% endif %}
{% endfor %}
<h2>Unaffected</h2>
{% for cve in site.data.cve %}
{% if cve.omap4commitid == "unaffected" %}
<b>{{ cve.cve }}</b>: UNAFFECTED</br>
{% endif %}
{% endfor %}
<h2>Unpatched/need to be checked</h2>
{% for cve in site.data.cve %}
{% if cve.omap4commitid == null %}
<b>{{ cve.cve }}</b>: UNAFFECTED OR UNPATCHED</br>
{% endif %}
{% endfor %}
</div>
</div>