summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--README16
1 files changed, 14 insertions, 2 deletions
diff --git a/README b/README
index 87e7de3f..b6278770 100644
--- a/README
+++ b/README
@@ -165,9 +165,21 @@ The BSP /binary directory or build contains bootable live images,
165which can be used to directly boot Yocto off of a USB flash drive. 165which can be used to directly boot Yocto off of a USB flash drive.
166 166
167Under Linux, insert a USB flash drive. Assuming the USB flash drive 167Under Linux, insert a USB flash drive. Assuming the USB flash drive
168takes device /dev/sdf, use dd to copy the image to it. For example: 168takes device /dev/sdf, use dd to copy the image to it. Before the image
169can be burned onto a USB drive, it should be un-mounted. Some Linux distros
170may automatically mount a USB drive when it is plugged in. Using USB device
171/dev/sdf as an example, find all mounted partitions:
169 172
170 $ dd if=core-image-sato-intel-corei7-64.wic of=/dev/sdf 173 $ mount | grep sdf
174
175and un-mount those that are mounted, for example:
176
177 $ umount /dev/sdf1
178 $ umount /dev/sdf2
179
180Now burn the image onto the USB drive:
181
182 $ sudo dd if=core-image-sato-intel-corei7-64.wic of=/dev/sdf status=progress
171 $ sync 183 $ sync
172 $ eject /dev/sdf 184 $ eject /dev/sdf
173 185