aboutsummaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/syslinux
AgeCommit message (Expand)Author
2016-02-04syslinux: remove LDFLAGS manipulationRoss Burton
2016-01-22syslinux: Set LD to avoid using build host ldKhem Raj
2015-09-21syslinux: Dont bypass gcc driver for dependency generation optionsKhem Raj
2015-09-21gnu-efi, syslinux: Support gcc < 4.7Khem Raj
2015-07-31syslinux: drop v6.xx/ from directory path in SRC_URIAlexander Kanavin
2015-04-15syslinux: Fix syslinux-nomtools permissionsRobert Yang
2015-04-15syslinux: add syslinux-nomtools to PACKAGESRobert Yang
2015-02-15syslinux: support ext2/3/4 deviceRobert Yang
2015-01-07syslinux: Update to 6.0.3Saul Wold
2014-08-23syslinux: add perl to RDEPENDS_syslinux-miscRobert Yang
2014-08-16syslinux: fix race issueRobert Yang
2014-08-11syslinux: fix reinstall errorRobert Yang
2014-06-24syslinux: fix isohybird overflows on 32 bit systemKai Kang
2014-05-20syslinux-native: fix parallel building issueChong Lu
2014-02-02syslinux: fix booting memtest86+ using pxelinux regressionJonathan Liu
2014-01-02Replace one-line DESCRIPTION with SUMMARYPaul Eggleton
2013-12-09syslinux: add ability to compile with nativesdkHongxu Jia
2013-11-22syslinux: use cross toolchain to compileLei Liu
2013-09-26syslinux.bbclass, syslinux: Update to syslinux 6.01Jason Wessel
2013-07-30syslinux: update to 4.07Jonathan Liu
2013-05-16syslinux: Update to 4.06Jonathan Liu
2013-02-04syslinux: use BPN instead of PNConstantin Musca
2012-04-06syslinux: Avoid using linux.ext2_fs.h if possibleDarren Hart
2012-03-21syslinux: fix stripped file warningsPaul Eggleton
2012-02-29syslinux: fix packaging of ${PN} and ${PN}-staticdevOtavio Salvador
2012-02-28syslinux: bump PROtavio Salvador
2012-02-26syslinux: Package unpackaged files in -miscSaul Wold
2012-01-24syslinux: refactor packages for staticdevSaul Wold
2011-11-14syslinux: fix the SRC_URI by using the 4.xx directoryJan Luebbe
2011-05-23syslinux: rdepends on mtoolsOtavio Salvador
2011-05-13update patch upstream statusQing He
2011-05-10syslinux: improve packagingOtavio Salvador
2011-03-23Various: Update KERNELORG_MIRROR for consistencyTom Rini
2010-12-09SRC_URI Checksums AdditionalsSaul Wold
2010-11-18syslinux: upgrade to version 4.03Qing He
2010-10-07syslinux: fix COMPATIBLE_HOST definitionNitin A Kamble
2010-08-27Major layout change to the packages directoryRichard Purdie
ue='obi/denzil'>obi/denzil OpenEmbedded Core user contribution treesGrokmirror user
summaryrefslogtreecommitdiffstats
path: root/lib/toaster/toastergui/templates/package_included_reverse_dependencies.html
blob: 4ba472f2d6ebaa60ffd87cd790c24902c6cfa997 (plain)
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{% extends "package_detail_base.html" %}
{% load projecttags %}

{% block title %}
        <h1>
            {{package.fullpackagespec}}
            <script> fmtAliasHelp("{{package.name}}", "{{package.alias}}", false) </script>
            <small>({{target.target}})</small>
        </h1>
{% endblock title %}

{% block tabcontent %}
    {% with packageFileCount=package.buildfilelist_package.count %}
    {% include "package_included_tabs.html" with active_tab="reverse" %}
    <div class="tab-content">
        <div class="tab-pane active" id="brought-in-by">

        {% ifequal reverse_count 0 %}
           <div class="alert alert-info">
                <strong>{{package.fullpackagespec}}</strong> has no reverse runtime dependencies.
            </div>
        {% else %}
            {% include "tablesort.html" %}
                <tbody>
					{% for reverse_dep in objects %}
                        <tr {{reverse_dep.size|format_vpackage_rowclass}} >
                        {% if reverse_dep.size != -1 %}
                            <td>
                                <a href="{% url 'package_included_detail' build.id target.id reverse_dep.package_id %}">
                                    {{reverse_dep.package.name}}
                                </a>
                                <script>fmtAliasHelp("{{reverse_dep.package.name}}", "{{reverse_dep.alias}}", true)</script>
                            </td>
                            {% else %}
                            <td>
                                {{reverse_dep.name|format_vpackage_namehelp}}
                            </td>
                            {% endif %}

                            <td>{{reverse_dep.package.version}}&nbsp;</td>
                            <td class='sizecol'>{{reverse_dep.package.size|filtered_filesizeformat}}&nbsp;</td>
                        </tr>
					{% endfor %}
                </tbody>
            </table>
        {% endifequal %}
        </div> <!-- end tab-pane -->
    </div> <!-- end tab content -->
    {% endwith %}
{% endblock tabcontent %}