BitBake's passthrough environment variables: Revision history

Jump to navigation Jump to search

Diff selection: Mark the radio buttons of the revisions to compare and hit enter or the button at the bottom.
Legend: (cur) = difference with latest revision, (prev) = difference with preceding revision, m = minor edit.

1 December 2025

  • curprev 15:2115:21, 1 December 2025Koan talk contribs 614 bytes +614 Created page with "== BitBake's passthrough environment variables == When you need to manage custom variables in a script having an impact with Bitbake, it is possible to add custom environment variables to BitBake's passthrough mechanism. #!/bin/bash # # A script to demonstrate adding custom environment variables to BitBake's passthrough mechanism. # export CUSTOM="CustomValue" export MYVAR=$CUSTOM-$USER BB_ENV_PASSTHROUGH_ADDITIONS="$BB_ENV_PASSTHROUGH_..."