RZ-G/RZ-G2 Engicam: Difference between revisions

From Renesas.info
(Created page with "= RZ/G2E i.Core EDIMM SOM by Engicam =")
 
m (typo fix)
(4 intermediate revisions by 2 users not shown)
Line 1: Line 1:
= RZ/G2E i.Core EDIMM SOM by Engicam =
{{DISPLAYTITLE:RZ/G2E i.Core EDIMM SOM by Engicam}}
← [[RZ-G]]
 
= BSP and User Manual =
Engicam will provide the BSP and User Manual to get started with the board. They provide the technology support through their ticket system https://www.engicam.com/support/support-info.
 
1. Create an user account in Engicam website https://www.engicam.com/register
 
2. Once completing the registration, you can login to the system and will have your own user profile
 
3. Click on Support Requests on your User Area and then insert the ticket for your requirement.
 
= Prepare SD card for boot =
 
1. Partition SD card with fdisk command
<pre>
$ fdisk /dev/sda
<presskey>
n
p
1
<return>
<return>
W
</pre>
2. Format SD in ext4
<pre> mkfs.ext4 /dev/sda1 </pre>
3. Mount the SD card and copy kernel, device tree and roofs made by yocto build to SD card
<pre>
$ mount /dev/sda1 /mnt
$ sudo tar -xvf core-image-qt-icorerzg2e.tar.gz -C /mnt
$ cp /Image /mnt/
$ cp /icore-rzg2e.dtb /mnt/
$ umount /mnt/
</pre>

Revision as of 10:47, 7 October 2021

RZ-G

BSP and User Manual

Engicam will provide the BSP and User Manual to get started with the board. They provide the technology support through their ticket system https://www.engicam.com/support/support-info.

1. Create an user account in Engicam website https://www.engicam.com/register

2. Once completing the registration, you can login to the system and will have your own user profile

3. Click on Support Requests on your User Area and then insert the ticket for your requirement.

Prepare SD card for boot

1. Partition SD card with fdisk command

$ fdisk /dev/sda
<presskey>
n
p
1
<return>
<return>
W

2. Format SD in ext4

 mkfs.ext4 /dev/sda1 

3. Mount the SD card and copy kernel, device tree and roofs made by yocto build to SD card

$ mount /dev/sda1 /mnt
$ sudo tar -xvf core-image-qt-icorerzg2e.tar.gz -C /mnt
$ cp /Image /mnt/
$ cp /icore-rzg2e.dtb /mnt/
$ umount /mnt/