Build images and compile programs with OE 2.2
| This article requires some in-depth experience with Dreambox / Linux and is for advanced users. |
The article describes the configuration of the OE 2.2 development environment under Linux, to build images and programs for a Dreambox. Supported models are:
- DM 500 HD
- DM 500 HD V2
- DM 800 HD SE
- DM 800 HD SE V2
- DM 7020 HD
- DM 7020 HD V2
- DM 7080 HD
- DM 8000 HD PVR
| At this moment the images will only run on the DM 7080 HD, and not on the other listed Dreamboxes! |
Supported operating systems
For the setup of the development environment linux is mandatory. Theoretically it's possible different distros. But only some are able to build OpenDreambox. The following distros can handle this ;)
- Debian 7.6 "Wheezy" [i386, amd64]
- Ubuntu 14.04.1 LTS "Trusty Tahr" [amd64]
- Mint Linux 17 [amd64]
Install dependencies
The setup of the OE 2.2 development environment, and afterwards building the images and packages (deb) require some additional packages. The following sections describes the installation of the dependencies for the different Linux distros:
Ubuntu / Mint
Use the following command to install the dependencies:
sudo apt-get install git build-essential diffstat texi2html texinfo subversion chrpath cvs gawk gettext-lint autopointIf packages are missing, the build of the image will be terminated with an error message. E.g. if wget is not installed:
ERROR: OE-core's config sanity checker detected a potential misconfiguration.
Either fix the cause of this error or at your own risk disable the checker (see sanity.conf).
Following is the list of potential problems / advisories:
Please install following missing utilities: wgetother distros
In Getting started of the Openembedded project the dependencies for other distros are described.
Create the development environment
Open the terminal and change the working directory, to the directory you want to use for the environment. The files of the git repository will be available in the directory opendreambox once the following command is executed.
git clone -b dora git://git.opendreambox.org/git/opendreambox.gitNow you can enter the directory opendreambox with the following command.
cd opendreamboxUpdate the development environment
Use the following command to update the OE 2.2 development environment (Dreambox SDK). Have some patience and wait until the update is completed. At the end you will see [*] The Dreambox SDK is now up-to-date.
make updategit user information
Enter your email address and user name with following commands (if not done before for older OE version, e.g. OE 2.0).
git config --global user.email "you@example.com"git config --global user.name "Your Name"Informations about the development environment
The following command will display useful informations concerning the development environment.
make helpBuild an image
An image can be build for the following Dreamboxes.
- dm500hd, dm500hdv2, dm800se, dm800sev2, dm7020hd, dm7020hdv2, dm7080, dm8000
Start the building process with the following command for the desired Dreambox type (e.g. for the DM 7080 HD). The download and the subsequent build of the image and packages can take a while. So please, be patient. The building process takes, depending on the resources, several hours and for every image approximately 38GB is needed.
make image MACHINE=dm7080Images and packages
The images can be found in the following paths of the opendreambox environment.
/opendreambox/build/dm7080/tmp-xxx/deploy/imagesPakete (deb) sind im folgenden Verzeichnis zu finden.
/opendreambox/build/dm7080/tmp-xxx/deploy/debUpdate the development environment
Use the following command in your opendreambox directory to update the development environment. As a result, the changes of the git will be transfered into your local Dreambox SDK.
make updateBuild an image
Start the building process with the following command for the desired Dreambox type (e.g. for the DM 7080 HD).:
make image MACHINE=dm7080Build packages with BitBake
With the available recipes of the Dreambox SDK it's possible to use the bitbake command to create packages (*.deb). First of all, create the bitbake environment with following commands.
Go to the opendreambox directory before entering the command.
source bitbake.envOpen the build directory of your Dreambox type. For the DM 7080 HD the command is:
cd build/dm7080The build of a package is done like this:
bitbake $Package_nameFor the program atftp the command is:
bitbake atftpAfter the successful build, the package is available in the following directory:
/opendreambox/build/dm7080/tmp-xxx/deploy/debShow available recipes
The following command will display the available recipes for bitbake.
bitbake -sAs the list is quite long, you can limit the result:
bitbake -s | grep $desired_packageIf the recipe for the wanted package is found, the package can be rebuild withe the command "bitbake $package_name". If the package is not found, you should use a personal or modified recipe to build the package. Or you can use the Cross Compiler (cross-compile.env Script), to compile the source code of a program / library.