Difference between revisions of "iMX6 TinyRex Ultra Creating Bootable microSD Card"

From Voipac Wiki
Jump to navigation Jump to search
(Created page with "On this page the recommended procedure for creating a micro SD card contained with the required firmware and software is shown here. Following example shows steps used for iMX...")
 
 
(17 intermediate revisions by the same user not shown)
Line 1: Line 1:
On this page the recommended procedure for creating a micro SD card contained with the required firmware and software is shown here. Following example shows steps used for iMX6 TinyRex Max Module.
+
[[Category:iMX6 TinyRex Development Kit]]
 +
[[Category:iMX6 TinyRex Ultra]]
 +
[[Category:iMX6 TinyRex Recovery]]
 +
<!-- -->
 +
<div style="float:right">__TOC__</div>
 +
The recommended procedure for creating a micro SD card contained with the required firmware and software is shown. The following example shows steps used for iMX6 TinyRex Module Ultra.<br /><br />
 
''''' Recommended HW: '''''
 
''''' Recommended HW: '''''
* PC with microSD port
+
* PC with microSD port (or an external SD reader)
 
* microSD card
 
* microSD card
  
 
''''' Recommended SW: '''''
 
''''' Recommended SW: '''''
* [http://downloads.voipac.com/index.php?p=iMX6_TinyRex_Development_kit/Ftools&dl=USBWriter-1.3.zip USBWriter]
+
* [http://downloads.voipac.com/files/iMX6_TinyRex_Development_Kit/tools/USBWriter-1.3.zip USBWriter]
* [http://downloads.voipac.com/index.php?p=iMX6_TinyRex_Development_kit/module/software/yocto/binaries Appropriate Image files]
+
* [http://downloads.voipac.com/files/iMX6_TinyRex_Development_Kit/module/software/yocto/binaries/fsl-image-gui-imx6-tinyrexultra-2.3.sdcard.gz Appropriate Image file]
<br />
+
 
Open USBWriter. Browse source file (appropriate fsl-image). Select target device.<br />
+
== Windows ==
[[image:iMX6_TinyRex_Development_kit-USBWriter-Target_select.jpg|600px]]
+
 
<br />
+
=== Using USBWriter feature ===
Click on Write button and confirm the procedure.<br />
+
Some images need to be unpacked first. GZ files can be opened using Total Commander or by installing [https://www.winzip.com/win/en/tar-gz-file.html TAR-GZ file extension].
[[image:iMX6_TinyRex_Development_kit-USBWriter-Confirm.jpg|600px]]
+
<br /><br />
[[image:iMX6_TinyRex_Development_kit-USBWriter-Progress.jpg|600px]]
+
Open USBWriter. Browse source file (appropriate fsl-image). Select target device:<br />
[[image:iMX6_TinyRex_Development_kit-USBWriter-Success.jpg|600px]]
+
[[image:iMX6_TinyRex_Development_Kit-USBWriter-Target_select.png|400px]]
<br />
+
<br /><br />
Bootable microSD Card is now created and prepared for use.
+
Click on Write button and confirm the procedure:<br />
 +
[[image:iMX6_TinyRex_Development_Kit-USBWriter-Confirm.png|400px]]<br /><br />
 +
[[image:iMX6_TinyRex_Development_Kit-USBWriter-Progress.png|400px]]
 +
<br /><br />
 +
Bootable microSD Card is now created and prepared for use:<br />
 +
[[image:iMX6_TinyRex_Development_Kit-USBWriter-Success.png|400px]]
 +
 
 +
== Linux ==
 +
=== Downloading image ===
 +
<syntaxhighlight lang="bash">
 +
mkdir -pv ~/workdir/imx6/rootfs/yocto
 +
cd ~/workdir/imx6/rootfs/yocto
 +
wget http://downloads.voipac.com/files/iMX6_TinyRex_Development_Kit/module/software/yocto/binaries/fsl-image-gui-imx6-tinyrexultra-2.3.sdcard.gz
 +
</syntaxhighlight>
 +
 
 +
=== Extracting binary files ===
 +
<syntaxhighlight lang="bash">
 +
gunzip -c fsl-image-gui-imx6-tinyrexultra-2.3.sdcard.gz | sudo dd of=/dev/mmcblk0 conv=sync bs=64K
 +
</syntaxhighlight>
 +
or
 +
<syntaxhighlight lang="bash">
 +
sudo dd if=fsl-image-gui-imx6-tinyrexultra-1.3.sdcard of=/dev/mmcblk0 conv=sync bs=64K
 +
</syntaxhighlight>

Latest revision as of 21:54, 26 October 2021

The recommended procedure for creating a micro SD card contained with the required firmware and software is shown. The following example shows steps used for iMX6 TinyRex Module Ultra.

Recommended HW:

  • PC with microSD port (or an external SD reader)
  • microSD card

Recommended SW:

Windows

Using USBWriter feature

Some images need to be unpacked first. GZ files can be opened using Total Commander or by installing TAR-GZ file extension.

Open USBWriter. Browse source file (appropriate fsl-image). Select target device:
iMX6 TinyRex Development Kit-USBWriter-Target select.png

Click on Write button and confirm the procedure:
iMX6 TinyRex Development Kit-USBWriter-Confirm.png

iMX6 TinyRex Development Kit-USBWriter-Progress.png

Bootable microSD Card is now created and prepared for use:
iMX6 TinyRex Development Kit-USBWriter-Success.png

Linux

Downloading image

mkdir -pv ~/workdir/imx6/rootfs/yocto
cd ~/workdir/imx6/rootfs/yocto
wget http://downloads.voipac.com/files/iMX6_TinyRex_Development_Kit/module/software/yocto/binaries/fsl-image-gui-imx6-tinyrexultra-2.3.sdcard.gz

Extracting binary files

gunzip -c fsl-image-gui-imx6-tinyrexultra-2.3.sdcard.gz | sudo dd of=/dev/mmcblk0 conv=sync bs=64K

or

sudo dd if=fsl-image-gui-imx6-tinyrexultra-1.3.sdcard of=/dev/mmcblk0 conv=sync bs=64K