-
Notifications
You must be signed in to change notification settings - Fork 1
02. How To Create a Bootable SD card
vraevsky edited this page Mar 12, 2018
·
2 revisions
This page explains how to deploy CL-SOM-iMX8 Yocto SD card images.
The instructions below assume that the SD card device file is
/dev/sdg
Download pre-built Yocto image:
Issue the following command in order to flash the downloaded image:
unzip -p pre-built-yocto-image.zip | sudo dd of=/dev/sdg
xz -dc pre-built-yocto-image.xz | sudo dd of=/dev/sdg
Issue one of these commands depends on a created image format:
xz -dc tmp/deploy/images/${MACHINE}/${IMAGE}-${MACHINE}.sdcard.xz | sudo dd of=/dev/sdg
bzip2 -dc tmp/deploy/images/${MACHINE}/${IMAGE}-${MACHINE}.sdcard.bz2 | sudo dd of=/dev/sdg
sudo dd if=tmp/deploy/images/${MACHINE}/${IMAGE}-${MACHINE}.sdcard of=/dev/sdg
Proceed to Boot from SD card