Skip to content

Commit

Permalink
document configuration files
Browse files Browse the repository at this point in the history
  • Loading branch information
cbrake authored and kraj committed Oct 22, 2018
1 parent cacbe96 commit e252522
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 0 deletions.
1 change: 1 addition & 0 deletions docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ included for some of them below.
OpenEmbedded supports a wide range of technology choices. Some of these are documented
below.

- [Configuration Files](conf-files.md)
- [libc/init system](libc-init.md)

## Design Choices
Expand Down
24 changes: 24 additions & 0 deletions docs/conf-files.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# Configuration Files

[up](README.md)

OpenEmbedded is configured through "conf" files. These exist at various
[places](https://www.yoctoproject.org/docs/2.5.1/mega-manual/mega-manual.html#user-configuration)
in the sources. At the top level of the project are several files that
contain high level, or build specific configuration options. For the Yoe
project, these files include:

- **conf/auto.conf**: This file is automatically generated by the the build system
and should not be modified.
- [**conf/site.conf**](../conf/site.conf): This file includes Yoe defaults and
project specific changes that you want to store in git.
This [file](../conf/site.conf.sample) includes samples of things you might want to add.
- **conf/local.conf**: This file includes changes that are specified to a user to build
machine, and are not checked into git. This [file](../conf/local.conf.sample) includes
samples of things you might want to add.

The above configuration files are included into the build by the
[bitbake.conf](https://github.com/YoeDistro/openembedded-core/blob/master/meta/conf/bitbake.conf#L744) file in the OpenEmbedded Core layer.

For a full list of variables available in the OpenEmbedded build system, see the
[Variables Glossary](https://www.yoctoproject.org/docs/2.5.1/mega-manual/mega-manual.html#ref-variables-glos).

0 comments on commit e252522

Please sign in to comment.