{% extends "baseprojectpage.html" %} {% load projecttags %} {% load humanize %} {% block title %} BitBake variables - {{project.name}} - Toaster {% endblock %} {% block projectinfomain %}

Bitbake variables

{% if distro_defined %}
DISTRO
{{distro}}
{% endif %} {% if dl_dir_defined %}
DL_DIR
{% if dl_dir %}{{dl_dir}}{%else%}Not set{%endif%}
{% 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 sstate_dir_defined %}
SSTATE_DIR
{% if sstate_dir %}{{sstate_dir}}{%else%}Not set{%endif%}
{% endif %}
{% for fstype in vars_fstypes %} {% endfor %} {% for b in vars_blacklist %} {% endfor %} {% for b in vars_managed %} {% endfor %}
Add variable

Some variables cannot be set 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 PARALLEL_MAKE TMPDIR

Plus the following standard shell environment variables:

http_proxy ftp_proxy https_proxy all_proxy

{% endblock %}