Combine poky (Yocto scarthgap), meta-openembedded (scarthgap), and meta-openwrt into a single repository. Components: - poky/ Yocto core framework (BitBake + OE-Core) - meta-openembedded/ Community layers (meta-oe, meta-python, meta-networking) - meta-openwrt/ OpenWrt customization layer - setup-env.sh One-click build environment setup - README.md Project documentation
25 lines
531 B
HTML
25 lines
531 B
HTML
{% extends "basebuildpage.html" %}
|
|
|
|
{% block pagetitle %}Files for package {{objects.0.bpackage.name}} {% endblock %}
|
|
{% block pagetable %}
|
|
{% if not objects %}
|
|
<p>No files were recorded for this package!</p>
|
|
{% else %}
|
|
|
|
<tr>
|
|
<th>Name</th>
|
|
<th>Size (Bytes)</th>
|
|
</tr>
|
|
|
|
{% for file in objects %}
|
|
|
|
<tr class="data">
|
|
<td>{{file.path}}</td>
|
|
<td>{{file.size}}</td>
|
|
|
|
{% endfor %}
|
|
|
|
{% endif %}
|
|
|
|
{% endblock %}
|