Difference between revisions of "iMX6 TinyRex Ultra Recovery"
Jump to navigation
Jump to search
| (5 intermediate revisions by the same user not shown) | |||
| Line 1: | Line 1: | ||
| − | [[Category:iMX6 TinyRex Development | + | [[Category:iMX6 TinyRex Development Kit]] |
[[Category:iMX6 TinyRex Ultra]] | [[Category:iMX6 TinyRex Ultra]] | ||
[[Category:iMX6 TinyRex Recovery]] | [[Category:iMX6 TinyRex Recovery]] | ||
| Line 5: | Line 5: | ||
<div style="float:right">__TOC__</div> | <div style="float:right">__TOC__</div> | ||
== Description == | == Description == | ||
| − | + | The recovery procedure consists of following steps: | |
* Creating bootable SD card | * Creating bootable SD card | ||
| − | * | + | * Resetting module |
== Creating bootable SD card == | == Creating bootable SD card == | ||
| − | Follow [[iMX6 TinyRex Ultra Creating Bootable | + | Follow [[iMX6 TinyRex Ultra Creating Bootable microSD Card|these steps]] to prepare the SD card |
| + | |||
| + | == Configuration == | ||
| + | === Updating U-Boot === | ||
| + | <syntaxhighlight lang="bash"> | ||
| + | setenv ipaddr 192.168.0.150 | ||
| + | setenv serverip 192.168.0.1 | ||
| + | |||
| + | run update_uboot | ||
| + | </syntaxhighlight> | ||
| + | |||
| + | === Updating Device Tree === | ||
| + | <syntaxhighlight lang="bash"> | ||
| + | setenv ipaddr 192.168.0.150 | ||
| + | setenv serverip 192.168.0.1 | ||
| + | |||
| + | run update_fdt | ||
| + | </syntaxhighlight> | ||
| + | |||
| + | === Updating Kernel === | ||
| + | <syntaxhighlight lang="bash"> | ||
| + | setenv ipaddr 192.168.0.150 | ||
| + | setenv serverip 192.168.0.1 | ||
| + | |||
| + | run update_kernel | ||
| + | </syntaxhighlight> | ||
Latest revision as of 23:27, 23 October 2021
Description
The recovery procedure consists of following steps:
- Creating bootable SD card
- Resetting module
Creating bootable SD card
Follow these steps to prepare the SD card
Configuration
Updating U-Boot
setenv ipaddr 192.168.0.150 setenv serverip 192.168.0.1 run update_uboot
Updating Device Tree
setenv ipaddr 192.168.0.150 setenv serverip 192.168.0.1 run update_fdt
Updating Kernel
setenv ipaddr 192.168.0.150 setenv serverip 192.168.0.1 run update_kernel