Extensible SDK Debugging

From Yocto Project
Jump to navigationJump to search

The extensible SDK is effectively an encapsulated instance of the normal build system. Generally that shouldn't be touched directly, however sometimes you need to debug why it's not doing what you expect it to do, either at install time or runtime.

Accessing the eSDK internals

Run the following commands:

cd /path/to/sdk/install
. ./environment-setup-<tab complete>
. ./layers/<core layer>/oe-init-build-env .

WARNING: don't miss out the " ." at the end of the last command - if you do, it will not work!

Now you can run bitbake as you would normally.