diff --git a/documentation/ref-manual/closer-look.xml b/documentation/ref-manual/closer-look.xml index 45dcd9b3cf..4c5308e499 100644 --- a/documentation/ref-manual/closer-look.xml +++ b/documentation/ref-manual/closer-look.xml @@ -254,9 +254,24 @@ When you launch your build with the - bitbake target command, BitBake - sorts out the configurations to ultimately define your build - environment. + bitbake target + command, BitBake sorts out the configurations to ultimately + define your build environment. + It is important to understand that the OpenEmbedded build system + reads the configuration files in a specific order: + site.conf, auto.conf, + and local.conf. + And, the build system applies the normal assignment statement + rules. + Because the files are parsed in a specific order, variable + assignments for the same variable could be affected. + For example, if the auto.conf file and + the local.conf set + variable1 to different values, because + the build system parses local.conf after + auto.conf, + variable1 is assigned the value from + the local.conf file.