Personal tools

Log in

Changes

From IGEP - ISEE Wiki

Jump to: navigation, search

IGEPv5 Ubuntu Distro

1,671 bytes added, 19:33, 17 March 2014
Install your image in the eMMC flash
== Install your image in the eMMC flash ==
Comming soon First you need prepare your disk, check previous point.
Ubuntu 12.04.4 LTS (with ISEE modifications) can be downloaded from our server at this [http://downloads.isee.biz/pub/igepv5_ce/releases/ location]&nbsp; all support is based on this distribution.<br> '''The changelog is located inside the /root directory<br> '''User '''root '''password''': letmein<br> '''User '''igep '''password''': igep'''
Mount your eMMC in your IGEPv5 after mount the disk it should show you two partitions, the first one boot when we will copy the MLO and u-boot.img and the second one where we uncompress the downloaded file.
 
You can see the eMMC disk as MMC disk, take a look with the names just if you've the microsd plugged ...
 
=== Mount the eMMC partitions ===
Use the command mount if automount is not enabled as
<pre>mount /dev/mmcblk0p1 /mnt/p1
 
mount /dev/mmcblk0p2 /mnt/p2
</pre>
Copy MLO and u-boot.img (both files can be downloaded reside inside the package u-boot-xxxxxxx-omap5-isee.tar.bz2) inside /mnt/p1
<pre>cp MLO u-boot.img /mnt/p1
</pre>
go to /mnt/p2
 
Now uncompress the rootfs (downloaded file) <span style="color: rgb(255, 0, 0);">as root</span>
<pre>cd /mnt/p2
 
sudo tar xvfj ubuntu-core-12.04.4-isee-XXXXXXXXXXX-armhf.tar.bz2 (where xxxxxxx is the release name)
</pre>
Sync disk
<pre>$ sync
</pre>
Unmount the disks
<pre>umount /mnt/p1
 
umount /mnt/p2
</pre>
And finally eject the disk.
 
If automount is enabled the partitions will be accessed on:
 
/media/&lt;your user&gt;/boot
 
and
 
/media/&lt;your user/rootfs
 
use both directories for copy the files in this case you don't need create the directories, you directly can copy and uncompress the file there.
= References =