Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
### AI
* [ Convert existing model to MistySOM](content/ConvertModelToMistySOM.md)
* [ Convert from Tensorflow](https://tvm.apache.org/docs/how_to/compile_models/from_tensorflow.html) (hosted on [tvm.apache.org](https://tvm.apache.org))
* [ Model List](https://github.com/renesas-rz/rzv_drp-ai_tvm/blob/main/docs/Model_List.md)

### Demos
**MistySOM-V2L**
Expand Down
9 changes: 5 additions & 4 deletions content/program_emmc_flash.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

In fdisk, use the commands 'n' to make a new partition, and 'w' to write the partition (will automatically exit fdisk)
In fdisk, you can just press the Enter Key to select the default value (you do not have to type the default value)
```
```console
root@smarc-rzg2l:~# fdisk /dev/mmcblk0
Command (m for help): n
p primary (0 primary, 0 extended, 4 free)
Expand All @@ -24,21 +24,22 @@
```

4. Copy the currently booted root partition to the newly created partition:
```
```console
root@smarc-rzg2l:~# dd bs=4M status=progress if=/dev/mmcblk1p2 of=/dev/mmcblk0p1
root@smarc-rzg2l:~# resize2fs /dev/mmcblk0p1
root@smarc-rzg2l:~# sync
```

5. Reboot and change the boot parameter in u-boot to boot from eMMC
### RZG2L
```
```shell
=> setenv bootargs 'rw rootwait earlycon root=/dev/mmcblk0p1'
=> setenv bootcmd 'ext4load mmc 0:1 0x48080000 boot/Image-smarc-rzg2l.bin; ext4load mmc 0:1 0x48000000 boot/r9a07g044l2-smarc.dtb; booti 0x48080000 - 0x48000000'
=> saveenv
=> boot
```
### RZV2L
```
```shell
=> setenv bootargs 'rw rootwait earlycon root=/dev/mmcblk0p1'
=> setenv bootcmd 'ext4load mmc 0:1 0x48080000 boot/Image; ext4load mmc 0:1 0x48000000 boot/r9a07g054l2-smarc.dtb; booti 0x48080000 - 0x48000000'
=> saveenv
Expand Down