Difference between revisions of "iMX6 Rex Ultra Creating Bootable microSD Card"Voipac webshop

From Voipac Wiki
Jump to navigation Jump to search
 
(2 intermediate revisions by the same user not shown)
Line 1: Line 1:
[[Category:iMX6 Rex Development kit]]
+
[[Category:iMX6 Rex Development Kit]]
 
[[Category:iMX6 Rex Ultra]]
 
[[Category:iMX6 Rex Ultra]]
 
[[Category:iMX6 Rex Recovery]]
 
[[Category:iMX6 Rex Recovery]]
 
<!-- -->
 
<!-- -->
 
<div style="float:right">__TOC__</div>
 
<div style="float:right">__TOC__</div>
On this page the recommended procedure for creating a micro SD card contained with the required firmware and software is shown here. The following example shows steps used for iMX6 Rex Ultra Module.<br /><br />
+
On this page the recommended procedure for creating a micro SD card contained with the required firmware and software is shown here. The following example shows steps used for iMX6 Rex Module Ultra.<br /><br />
 
''''' Recommended HW: '''''
 
''''' Recommended HW: '''''
 
* PC with microSD port (or an external SD reader)
 
* PC with microSD port (or an external SD reader)
Line 10: Line 10:
  
 
''''' Recommended SW: '''''
 
''''' Recommended SW: '''''
* [http://downloads.voipac.com/files/iMX6_Rex_Development_kit/tools/USBWriter-1.3.zip USBWriter]
+
* [http://downloads.voipac.com/files/iMX6_Rex_Development_Kit/tools/USBWriter-1.3.zip USBWriter]
* [http://downloads.voipac.com/files/iMX6_Rex_Development_kit/module/software/yocto/binaries/fsl-image-gui-imx6-rexultra-2.4.sdcard.gz Appropriate Image file]
+
* [http://downloads.voipac.com/files/iMX6_Rex_Development_Kit/module/software/yocto/binaries/fsl-image-gui-imx6-rexultra-2.4.sdcard.gz Appropriate Image file]
  
 
== Windows ==
 
== Windows ==
Line 19: Line 19:
 
<br /><br />
 
<br /><br />
 
Open USBWriter. Browse source file (appropriate fsl-image). Select target device:<br />
 
Open USBWriter. Browse source file (appropriate fsl-image). Select target device:<br />
[[image:iMX6_Rex_Development_kit-USBWriter-Target_select.jpg|400px]]
+
[[image:iMX6_Rex_Development_Kit-USBWriter-Target_select.png|430px]]
 
<br /><br />
 
<br /><br />
 
Click on Write button and confirm the procedure:<br />
 
Click on Write button and confirm the procedure:<br />
[[image:iMX6_Rex_Development_kit-USBWriter-Confirm.jpg|400px]]<br /><br />
+
[[image:iMX6_Rex_Development_Kit-USBWriter-Confirm.png|430px]]<br /><br />
[[image:iMX6_Rex_Development_kit-USBWriter-Progress.jpg|400px]]
+
[[image:iMX6_Rex_Development_Kit-USBWriter-Progress.png|430px]]
 
<br /><br />
 
<br /><br />
 
Bootable microSD Card is now created and prepared for use:<br />
 
Bootable microSD Card is now created and prepared for use:<br />
[[image:iMX6_Rex_Development_kit-USBWriter-Success.jpg|400px]]
+
[[image:iMX6_Rex_Development_Kit-USBWriter-Success.png|430px]]
  
 
== Linux ==
 
== Linux ==
Line 33: Line 33:
 
mkdir -pv ~/workdir/imx6/rootfs/yocto
 
mkdir -pv ~/workdir/imx6/rootfs/yocto
 
cd ~/workdir/imx6/rootfs/yocto
 
cd ~/workdir/imx6/rootfs/yocto
wget http://downloads.voipac.com/files/iMX6_Rex_Development_kit/module/software/yocto/binaries/fsl-image-gui-imx6-rexultra-2.4.sdcard.gz
+
wget http://downloads.voipac.com/files/iMX6_Rex_Development_Kit/module/software/yocto/binaries/fsl-image-gui-imx6-rexultra-2.4.sdcard.gz
 
</syntaxhighlight>
 
</syntaxhighlight>
  

Latest revision as of 23:41, 26 October 2021

On this page the recommended procedure for creating a micro SD card contained with the required firmware and software is shown here. The following example shows steps used for iMX6 Rex 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 Rex Development Kit-USBWriter-Target select.png

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

iMX6 Rex Development Kit-USBWriter-Progress.png

Bootable microSD Card is now created and prepared for use:
iMX6 Rex 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_Rex_Development_Kit/module/software/yocto/binaries/fsl-image-gui-imx6-rexultra-2.4.sdcard.gz

Extracting binary files

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

or

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