Difference between revisions of "iMX6 TinyRex Max Creating Bootable microSD Card"
Jump to navigation
Jump to search
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_TinyRex_Development_kit-USBWriter-Target_select. | + | [[image:iMX6_TinyRex_Development_kit-USBWriter-Target_select.png|400px]] |
<br /><br /> | <br /><br /> | ||
Click on Write button and confirm the procedure:<br /> | Click on Write button and confirm the procedure:<br /> | ||
− | [[image:iMX6_TinyRex_Development_kit-USBWriter-Confirm. | + | [[image:iMX6_TinyRex_Development_kit-USBWriter-Confirm.png|400px]]<br /><br /> |
− | [[image:iMX6_TinyRex_Development_kit-USBWriter-Progress. | + | [[image:iMX6_TinyRex_Development_kit-USBWriter-Progress.png|400px]] |
<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_TinyRex_Development_kit-USBWriter-Success. | + | [[image:iMX6_TinyRex_Development_kit-USBWriter-Success.png|400px]] |
== Linux == | == Linux == |
Revision as of 16:16, 31 August 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 TinyRex Max Module.
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:
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_TinyRex_Development_kit/module/software/yocto/binaries/fsl-image-gui-imx6-tinyrexmax-2.3.sdcard.gz
Extracting binary files
gunzip -c fsl-image-gui-imx6-tinyrexmax-2.3.sdcard.gz | sudo dd of=/dev/mmcblk0 conv=sync bs=64K
or
sudo dd if=fsl-image-gui-imx6-tinyrexmax-1.3.sdcard of=/dev/mmcblk0 conv=sync bs=64K