maemo SDK+ Installation Instructions
Release Information
Project: maemo SDK+ Version: BETA-2 Baseline: None. This SDK is baseline neutral. Date: 2008-09-29
This document explains how to install and set up the maemo SDK+ development environment on your computer. This document is targeted for maemo application developers.
This document covers the following steps:
1. Understand 2. Install maemo SDK+ build environment 3. Setup maemo development targets 4. Test maemo SDK+
1. UNDERSTAND
The maemo SDK+ build environment is designed to use scratchbox version 2. This is installed separately from earlier versions of scratchbox. Also targets' files and configurations are stored elsewhere. Therefore the maemo SDK+ can coexist with an existing maemo SDK environment, such as scratchbox 1.0.8 'apophis' with maemo 4.1 'diablo', and these environments will not conflict.
IMPORTANT: There is no need to change or remove your existing scratchbox and maemo SDK environments.
The maemo SDK+ in itself does not contain any rootstraps. The same rootstraps are used than in maemo 'scirocco', maemo 'bora' and maemo 'chinook' releases.
This BETA-2 version of Maemo SDK+ has been tested on Ubuntu Hardy running on 32bit i386 architecture. It is recommended to use Ubunty Hardy Server but maemo SDK+ should work also with Debian unstable and testing.
2. INSTALL MAEMO SDK+ BUILD ENVIRONMENT
The installation process requires networking access. Please, set up proxy settings first if your network access requires it.
In order to install maemo SDK+, set up the following entry to your /etc/apt/sources.list file on your Debian host. This will add the maemo-sdk repository.
deb http://maemo-sdk.garage.maemo.org/download/host ubuntu-hardy free
Next, run the command 'apt-get update' using sudo to update available packages list:
[Host] $ sudo apt-get update
Now install the packages by running 'apt-get install maemo-sdk' using sudo. This will install the requisite packages:
[Host] $ sudo apt-get install maemo-sdk ...
The following packages will be installed:
- maemo-sdk 0.9.10 * metapackage with core utilities - maemo-libtool 1.5.26 * libtool source which is compiled with target setup - sbrsh 7.6maemo1 * run binaries on target device with automated mounting - sb2-qemu-arm 0.9.1-4 * Qemu ARM CPU emulator (with some patches) - scratchbox2 1.99.0.25-lta32 * cross compilation environment
3. SETUP MAEMO BUILD TOOLS
3.1 Build tools Distribution
It is recommended that all maemo software should be compiled using Debian/Etch tool set. maemo SDK+ provides a command sudo maemo-tools install which will set up these Debian/Etch tools under /opt/maemo/dists directory. They will not interfere with tools already installed to your host, or, tools you will later install to your host. By providing an isolated set of tools we just veryfy that we can have uniform tool set regardless of the host environment.
You can later extend the build tool set with sudo maemo-tools get [name of the tool package] command.
Please, note that this command will take some time to complete. In order to speed up the download you might want to add --mirror url option between maemo-tools and install where the url is the Debian mirror nearest to you. The list of Debian mirrors can be found here.
sudo maemo-tools install etch
3.2 Cross-compiler installation
You need a cross-compiler if you want to build software for maemo devices. There exists currently two versions of cross-compilers 2005q3 and 2007q3. At the moment 2005q3 is recommended. In order to install gcc 2005q3 just type:
sudo maemo-tools install-gcc 2005q3
Again, please, note that the cross-compiler is a large package and it might take some time to download.
4. SETUP MAEMO DEVELOPMENT TARGETS
A rootstrap provides header files and libraries that match one or many maemo based product software images. These are required to build software that is compatible with a specific maemo based device, such as Nokia N800 or Nokia N810. Development targets are user specific.
The maemo SDK+ provides just the build environment and the tools to setup the relevant maemo development targets.
Use the rootstrap and development target that correspond to the operating system on your target Internet Tablet device. Currently the following development targets are available:
- diablo41_armel * maemo 4.1 'diablo' SDK for OS2008 - chinook40_armel * maemo 4.0 'chinook' SDK for OS2008 - bora31_armel * maemo 3.1 'bora' SDK for OS2007 - bora30_armel * maemo 3.0 'bora' SDK for OS2007 - scirocco22_armel * maemo 2.2 'scirocco' SDK for OS2006 - mistral20_armel * maemo 2.0 'mistral' SDK for OS2006
When started the maemo-rootstrap tool does not download the latest rootstrap index file from the server unless --reload option is given. This allows reinstalling rootstraps from cache offline. To update the rootstrap list, please, use it.
The maemo SDK+ itself does not contain any rootstraps. The same rootstraps are used than in releases maemo 'scirocco', maemo 'bora' and maemo 'chinook'.
4.1 Installing the latest maemo 4.1 'diablo' rootstrap
To develop for the current maemo 4.1 'diablo' (SDK for OS2008) you will need to install diablo environment with armel CPU emulation. Run the following command to setup maemo environment for the current user:
[Host] $ maemo-rootstrap install diablo41_armel
This will download the rootstrap, setup the development target and extract the rootstrap. The development target root will be located under the following directory:
~/.maemo-sdk/rootstraps/armel/diablo41_armel
You can now start development for maemo 4.1 'diablo'.
4.2 Installing the latest maemo 4.0 'chinook' rootstrap
To develop for an earlier maemo 4.0 'chinook' you will need to install chinook environment with armel CPU emulation. Run the following command to setup maemo environment for the current user:
[Host] $ maemo-rootstrap install chinook40_armel
4.3 Installing all rootstraps
You may install all the available targets with the following command:
[Host] $ maemo-rootstrap --reload install all
4.4 Using the menu interface in maemo-rootstrap
The maemo-rootstap manager can be used without arguments as well which gives you a menu based interface. Run the following command as user to setup development target:
[Host] $ maemo-rootstrap
Select any development target listed in the menu to install it. Once you have installed the rootstraps that correspond to the operating system on your target Tablet device you are ready to start using the newly installed maemo SDK+.
Please, read the maemo SDK User Guide for more details.
4.5 Installing binary-only packages
The maemo-rootstap manager can install the Nokia binary-only packages as well. Run the following command as user to setup the binary packages for diablo41_armel roostrap:
[Host] $ maemo-rootstrap bin-install diablo41_armel
5. TEST MAEMO-SDK+
After you have installed the SDK you can try a small test compilation with maemopad. In this example we are using maemo 4.1 'diablo' rootstraps.
Make sure that you have installed the Diablo armel rootstrap and using diablo41_armel as the default target. After that go to your normal linux home directory and run the following commands:
[Host] $ mkdir -p ~/src/mytest [Host] $ cd ~/src/mytest [Host] $ sb2 apt-get update [Host] $ sb2 apt-get source maemopad [Host] $ cd maemopad-2.4 [Host] $ sb2 dpkg-buildpackage -rfakeroot -d -b .... # compilation and package building should start normally now. # if configure fails please check that you have installed the right tools to your host
You should now have the maemopad .deb binary package in parent directory:
[Host] $ ls -lt .. total 412 -rw-r--r-- 1 you you 512 2007-12-18 14:13 maemopad_2.4_armel.changes -rw-r--r-- 1 you you 18318 2007-12-18 14:13 maemopad_2.4_armel.deb drwxr-xr-x 6 you you 4096 2007-12-18 14:13 maemopad-2.4 -rw-r--r-- 1 you you 476 2007-11-29 18:14 maemopad_2.4.dsc -rw-r--r-- 1 you you 383834 2007-11-29 18:14 maemopad_2.4.tar.gz
You can now try the newly compiled maemopad in the Internet Tablet. Just
copy the maemopad_2.4_armel.deb
file to the device and install it
using the Application Manager.
On the other hand, if you want to install the package into the diablo41 rootstrap just go to the parent directory (note that sb2 ../maemopad_2.4_armel.deb does not work) and type the following.
[Host] $ fakeroot sb2 -e dpkg -i maemopad_2.4_armel.deb
You might also want to play with the maemo SDK+ runtime emulation. Just start it by typing:
[Host] $ maemo-runtime start diablo41_armel
When the start up procedure is complete you are ready to launch the maemopad application on your emulated runtime.
After installing the maemo SDK+ please also read the maemo SDK+ User Guide.
Happy Hacking !