Changes

Basic Software instructions

734 bytes added, 13:49, 28 August 2012
m
Mount a MicroSD card
<section begin=bash />
IGEP Boards are '''compatible with many Linux distributions'''. In this tutorial we are using [http://labs.isee.biz/index.php/IGEP_firmware_Yocto IGEP firmware Yocto], which is the pre-installed software from ISEE.
password: (none: press return)
=== Bash Useful Instructions ===
Once you are logged in IGEP, run the following commands:
You can stop any instruction by pressing CTRL+C
<section end=bash />
=== Mount a MicroSD card ===
Mount MicroSD card from Flash Boot.
 
Log into IGEP and run any of the following commands:
 
* Access to Generic FAT32 microSD:
 
mount -t vfat /dev/mmcblk0 /mnt/tmp/
 
* Access to Generic USB Flash disk:
 
mount -t vfat /dev/sda1 /mnt/tmp/
 
* Safety Remove microSD:
 
umount /mnt/tmp
 
* Access to IGEP demo microSD:
 
mount -t jffs2 /dev/mmcblk0 /mnt/tmp/
 
=== Mount Flash Memory ===
Mount Flash memory from MicroSD Boot. Flash memory has 3 partitions:
*/dev/mtdblock0
*/dev/mtdblock1
*/dev/mtdblock2
Example, mount mtdblock 1 partition at /tmp/temp directory:
<pre>mkdir /tmp/temp
mount -t jffs2 /dev/mtdblock1 /tmp/temp </pre>
4,199
edits