User:Jlamorie: Difference between revisions
Jump to navigation
Jump to search
Line 21: | Line 21: | ||
<code>COMPATIBLE_MACHINE</code> - A machine as described in local.conf and with an appropriate config file in OE/conf/machine. How is this used? | <code>COMPATIBLE_MACHINE</code> - A machine as described in local.conf and with an appropriate config file in OE/conf/machine. How is this used? | ||
<code>SRC_URI</code> - Some documentation available at [http://bitbake.berlios.de/manual/ch03.html]. | <code>SRC_URI</code> - Some documentation available at [http://bitbake.berlios.de/manual/ch03.html|http://bitbake.berlios.de/manual/ch03.html]. |
Revision as of 17:15, 10 December 2008
OpenEmbedded Recipes
This is my log of trying to understand what each element of a .bb file is.
linux recipes
Definitions
SECTION
- Top level package section. base, kernel, libs, x11, x11/utils. This appears to be similar to a bbclass. How is this used?
DESCRIPTION
- Description of package to be built. I assume this shows up in the ipkg meta data.
LICENSE
- GPL or other. How is this used?
DEPENDS
- This package cannot be built/recipe not baked until the packages/recipes listed in DEPENDS have been built/baked.
PR
- How is this used?
DEFAULT_PREFERENCE
- How is this used?
COMPATIBLE_MACHINE
- A machine as described in local.conf and with an appropriate config file in OE/conf/machine. How is this used?
SRC_URI
- Some documentation available at [1].