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

From Voipac Wiki
Jump to navigation Jump to search
 
Line 1: Line 1:
 
[[Category:iMX6 TinyRex Development kit]]
 
[[Category:iMX6 TinyRex Development kit]]
[[Category:iMX6 TinyRex Max]]
+
[[Category:iMX6 TinyRex Pro]]
 
[[Category:iMX6 TinyRex Getting Started]]
 
[[Category:iMX6 TinyRex Getting Started]]
 
[[Category:iMX6 TinyRex Recovery]]
 
[[Category:iMX6 TinyRex 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. Following example shows steps used for iMX6 TinyRex Max 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. Following example shows steps used for iMX6 TinyRex Pro Module.<br /><br />
 
''''' Recommended HW: '''''
 
''''' Recommended HW: '''''
 
* PC with microSD port (or an external SD reader)
 
* PC with microSD port (or an external SD reader)

Revision as of 14:14, 15 March 2021

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 Pro Module.

Recommended HW:

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

Recommended SW:

Windows

Using USBWriter feature

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/index.php?p=iMX6_TinyRex_Development_kit/module/software/yocto/binaries&dl=fsl-image-gui-imx6-tinyrexpro-1.3.sdcard

Extracting binary files

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

or

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