Difference between revisions of "Dummies Guide to Building Angstrom Linux for MinnnowBoard"

From eLinux.org
Jump to: navigation, search
m (Important Notes)
m (Procedure)
Line 40: Line 40:
 
  MACHINE=minnow ./oebb.sh bitbake systemd-image
 
  MACHINE=minnow ./oebb.sh bitbake systemd-image
  
6. The resulting image will be located in /setup-scripts/build/tmp-angstrom_v2012_12-eglibc/deploy/images/minnow/
+
6. The resulting image will be located in ~/setup-scripts/build/tmp-angstrom_v2012_12-eglibc/deploy/images/minnow/
  
 
[[Category: MinnowBoard]]
 
[[Category: MinnowBoard]]

Revision as of 16:02, 7 January 2014

Mlogo.png Back to the MinnowBoard home page


Angstrom os logo.png

Summary

This guide explains building the Embedded Linux distribution - Angstrom in a beginner friendly manner.

Important Notes

1. These instructions have been documented using Ubuntu 12.04 LTS as the reference operating system. It is advised that you also have the same setup.

2. Please make sure that you have at least 18GB of free space available as the source code can take up a lot of space.

3. It took 8 hours to build a systemd-image on a dual core I7 machine with 8GB RAM and only two(out of the possible 4) threads used.

Procedure

1. Install the pre-requisites by typing the command below in the terminal:

sudo apt-get install gawk wget git-core diffstat unzip build-essential chrpath libsdl1.2-dev xterm unzip texinfo \
git texi2html subversion ncurses-dev sed cvs git-core coreutils docbook-utils python-pysqlite2 help2man make \
gcc g++ desktop-file-utils chrpath dosfstools kpartx bitbake

2. Change the default shell in Ubuntu from dash to bash typing the command below in the terminal::

sudo dpkg-reconfigure bash

3. Make the necessary changes to the local.conf file as shown below:

# Add this to the bottom:
MACHINE ?= "minnow"
LICENSE_FLAGS_WHITELIST = "license_emgd-driver-bin commercial" 
NOISO = "1"

4. Setup the necessary environment for MinnowBoard by typing the command below in the terminal:

MACHINE=minnow ./oebb.sh config minnow

5. Build the image by typing the following command in the terminal:

MACHINE=minnow ./oebb.sh bitbake systemd-image

6. The resulting image will be located in ~/setup-scripts/build/tmp-angstrom_v2012_12-eglibc/deploy/images/minnow/