diff options
author | Ronan <ronan.lemartret@iot.bzh> | 2017-01-23 15:54:55 +0100 |
---|---|---|
committer | ronan [iot.bzh] <ronan22@users.noreply.github.com> | 2017-01-25 15:28:54 +0100 |
commit | e1beb48dbbe59750409a88c134fae39b544a92d1 (patch) | |
tree | df40932b206984a62762e2a77843b46096d361f4 /getting-started | |
parent | f44001a2478d775588f6881558b71d6a6cf989f4 (diff) |
Add document to customize the AGL build
Signed-off-by: Ronan <ronan.lemartret@iot.bzh>
Diffstat (limited to 'getting-started')
-rw-r--r-- | getting-started/customize_bitbake_conf.md | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/getting-started/customize_bitbake_conf.md b/getting-started/customize_bitbake_conf.md new file mode 100644 index 0000000..3bcfbc0 --- /dev/null +++ b/getting-started/customize_bitbake_conf.md @@ -0,0 +1,30 @@ +# Customize AGL build +To customize the AGL build, you edit local.conf file, located in the build/conf directory. + +``` +edit $AGL_TOP/build/conf/local.conf +``` + +## Buildhistory +The OpenEmbedded build system creates this directory when you enable the build history feature. + +``` +INHERIT += "buildhistory" +BUILDHISTORY_COMMIT = "1" +``` + +For more information please check [Here][buildhistory] + + +## deletion of temporary workspace +Removes work files after the OpenEmbedded build system has finished with them. + +``` +INHERIT += "rm_work" +``` + +For more information please check [Here][rm_work] + + +[buildhistory]: http://www.yoctoproject.org/docs/latest/mega-manual/mega-manual.html#maintaining-build-output-quality +[rm_work]: http://www.yoctoproject.org/docs/latest/mega-manual/mega-manual.html#ref-tasks-rm_work |