Difference between revisions of "Getting started with OE-Classic"

From Openembedded.org
Jump to: navigation, search
(Note for OpenMoko Developers)
m (Reverted edits by 91.142.12.62 (Talk); changed back to last version by 92.237.87.245)
Line 1: Line 1:
ynKwmy sk6skN2aP6Vvq18MdGcl
+
== Note for OpenMoko Developers ==
 +
 
 +
[http://www.openmoko.org/ Openmoko] has its own version of BitBake.  Openmoko provides their [http://wiki.openmoko.org/wiki/MokoMakefile own setup instructions].
  
 
= Introduction =
 
= Introduction =

Revision as of 14:54, 4 February 2009

Note for OpenMoko Developers

Openmoko has its own version of BitBake. Openmoko provides their own setup instructions.

Introduction

This page tells you how to get started with Openembedded, i.e. how to install OE and start building packages. Before you proceed, please look at the important bits of RequiredSoftware that must be installed on your system.

IMPORTANT NOTES: this guide assumes that:

  • the base directory of your Openembedded environment is /stuff/

(As a normal user, you probably want to substitute this with /home/myuser/oe/stuff)

  • you selected the org.openembedded.dev development branch

You do not have to be root to build packages or distributions with Openembedded. It is even recommended to always work as user, not as root.

HOWEVER, when building a distribution, the /dev directory of your resulting filesystem will not be correct unless you are working as root, because the mknod command will be unable to create entries correctly.

org.openembedded.dev is a development branch, therefore your build will be based on the contents of this development branch which may not be what you intended. See DevelopmentBranches for other available branches including versioned branches. You might want to use the stable branch, which is called org.openembedded.stable. One general-purpose distro is Angstrom, well maintained in both stable and development branches. More information about the Angstrom project can be found on Angstrom homepage

Again, for the rest of these notes, replace /stuff/ with the base directory of your Openembedded environment and org.openembedded.dev with the name of the branch that you selected.

Setting up the toolchain and doing a build

Directory Structure

The base directory of your Openembedded environment (/stuff/) is the location where sources will be checked out (or unpacked).

  • You must choose a location with no symlinks above it
  • If you work in a chrooted environment it is highly recommended to 'su - <username>' after you have chrooted. Otherwise compilation may fail because ccache needs a valid $HOME - which is set when using a user account.

To create the directory structure:

$ mkdir -p /stuff/build/conf
$ cd /stuff/

Obtaining BitBake

To start using OE, you must first obtain the build tool it needs: bitbake

It is recommended to run bitbake without installing it, as a sibling directory of openembedded/ and build/ directories. Indeed, as bitbake is written in python it does not need compilation for being used. You'll just have to set the PATH variable so that the BitBake tools are accessible (see Setup the environment section).

Using packages

There is a BitBake package available for more and more distros - see OEandYourDistro.

Using releases

Visit BitBake homepage and download tarball with latest release. For normal usage we suggest using 1.8.x (stable branch) versions. Unpack it to /stuff/bitbake/.

Using Subversion

Go to the base directory of your Openembedded environment and checkout bitbake:

$ cd /stuff/
$ svn co svn://svn.berlios.de/bitbake/branches/bitbake-1.8/ bitbake

NOTE: for proxy handling, see SVN FAQ

Updating bitbake

Bitbake is being revised fairly often. Periodically it's a good idea to check the repository of bitbake stable branches to see if a new stable branch is available or if the current branch has been revised. Compare your existing bitbake directory with the latest bitbake branch in the repository. Your existing bitbake branch and its 'last changed revision' number can be found as follows:

$ cd /stuff/bitbake; svn info

If there is a new stable branch, you will want to move or delete your existing bitbake directory and repeat the process listed above under "To obtain bitbake". If there is no new branch, it is easy to update bitbake:

$ cd /stuff/bitbake; svn update

Obtaining OpenEmbedded using GIT

Note: Once upon a time OpenEmbedded was using Monotone for version control. If you have an OE Monotone repository on your computer, you should replace it with the Git repository.

Note: These are only brief instructions. For a longer description about using Git with OpenEmbedded refer to Git and GitPhraseBook.

The OpenEmbedded project resides in a Git repository. You can find it at git://git.openembedded.net/openembedded

To obtain Openembedded:

  1. Install git
  2. Go to the base directory of your OpenEmbedded environment
$ cd /stuff/
  1. Checkout the repository
$ git clone git://git.openembedded.net/openembedded

or for the firewall challenged try

$ git clone http://repo.or.cz/r/openembedded.git

This is the data you'll be using for all the work.

Updating OpenEmbedded

The .dev branch of OE is updated very frequently (as much as several times an hour). The distro branches are not updated as much but still fairly often. It seems good practice to update your OE tree at least daily. To do this, run

$ git pull

(note: this must be done in the directory created by the checkout of openembedded. On this page, this directory is /stuff/openembedded, but my checkout generated a directory /stuff/openembedded. Check the name of your subdir, and use the name on your machine in the following examples)

Create local configuration

It's now time to create your local configuration. While you could copy the default local.conf.sample like that:

$ cd /stuff/
$ cp openembedded/conf/local.conf.sample build/conf/local.conf
$ vi build/conf/local.conf

It is actually recommended to start smaller and keep local.conf.sample in the background and add entries from there step-by-step as you understand and need them. Please, do not just edit build/conf/local.conf.sample but actually READ it (read it and then edit).

For building a .dev branch, in your local.conf file, you should have at least the following three entries. Example for the Angstrom distribution and the Openmoko gta01 machine:

BBFILES = "/stuff/openembedded/packages/*/*.bb"
DISTRO = "angstrom-2008.1"
MACHINE = "om-gta01"

If you choose to install OE in your home directory, modify local.conf to refer to the OE paths as /home/<username>/ rather than ~/. It does not find the *.bb packages otherwise.

Setup the environment

One of the four command sets below will need to be run every time you open a terminal for development. (You can automate this in ~/.profile, /etc/profile, or perhaps use a script to set the necessary variables for using BitBake.)

If you followed the recommendation above to use an uninstalled BitBake:

$ export BBPATH=/stuff/build:/stuff/openembedded
$ export PATH=/stuff/bitbake/bin:$PATH

If you installed BitBake:

$ export BBPATH=/stuff/build:/stuff/openembedded

Alternative syntax for those using the tcsh shell (e.g FreeBSD):

$ setenv PATH "/stuff/bitbake/bin:"$PATH
$ setenv BBPATH "/stuff/build:/stuff/openembedded:"$BBPATH

Start building

The primary interface to the build system is the bitbake command (see the bitbake users manual). bitbake will download and patch stuff from the network, so it helps if you are on a well connected machine.

Note that you should issue all bitbake commands from inside of the build/ directory, or you should override TMPDIR to point elsewhere (by default it goes to tmp/ relative to the directory you run the tools in).

bitbake might complain that there is a problem with the setting in /proc/sys/vm/mmap_min_addr. Needs to be set to zero. You can do it (as root) by the following:

echo 0 > /proc/sys/vm/mmap_min_addr

(editing the file won't help). Alternatively, some systems provide the sysctl.conf file to set this permanently.

vm.mmap_min_addr=0

Here are some example invocations:

Building a single package (e.g. nano):

$ bitbake nano

Building package sets (e.g. task-base):

$ bitbake task-base

Special note for task-base: you may need additional setup for building this very one task. More details in ZaurusKernels

Building a group of packages and deploying them into a rootfs image:

GPE:

$ bitbake gpe-image

OPIE:

$ bitbake opie-image

(NOTE: kergoth says it will take about 4GB of disk space to build an opie or gpe image for one architecture)

See the /stuff/openembedded/packages/meta/ directory if you're curious about what meta/task and image targets exist.

Building every package in the repository (NOTE: This will take a very long time and needs approx. 35 GB disk space):

$ bitbake world

Building a single package, bypassing the long parse step (and therefore its dependencies--use with care):

$ bitbake -b /stuff/openembedded/packages/blah/blah.bb

See UsefulTargets for a description of some of the more useful meta-packages. You will typically need at least one of the base images (bootstrap-image, opie-image or gpe-image), and if and only if you're building for an OpenZaurus target requiring an installer image (such as C3000), an additional pivotboot-image.

Output of the build process (temporary files, log files and the binaries) all ends up in the tmp directory. Most interesting is probably the tmp/work/ directory. Just have a look around the DirectoryStructure.

Images generated by building package groups like opie-image or pivotboot-image are placed in the tmp/deploy/images/ directory. Individual ipkg packages are put in tmp/deploy/ipk.

Adding Packages

  1. Create bbfile.
  2. Try building it locally.
  3. Fix eventual problems.
  4. Send .bbfile or an OePatch to the openembedded-devel mailing list.

Problems

Try to solve problems first by checking that you have done everything right, that nothing has changed from this description and that you have the latest code (see GitPhraseBook). Look also in the log file (referenced in any error message you will receive). If you still have problems, try checking PossibleFailures and common build errors. Above links are dead, you can try the Category:FAQ. If problems persist, ask on IRC or in the openembedded mailing list.

The Openembedded metadata is changing constantly. This implies several things:

  1. Once you have a "known good" version that works well on your system, keep it! To update, clone a new copy; don't overwrite that working version until it's known to be safe.
  2. To resolve build problems, "git pull" is your good friend. Many times, the issues will already be fixed in the current tree.
  3. Not all metadata updates cause the local caches to update correctly. Sometimes you'll need to remove the ".../tmp" work directory and rebuild from scratch.
  4. Similar issues apply to the package sources you download.

Portability issues

Make sure to set TARGET_OS to something other than linux in local.conf if your host isn't linux.

GNU extensions to tools are often required. Symlink GNU patch, make, and cp (from fileutils), chmod, sed, find, tar, awk into your OE development path.

FreeBSD 4 users: Perl 5.0 is too old. A more recent perl must be available as /usr/bin/perl. Unfortunately just having more recent perl in the path isn't good enough. Some scripts are hard-coded for /usr/bin/perl. You can test for which perl you're using by typing perl -v. see /usr/ports/UPDATING for instructions on updating perl. Don't forget to do a use.perl port as instructed in /usr/ports/UPDATING

FreeBSD users: Set BUILD_OS in local.conf to freebsdN where N is your major version number. At least the cross gcc wants this.

FreeBSD users: The build process of glibc uses a very long command line at some places. Increase ARG_MAX to at least 131072, by editing /usr/sys/sys/syslimits.h and recompile your kernel (and reboot).

Productivity notes

Use the interactive bitbake mode ("bitbake -i") to speed up work when debugging or developing .bb files. Remember to run "parse" at the prompt first. Go!

If you want to save some compile time or are interested in additional tweaks to local.conf take a look at the AdvancedConfiguration page.