Difference between revisions of "Emotion Engine SDK Image preparation guide"

From eLinux.org
Jump to: navigation, search
(Blanked the page)
(Tag: Blanking)
 
(8 intermediate revisions by the same user not shown)
Line 1: Line 1:
{{TOC right}}
 
  
[[R-Car/|R-Car]]
 
 
== Included contents info ==
 
 
Target board:R-Car Starter Kit Premior/Pro (aka. h3ulcb/m3ulcb)<br>
 
http://elinux.org/R-Car/Boards/H3SK<br>
 
https://elinux.org/R-Car/Boards/M3SK<br>
 
AGL version : EE-5.0.3(Electric eel v5.0.3)<br>
 
Chromium version : m 67.0.3375.0<br>
 
 
== references ==
 
 
*Download and Build AGL Source Code<br>
 
**https://wiki.automotivelinux.org/agl-distro/source-code<br>
 
*Building AGL & Chromium<br>
 
**https://github.com/Igalia/meta-browser/wiki<br>
 
*elinux page for h3ulcb/m3ulcb<br>
 
**http://elinux.org/R-Car/Boards/H3SK<br>
 
**http://elinux.org/R-Car/Boards/M3SK<br>
 
 
== Write the image to a micro SD-card ==
 
 
*Create an EXT4 partition on a micro SD-card using fdisk and set the MBR
 
For example, if the micro SD-card is /dev/sdg:<br>
 
Type the commands where you got “Command(m for help):” as below.
 
 
$ sudo fdisk /dev/sdg
 
  Welcome to fdisk (util-linux 2.27.1).
 
  Changes will remain in memory only, until you decide to write them.
 
  Be careful before using the write command.
 
  Command (m for help): o
 
  Created a new DOS disklabel with disk identifier 0x96e5850d.
 
  Command (m for help): n
 
  Partition type
 
  p primary (0 primary, 0 extended, 4 free)
 
  e extended (container for logical partitions)
 
  Select (default p):
 
  Using default response p.
 
  Partition number (1-4, default 1):
 
  First sector (2048-31291391, default 2048):
 
  Last sector, +sectors or +size{K,M,G,T,P} (2048-31291391, default 31291391):
 
  Created a new partition 1 of type 'Linux' and of size 14,9 GiB.
 
  Command (m for help): w
 
  The partition table has been altered.
 
  Calling ioctl() to
 
 
== Format the micro SD-card ==
 
 
*Initialize the ext4 partition using “mke2fs”; for example, if the micro SD-card is associated with /dev/sdg1:
 
 
*Confirm whether the command is success or not. If you get “done” like following, the command is successful.
 
 
$ sudo mke2fs -t ext4 /dev/sdg1
 
  --snip--
 
  Allocating group tables: done                           
 
  Writing inode tables: done                           
 
  Creating journal (32768 blocks): done
 
  Writing superblocks and filesystem accounting information: done
 

Latest revision as of 18:33, 27 August 2018