Difference between revisions of "iMX6 TinyRex Ultra Recovery"
Jump to navigation
Jump to search
| Line 11: | Line 11: | ||
== Creating bootable SD card == | == Creating bootable SD card == | ||
Follow [[iMX6 TinyRex Ultra Creating Bootable microSD Card|these steps]] to prepare the SD card | 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> | ||
Revision as of 07:40, 15 March 2021
Description
Recovery procedure consist from following steps:
- Creating bootable SD card
- Reseting 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