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

From RidgeRun Developer Wiki
< IMX8‎ | iMX8MEVK‎ | Yocto
(Created page with "<!-- Please add custom keywords relevant to the page as arguments to the head macro. For example: {{IMX8/Head|Keyword1,Keyword2}} You may leave them unspecified if custom key...")
 
No edit summary
Line 15: Line 15:
</pre>
</pre>


'''image'''
'''Image'''


Each device has numbers at the end, those numbers are related to partitions and are not needed to install the image.
Each device has numbers at the end, those numbers are related to partitions and are not needed to install the image.

Revision as of 18:18, 9 November 2018




  Index  





In order to install an image, you must identify your device ID. Check it as follows:

blkid -o list

Image

Each device has numbers at the end, those numbers are related to partitions and are not needed to install the image. As example, instead of /dev/sdb1 use /dev/sdb.

=Installing Yocto supports several image formats, as example ext4, img, sdcard and wic.

In old Yocto versions, the most common image type was sdcard, use dd with this image type.

sudo dd if=<image.sdcard> of=/dev/<device> bs=4M && sync 

Recent Yocto versions have wic image type as default format, use bmaptool as follows:

sudo bmaptool copy <image.wic> /dev/<device> --nobmap


[[IMX8/<Replace with "previous" page>|Previous: <Replace with "previous" page>]] Index [[IMX8/<Replace with "next" page>|Next: <Replace with "next" page>]]