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

From Renesas.info
No edit summary
No edit summary
Line 10: Line 10:


3. Click on Support Requests on your User Area and then insert the ticket for your requirement.
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 17:49, 10 September 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 Engigam 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/