diff options
author | Ronan Le Martret <ronan.lemartret@iot.bzh> | 2017-01-30 18:38:38 +0100 |
---|---|---|
committer | Ronan Le Martret <ronan.lemartret@iot.bzh> | 2017-01-30 18:38:38 +0100 |
commit | 057c65914ce6bd9c4b588d5d21e96d77b0d4e4dc (patch) | |
tree | 9ba5caeeaa35672ef9ed2841de688461e50f4687 | |
parent | e1beb48dbbe59750409a88c134fae39b544a92d1 (diff) |
Add new entry to customize bitbake conf document
* SSTATE_DIR
* DL_DIR
Signed-off-by: Ronan Le Martret <ronan.lemartret@iot.bzh>
-rw-r--r-- | getting-started/customize_bitbake_conf.md | 22 |
1 files changed, 20 insertions, 2 deletions
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 |