summaryrefslogtreecommitdiffstats
path: root/documentation
diff options
context:
space:
mode:
authorScott Rifenbark <scott.m.rifenbark@intel.com>2012-05-25 16:42:26 -0600
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-05-31 21:22:29 +0100
commit7552ccd06c6327b5f36ee0cceb432946f8e98d3f (patch)
treef7c49842f83c6aea55f2aff891a14145beeef239 /documentation
parente24d5cc2cdcb63ce2c5f721de11266d70f364780 (diff)
downloadpoky-7552ccd06c6327b5f36ee0cceb432946f8e98d3f.tar.gz
documentation/yocto-project-qs/yocto-project-qs.xml: pre-built example fix
The example showing how to use pre-built images, the toolchain, and filesystem was off a bit. I changed some wording to indicate using the .ext3 filetype of the filesystem. Previously it talked about expanding the tarball version but the example has been changed to use .ext3. Also, the environment setup file has been mis-named forever. It should have i586 in it and not i686. And, finally, the image name does not have a release number as part of the name. (From yocto-docs rev: 97ed79993dd3e2eede4807482e15633b66b99f49) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'documentation')
-rw-r--r--documentation/yocto-project-qs/yocto-project-qs.xml10
1 files changed, 6 insertions, 4 deletions
diff --git a/documentation/yocto-project-qs/yocto-project-qs.xml b/documentation/yocto-project-qs/yocto-project-qs.xml
index e00e54005d..89a6cd9cf2 100644
--- a/documentation/yocto-project-qs/yocto-project-qs.xml
+++ b/documentation/yocto-project-qs/yocto-project-qs.xml
@@ -684,11 +684,13 @@
684 <para> 684 <para>
685 Continuing with the example, the following two commands setup the emulation 685 Continuing with the example, the following two commands setup the emulation
686 environment and launch QEMU. 686 environment and launch QEMU.
687 This example assumes the root filesystem tarball has been downloaded and expanded, and 687 This example assumes the root filesystem (<filename>.ext3</filename> file) and
688 that the kernel and filesystem are for a 32-bit target architecture. 688 the pre-built kernel image file both reside in your home directory.
689 The kernel and filesystem are for a 32-bit target architecture.
689 <literallayout class='monospaced'> 690 <literallayout class='monospaced'>
690 $ source &YOCTO_ADTPATH_DIR;/environment-setup-i686-poky-linux 691 $ cd $HOME
691 $ runqemu qemux86 bzImage-qemux86-&DISTRO;.bin \ 692 $ source &YOCTO_ADTPATH_DIR;/environment-setup-i586-poky-linux
693 $ runqemu qemux86 bzImage-qemux86.bin \
692 core-image-sato-qemux86.ext3 694 core-image-sato-qemux86.ext3
693 </literallayout> 695 </literallayout>
694 </para> 696 </para>