When you are debugging a recipe that you previously created using
devtool add
or whose source you are modifying
by using the devtool modify
command, after
the first run of devtool build
, you will
find some symbolic links created within the source tree:
oe-logs
, which points to the directory in
which log files and run scripts for each build step are created
and oe-workdir
, which points to the temporary
work area for the recipe.
You can use these links to get more information on what is
happening at each build step.
These locations under oe-workdir
are
particularly useful:
image/
:
Contains all of the files installed at the
do_install
stage.
Within a recipe, this directory is referred to by the
expression
${
D
}
.
sysroot-destdir/
:
Contains a subset of files installed within
do_install
that have been put into the
shared sysroot.
For more information, see the
"Sharing Files Between Recipes"
section.
packages-split/
:
Contains subdirectories for each package produced by the
recipe.
For more information, see the
"Packaging" section.