Difference between revisions of "iMX6 TinyRex Ultra Recovery"

From Voipac Wiki
Jump to navigation Jump to search
 
(4 intermediate revisions by the same user not shown)
Line 1: Line 1:
[[Category:iMX6 TinyRex Development kit]]
+
[[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 ==
Recovery procedure consist from following steps:
+
The recovery procedure consists of following steps:
 
* Creating bootable SD card
 
* Creating bootable SD card
* Reseting module
+
* Resetting module
  
 
== 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>

Latest revision as of 00:27, 24 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