From e1beb48dbbe59750409a88c134fae39b544a92d1 Mon Sep 17 00:00:00 2001 From: Ronan Date: Mon, 23 Jan 2017 15:54:55 +0100 Subject: Add document to customize the AGL build Signed-off-by: Ronan --- getting-started/customize_bitbake_conf.md | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 getting-started/customize_bitbake_conf.md 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 -- cgit