{% extends "baseprojectpage.html" %} {% load projecttags %} {% load humanize %} {% block projectinfomain %}

Bitbake variables

{% if distro_defined %}
DISTRO
{{distro}}
{% endif %} {% if fstypes_defined %}
IMAGE_FSTYPES
{{fstypes}}
{% endif %} {% if image_install_append_defined %}
IMAGE_INSTALL_append
{% if image_install_append %}{{image_install_append}}{%else%}Not set{%endif%}
{% endif %} {% if package_classes_defined %}
PACKAGE_CLASSES
{{package_classes}}
{% endif %} {% if sdk_machine_defined %}
SDKMACHINE
{{sdk_machine}}
{% endif %}
{% for fstype in vars_fstypes %} {% endfor %} {% for b in vars_blacklist %} {% endfor %} {% for b in vars_managed %} {% endfor %}
Add variable

Some variables are reserved from Toaster

Toaster cannot set any variables that impact 1) the configuration of the build servers, or 2) where artifacts produced by the build are stored. Such variables include:

BB_DISKMON_DIRS BB_NUMBER_THREADS CVS_PROXY_HOST CVS_PROXY_PORT DL_DIR PARALLEL_MAKE SSTATE_DIR SSTATE_MIRRORS TMPDIR

Plus the following standard shell environment variables:

http_proxy ftp_proxy https_proxy all_proxy

{% endblock %}