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

From Voipac Wiki
Jump to navigation Jump to search
Line 39: Line 39:
 
=== Extracting binary files ===
 
=== Extracting binary files ===
 
<syntaxhighlight lang="bash">
 
<syntaxhighlight lang="bash">
gunzip -c fsl-image-gui-imx6-tinyrexultra-2.3.sdcard.gz | sudo dd of=/dev/mmcblk0 conv=sync bs=64K
+
gunzip -c fsl-image-gui-imx6-openrexultra-2.4.sdcard.gz | sudo dd of=/dev/mmcblk0 conv=sync bs=64K
 
</syntaxhighlight>
 
</syntaxhighlight>

Revision as of 09:00, 27 March 2021

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 OpenRex SBC in Ultra configuration.

Recommended HW:

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

Recommended SW:

Windows

Using USBWriter feature

Unpack the downloaded package. 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:
400px

Click on Write button and confirm the procedure:
400px

400px

Bootable microSD Card is now created and prepared for use:
400px

Linux

Downloading image

mkdir -pv ~/workdir/imx6/rootfs/yocto
cd ~/workdir/imx6/rootfs/yocto
wget http://downloads.voipac.com/files/iMX6_OpenRex_SBC/software/yocto/binaries/fsl-image-gui-imx6-openrexultra-2.4.sdcard.gz

Extracting binary files

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