No description
  • Python 69.3%
  • HTML 24.1%
  • JavaScript 3.6%
  • PHP 2.4%
  • CSS 0.3%
  • Other 0.2%
Find a file
Richard Purdie 3c118ffcbb toaster: Update to django 5.2
Run django-update against the code, which still passes testing afterwards.

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2026-09-04 14:46:44 +01:00
bin bitbake: Bump to version 2.19.1 2026-09-04 14:28:58 +01:00
classes base.bbclass: fix 'python should use 4 spaces indentation' warnings 2019-12-28 23:50:40 +00:00
conf bin, lib, conf: use bb.fetch instead of bb.fetch2 2026-09-04 14:28:58 +01:00
contrib contrib/prserv/Dockerfile: remove non-existent codegen.py 2026-07-02 11:18:04 +01:00
default-registry/configurations default-registry: use core/yocto/monitor-disk-space fragment by default 2026-09-03 10:16:30 +01:00
doc doc: update manual to reflect bb.fetch2 => bb.fetch migration 2026-09-04 14:28:58 +01:00
lib toaster: Update to django 5.2 2026-09-04 14:46:44 +01:00
packaging-pypi/bitbake-setup pypi: Add packaging documentation for developers 2026-07-16 11:20:20 +01:00
setup-schema bitbake-setup: use bb.fetch for buildtools installer download 2026-07-16 11:20:20 +01:00
vendor Add vendor patches 2026-07-16 11:24:03 +01:00
.b4-config b4-config: Add basic support for b4 contribution workflow 2025-02-06 10:36:47 +00:00
.gitattributes .gitattributes: Add to improve git diff for minified css/js files 2019-03-07 12:18:40 +00:00
.gitignore gitignore: Ignore temporary staging directory 2026-07-16 11:20:20 +01:00
AGENTS.md AGENTS.md: Add file 2026-08-19 14:56:33 +01:00
AUTHORS misc: Update the email address to a working one. 2010-08-07 22:58:47 +08:00
ChangeLog *: Fix typo in documentation 2010-08-03 17:02:43 +02:00
LICENSE bitbake: Add initial pass of SPDX license headers to source code 2019-05-04 10:41:13 +01:00
LICENSE.GPL-2.0-only bitbake: Add initial pass of SPDX license headers to source code 2019-05-04 10:41:13 +01:00
LICENSE.MIT bitbake: Add initial pass of SPDX license headers to source code 2019-05-04 10:41:13 +01:00
MANIFEST.in HEADER: Drop it 2019-05-04 10:41:13 +01:00
pyproject.toml bitbake: Bump to version 2.19.1 2026-09-04 14:28:58 +01:00
README README: Update minimum Python version 2026-06-20 12:29:01 +01:00
SECURITY.md SECURITY.md: add file 2023-10-24 12:49:46 +01:00
toaster-requirements.txt toaster: Update to django 5.2 2026-09-04 14:46:44 +01:00
TODO TODO: Cleanup obsolete info 2025-02-18 23:19:09 +00:00
vendor.txt vendor.txt: Add typing_extensions for bs4 2026-07-16 11:24:03 +01:00

Bitbake
=======

BitBake is a generic task execution engine that allows shell and Python tasks to be run
efficiently and in parallel while working within complex inter-task dependency constraints.
One of BitBake's main users, OpenEmbedded, takes this core and builds embedded Linux software
stacks using a task-oriented approach.

For information about Bitbake, see the OpenEmbedded website:
    https://www.openembedded.org/

Bitbake plain documentation can be found under the doc directory or its integrated
html version at the Yocto Project website:
    https://docs.yoctoproject.org

Bitbake requires Python version 3.9 or newer.

Contributing
------------

Please refer to our contributor guide here: https://docs.yoctoproject.org/contributor-guide/
for full details on how to submit changes.

As a quick guide, patches should be sent to bitbake-devel@lists.openembedded.org
The git command to do that would be:

    git send-email -M -1 --to bitbake-devel@lists.openembedded.org

If you're sending a patch related to the BitBake manual, make sure you copy
the Yocto Project documentation mailing list:

    git send-email -M -1 --to bitbake-devel@lists.openembedded.org --cc docs@lists.yoctoproject.org

Mailing list:

    https://lists.openembedded.org/g/bitbake-devel

Source code:

    https://git.openembedded.org/bitbake/

Testing
-------

Bitbake has a testsuite located in lib/bb/tests/ whichs aim to try and prevent regressions.
You can run this with "bitbake-selftest". In particular the fetcher is well covered since
it has so many corner cases. The datastore has many tests too. Testing with the testsuite is
recommended before submitting patches, particularly to the fetcher and datastore. We also
appreciate new test cases and may require them for more obscure issues.

To run the tests "zstd" and "git" must be installed.

The assumption is made that this testsuite is run from an initialized OpenEmbedded build
environment (i.e. `source oe-init-build-env` is used). If this is not the case, run the
testsuite as follows:

    export PATH=$(pwd)/bin:$PATH
    bin/bitbake-selftest

The testsuite can alternatively be executed using pytest, e.g. obtained from PyPI (in this
case, the PATH is configured automatically):

    pytest