IMX8/iMX8MEVK/Yocto/Installing an Image: Difference between revisions

No edit summary
Line 42: Line 42:
In old Yocto versions, the most common image type was sdcard, use '''dd''' with this image type.
In old Yocto versions, the most common image type was sdcard, use '''dd''' with this image type.
<pre>
<pre>
sudo dd if=<image.sdcard> of=/dev/<device> bs=4M && sync  
IMAGE=sdcard.img
DEVICE=/dev/sdb # The device may change in your system
sudo dd if=$IMAGE of=$DEVICE bs=4M && sync  
</pre>
</pre>