From 057c65914ce6bd9c4b588d5d21e96d77b0d4e4dc Mon Sep 17 00:00:00 2001 From: Ronan Le Martret Date: Mon, 30 Jan 2017 18:38:38 +0100 Subject: Add new entry to customize bitbake conf document * SSTATE_DIR * DL_DIR Signed-off-by: Ronan Le Martret --- getting-started/customize_bitbake_conf.md | 22 ++++++++++++++++++++-- 1 file changed, 20 insertions(+), 2 deletions(-) (limited to 'getting-started') diff --git a/getting-started/customize_bitbake_conf.md b/getting-started/customize_bitbake_conf.md index 3bcfbc0..dc7dc6b 100644 --- a/getting-started/customize_bitbake_conf.md +++ b/getting-started/customize_bitbake_conf.md @@ -15,8 +15,7 @@ BUILDHISTORY_COMMIT = "1" For more information please check [Here][buildhistory] - -## deletion of temporary workspace +## Deletion of temporary workspace Removes work files after the OpenEmbedded build system has finished with them. ``` @@ -25,6 +24,25 @@ INHERIT += "rm_work" For more information please check [Here][rm_work] +## Share sstate cache +The directory for the shared state cache. + +``` +SSTATE_DIR = "${HOME}/workspace_agl/sstate-cache" +``` + +For more information please check [Here][share_sstatecache] + +## Share Download directory +The central download directory used by the build process to store downloads. + +``` +DL_DIR = "${HOME}/workspace_agl/downloads" +``` + +For more information please check [Here][share_download] [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 +[share_sstatecache]: https://wiki.yoctoproject.org/wiki/Enable_sstate_cache +[share_download]: http://www.yoctoproject.org/docs/latest/mega-manual/mega-manual.html#var-DL_DIR -- cgit