Personal tools

Log in

Changes

From IGEP - ISEE Wiki

Jump to: navigation, search

IGEPv5 Ubuntu Distro

19 bytes added, 17:14, 9 March 2014
no edit summary
Ubuntu 12.04.4 LTS (Hard Float) is the default IGEPv5 base distribution (it's included in IGEPv5 Full and Lite).  We will learn about install, use, generate packages, upgrade ...
= Overview =
What we learn in this chapter? Install, play and fun ...
__TOC__
= Host Enviroment =
== Install Development packages ==
Now is time to install some packages.
=== GCC, G++, libc Cross Compiler ===
You can install the cross compiler if you want to build u-boot, linux kernel or applications using your host PC and compile for IGEPv5 as target.
<pre>sudo apt-get install gcc-arm-linux-gnueabihf g++-arm-linux-gnueabihf libc6-dev-armhf-armel-cross libc6-armel-armhf-cross
</pre>
=== Pbuilder ===
You should say, Y (yes) After build (it can take some time) you will get your rootfs (ARM Hard float) in /var/cache/pbuilder/ directory
Now it time to test your new rootfs
First create a new directory in your home:<pre>$ mkdir -p rootfs/armhf_12.04.4</pre>Now untar the generated file:
<pre>$ cd ~/rootfs/armhf_12.04.4
$ sudo tar xvfz /var/cache/pbuilder/precise-armhf.tgz</pre>Now copy the qemu-arm-static file into usr/bin directory<pre>$ sudo cp /usr/bin/qemu-arm-static usr/bin</pre>And now chroot it as
<pre>$ cd ..
$ sudo chroot armhf_12.04.4</pre>Check if all is ok with:
<pre>$ arch
armv7l</pre>Now you've in a chroot armhf emulation your rootfs ... &nbsp;
= Install Ubuntu 12.04.4 LTS (HF) in the IGEPv5 =
=== Download Ubuntu 12.04.4 LTS (HF) ===
Ubuntu 12.04.4 LTS can be downloaded from our server in this [http://downloads.isee.biz/pub/igepv5_ce/arm-ubuntu/images/ubuntu-12.04.4-LTS-hf location]. This distribution is based on [https://wiki.ubuntu.com/Core Ubuntu Core]<br>
=== Initial Setup ===