diff options
author | 2017-07-11 10:12:26 +0200 | |
---|---|---|
committer | 2017-07-11 10:12:26 +0200 | |
commit | f7196ecbd2f587781539f8dadd3f1c2a77dff9d5 (patch) | |
tree | 19e2ca3da6ac57846b0d24b8959cc43dc57ce5c6 /getting-started/customize_bitbake_conf.md | |
parent | 86fce9c3efcc48b94710e2f56b1c78bdc9b79263 (diff) | |
parent | 12682a6df639e61132fb6b4064edf4b931f31579 (diff) |
Merge branch 'master' into master
Diffstat (limited to 'getting-started/customize_bitbake_conf.md')
-rw-r--r-- | getting-started/customize_bitbake_conf.md | 15 |
1 files changed, 10 insertions, 5 deletions
diff --git a/getting-started/customize_bitbake_conf.md b/getting-started/customize_bitbake_conf.md index dc7dc6b..fa466ca 100644 --- a/getting-started/customize_bitbake_conf.md +++ b/getting-started/customize_bitbake_conf.md @@ -1,14 +1,16 @@ # Customize AGL build + To customize the AGL build, you edit local.conf file, located in the build/conf directory. -``` +```bash edit $AGL_TOP/build/conf/local.conf ``` ## Buildhistory + The OpenEmbedded build system creates this directory when you enable the build history feature. -``` +```bash INHERIT += "buildhistory" BUILDHISTORY_COMMIT = "1" ``` @@ -16,27 +18,30 @@ 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. -``` +```bash INHERIT += "rm_work" ``` For more information please check [Here][rm_work] ## Share sstate cache + The directory for the shared state cache. -``` +```bash 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. -``` +```bash DL_DIR = "${HOME}/workspace_agl/downloads" ``` |