Difference between revisions of "How to create a SD-card with the latest software image"

From IGEP - ISEE Wiki

Jump to: navigation, search
Line 2: Line 2:
 
There is no guarantee that this will work on other ones.}}  
 
There is no guarantee that this will work on other ones.}}  
  
'''Create a MicroSD Card''' <br> Start session in IGEP SDK Virtual Machine. The first thing you'll do is download the latest firwmare from [http://www.isee.biz/component/zoo/item/igep-firmware-yocto-1-2 ISEE site].  
+
'''Create IGEP Firmware bootable SD-card''' <br> Start session in IGEP SDK Virtual Machine. The first thing you'll do is download the latest firwmare from [http://www.isee.biz/component/zoo/item/igep-firmware-yocto-1-2 ISEE site].  
  
<section begin=IGEPv2 /><section begin=IGEP_COM_MODULE /><section begin=IGEP_COM_PROTON />
+
<br>  
  
 
#Select Products -&gt; Processor Boards  
 
#Select Products -&gt; Processor Boards  
Line 25: Line 25:
 
For example, assuming the SD-card device takes '/dev/sdf' and you have an IGEPv2 board ('igep0020'), type<br>  
 
For example, assuming the SD-card device takes '/dev/sdf' and you have an IGEPv2 board ('igep0020'), type<br>  
 
<pre>./igep-media-create --mmc /dev/sdf --machine igep0020 --image demo-image-sato-igep00x0.tar.bz2</pre>  
 
<pre>./igep-media-create --mmc /dev/sdf --machine igep0020 --image demo-image-sato-igep00x0.tar.bz2</pre>  
This should give you a bootable SD-card. Finally plug the MicroSD card into IGEP Processor Board and power up your board.
+
For example, assuming the SD-card device takes '/dev/sdb' and you have an IGEP COM&nbsp;MODULE ('igep0030') and speed up flash write without verify, type<br>
 +
<pre>./igep-media-create --mmc /dev/sdb --machine igep0030 --image demo-image-sato-igep00x0.tar.bz2 --skip-nandtest</pre>
 +
These methods should give you a bootable SD-card. <br>
 +
 
 
<br>  
 
<br>  
  
 +
'''Booting IGEP device and login/connect methods'''
 +
 +
Insert the bootable SD-card media into the micro-SD card socket of IGEP device and power on it. This should result in a running system with Sato graphical desktop root filesystem built by Yocto.
 +
 +
If you want login in/connect to the system, you have several options: <br>
 +
 +
*'''Serial debug link''', you should just plug serial cable to your computer<br>
 +
*'''Ethernet''', you should assign an IP in the range 192.168.5.[2-254] and connect to target using a SSH client and connecting to 192.168.5.1&nbsp;<br>
 +
*'''Wifi''', connect to IGEP_xx network, a dynamic IP should be assigned in your host and you can sign into the target connecting to 192.168.6.1 <br>
 +
*'''USB ethernet gadget''', connect a IGEP device to USB port of your computer, dynamic IP should be assigned in your host and you can sign into the target connecting to 192.168.7.1 o (if available) Graphical interface on plugged DVI/TFT display and USB Keyboard in IGEP device
 +
 +
The root password is empty, so to log in type ''''root'''' for the user name and hit 'Enter' at the Password prompt: (''empty password'') and you should be in. <br>
  
'''Flash the latest software image'''
+
Then, you could play and fun with IGEP&nbsp;board.
  
Optionally you could flash the latest software image in FLASH [http://labs.isee.biz/index.php/How_to_flash_the_latest_software_image read here]
+
For example, you could flash the latest software image into internal FLASH memory ( [http://labs.isee.biz/index.php/How_to_flash_the_latest_software_image How to flash the latest software image] )
  
 +
<br>
  
<section end=IGEPv2 /><section end=IGEP_COM_MODULE /><section end=IGEP_COM_PROTON />
+
<br>  
  
 
[[Category:Software]] [[Category:Boot_loaders]] [[Category:Software_distributions]] [[Category:Linux_Kernel]]
 
[[Category:Software]] [[Category:Boot_loaders]] [[Category:Software_distributions]] [[Category:Linux_Kernel]]

Revision as of 16:24, 6 June 2013

Information.jpg This How-To was tested IGEP SDK Virtual Machine, but most of the contents are valid also for other GNU/Linux distributions.

There is no guarantee that this will work on other ones.

Create IGEP Firmware bootable SD-card
Start session in IGEP SDK Virtual Machine. The first thing you'll do is download the latest firwmare from ISEE site.


  1. Select Products -> Processor Boards
  2. Click on your processor board product.
  3. Click on Software tab
  4. Click on IGEP Firmware
  5. Select Download icon.

Once the file is downloaded you can create bootable SD-Card, under Linux, untar the IGEP

tar jxf igep_firmware-yocto-*.tar.bz2
cd igep_firmware-yocto-*

Insert a SD-Card media and use the igep-media-create script to copy the firmware to SD-Card media.

./igep-media-create -–mmc <mmc> --image <image file> --machine 

where:
<mmc> - is the SD-Card device of your computer.
<image file> - is the file that contains bootloader, kernel and rootfs image.
<machine> - is the IGEP Processor Board. Available options are:

  • igep0020 - For IGEP v2 Processor Board
  • igep0030 - For IGEP COM MODULE Processor Board
  • igep0032 - For IGEP COM PROTON Processor Board

For example, assuming the SD-card device takes '/dev/sdf' and you have an IGEPv2 board ('igep0020'), type

./igep-media-create --mmc /dev/sdf --machine igep0020 --image demo-image-sato-igep00x0.tar.bz2

For example, assuming the SD-card device takes '/dev/sdb' and you have an IGEP COM MODULE ('igep0030') and speed up flash write without verify, type

./igep-media-create --mmc /dev/sdb --machine igep0030 --image demo-image-sato-igep00x0.tar.bz2 --skip-nandtest

These methods should give you a bootable SD-card.


Booting IGEP device and login/connect methods

Insert the bootable SD-card media into the micro-SD card socket of IGEP device and power on it. This should result in a running system with Sato graphical desktop root filesystem built by Yocto.

If you want login in/connect to the system, you have several options:

  • Serial debug link, you should just plug serial cable to your computer
  • Ethernet, you should assign an IP in the range 192.168.5.[2-254] and connect to target using a SSH client and connecting to 192.168.5.1 
  • Wifi, connect to IGEP_xx network, a dynamic IP should be assigned in your host and you can sign into the target connecting to 192.168.6.1
  • USB ethernet gadget, connect a IGEP device to USB port of your computer, dynamic IP should be assigned in your host and you can sign into the target connecting to 192.168.7.1 o (if available) Graphical interface on plugged DVI/TFT display and USB Keyboard in IGEP device

The root password is empty, so to log in type 'root' for the user name and hit 'Enter' at the Password prompt: (empty password) and you should be in.

Then, you could play and fun with IGEP board.

For example, you could flash the latest software image into internal FLASH memory ( How to flash the latest software image )