Ich habe mir mal ein Skript geschrieben, welches alle benötigten Aktionen durchführt um Software für den Freerunner entwickeln zu können.
#!/bin/bash
# $Revision: 1.1 $
if [ ! -e libtool_1.5.26-1ubuntu1_i386.deb ]
then
wget http://ftp.sjtu.edu.cn/ubuntu/pool/main/libt/libtool/libtool_1.5.26-1ubuntu1_i386.deb
fi
if [ ! -e openmoko-toolchain_0.20080521-ubuntu6_i386.deb ]
then
wget http://smartere.dk/openmoko/openmoko-toolchain_0.20080521-ubuntu6_i386.deb
fi
sudo apt-get install gcc g++ autoconf automake binutils libtool libglib2.0-dev \
ccache libxrender-dev intltool libmokoui2-dev libgconf2-dev mtools fakeroot alien check
sudo apt-get install uboot-mkimage
sudo apt-get remove libtool
sudo dpkg -i libtool_1.5.26-1ubuntu1_i386.deb
sudo apt-get install libdbus-glib-1-dev
sudo dpkg -i openmoko-toolchain_0.20080521-ubuntu6_i386.deb