blob: 3bcfbc06d59dbca5c30630e6462d0ef210ff7ca8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
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
|