ECE497 Angstrom directory layout

From eLinux.org
Jump to: navigation, search


Once you've run bitbake and gotten the Ångström distribution installed on your computer you discover there are lots of files and directories out there. While installing I count'ed some 85,000 files in some 9,100 directories.

This page gives an overview of what's in where.

Tools.svg Give to the community: Help with details
This is my best guess so far. Help me make it more accurate. Hint: Use the tree command to list the directories.

This layout is adapted from the gumstix layout

OpenEmbedded is a flexible, capable build tool. There is, however, a lot to know in order to fully exploit its power. A good way to learn how it works is to explore its directory layout.

oe

After setting up your build environment, your directory structure should look like this:

oe/
|-- angstrom-dev
|-- build
|-- downloads
`-- openembedded
angstrom-dev
This is where the build system keeps its working files and also where it places the output of the build
build
The build directory contains configuration data for the build system. The configuration is split between three files, all of them in build/conf: auto.conf, local.conf, and site.conf.

auto.conf is used primarily to specify what machine configuration the build is targeted toward.

local.conf is used to specify build policy (uclibc vs glibc, debug vs release, etc)

site.conf is used for general configuration (location of source code cache, location of temporary file directory, environment set up, parallel make, etc)

downloads
openembedded
This directory contains a snapshot of the OpenEmbedded development branch. It contains the "recipes" to build many hundreds of software packages.

NOTE: You should never edit files in this directory. You should use the bitbake collection feature and place your overrides in user.collection

angstrom-dev

This is where the build system keeps its working files and also where it places the output of the build. There's a lot going on here, so let's look at the top layer of the directory structure under angstrom-dev:

angstrom-dev/
|-- cache
|-- cross
|-- deploy
|-- pkgdata
|-- staging
|-- stamps
|-- usr
`-- work
cache
This is where bitbake caches information it obtains from parsing all available .bb files. You will normally not need to look in this directory.
cross
This directory contains the cross development tools for generating code for the Beagle (compliers, linkers, etc.)
deploy
This directory contains the final output of the build process: a set of images and ipkg files. The files are organized intuitively:

For uclibc builds, images are under uclib/images, ipkg files are under uclibc/ipk

For glibc builds, images are under glib/images, ipkg files are under glibc/ipk

pkgdata
staging
Header files, libraries, and other items needed by the build system are stored in this directory.
stamps
This directory contains zero length files that are used to track each phase of the build as it is completed. You will normally not need to look in this directory.
usr
work
This appropriately named directory is where the real work gets done! You won't normally need to look here, but knowing about its contents will give you better insight into how OpenEmedded works. It is also *the* place to look when you are trying to figure out why your new recipe isn't quite working as you intended.

work

A subdirectory is created in work for each package that is built. Let's look at the cron package as an example (the following assumes a uclibc build). Since cron is not a machine dependent package (I.e. it will run on any arm based uclibc system) the cron working directory is created in the armv5te-angstrom-linux-uclibcgnueabi/ subdirectory, and with it's version information appended will be named cron-3.0pl1-r8.

There will typically be several subdirectories in each package working directory, let's look at each of them:

cron-3.0pl1
This is where the downloaded source code is expanded and patched. It will typically contain the source code for the package as well as any associated make files and documentation.
install
This is where the build system places the files which will be packaged into ipkg files. There will typically be several subdirectories here, one for each ipkg that the recipe creates.

The contents of each of these subdirectories is a root based tree of files exactly as they are to be installed in the target system. For the cron package you will find etc, usr, and var subdirectories containing all of the cron binaries and configuration files. When debugging a recipe, this is the place to look to verify that the right files are getting installed in the right places.

tmp
This directory contains the scripts used to build the package and also the log files generated during the build process for the package. This is an extremely valuable debugging resource when you need to see exactly what the build system is doing.
image
There is normally no reason to look in this directory. It will contain the directory structure for the package installation, but without the actual files.
rootfs
After an image recipe build this directory will contain the complete root file system for the image. This directory is suitable for nfs mounting.

openembedded

openembedded/
|-- bitbake
|-- classes
|-- conf
|-- contrib
|-- docs
|-- files
|-- recipes
`-- site
bitbake
OpenEmbedded is based upon bitbake, a tool for executing tasks and managing metadata. This directory contains the bitbake tool and its associated configuration files.

Where do these go?

These came from the gumstix site, but I don't know how they map to here.

com.gumstix.collection
This directory contains overrides to the standard OpenEmbedded recipes. This is where all of the gumstix specific customizations reside. Bitbake will give preference to recipes that it finds here over recipes contained in org.openembedded.snapshot.

NOTE: You should never edit files in this directory. You should use the bitbake collection feature and place your overrides in user.collection

user.collection
This directory is yours to use! You should place your custom recipes here and also any overrides to recipes contained in com.gumstix.collection or org.openembedded.snapshot. Bitbake gives highest preference to the recipes in this directory, making it possible for you to override any functionality without having to touch directories under Gumstix source code control.

It is highly recommended that you place this directory under your own source code control.