summaryrefslogtreecommitdiffstats
path: root/documentation/yocto-project-qs
diff options
context:
space:
mode:
authorScott Rifenbark <scott.m.rifenbark@intel.com>2011-08-03 13:14:14 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2011-08-15 15:26:58 +0100
commitc9b3c34049d78b2a7998e22b260c10d7b975436c (patch)
tree27eb2ea7eff9c6dba4d3a8659ff39d5530c986d5 /documentation/yocto-project-qs
parent55f384a38f12fc194ac976be0e9db5991338e829 (diff)
downloadpoky-c9b3c34049d78b2a7998e22b260c10d7b975436c.tar.gz
documentation/yocto-project-qs/yocto-project-qs.xml: updated the filesystem
Updated the downloading the filesystem section to have an inclusive list of image profiles and a reference to more information on that. Also included more explanation of the two types of image tarballs. (From yocto-docs rev: 14965cbedd719beb6191771c6dcb92742f4229bf) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'documentation/yocto-project-qs')
-rw-r--r--documentation/yocto-project-qs/yocto-project-qs.xml20
1 files changed, 13 insertions, 7 deletions
diff --git a/documentation/yocto-project-qs/yocto-project-qs.xml b/documentation/yocto-project-qs/yocto-project-qs.xml
index 459d7471ca..35eebbcd8c 100644
--- a/documentation/yocto-project-qs/yocto-project-qs.xml
+++ b/documentation/yocto-project-qs/yocto-project-qs.xml
@@ -502,22 +502,28 @@
502 <section id='downloading-the-filesystem'> 502 <section id='downloading-the-filesystem'>
503 <title>Downloading the Filesystem</title> 503 <title>Downloading the Filesystem</title>
504 <para> 504 <para>
505 The filesystem image has two forms. 505 The filesystem image has two tarball forms: <filename>ext3</filename> and
506 One form is an <filename>ext3</filename> filesystem image. 506 <filename>tar</filename>.
507 The other form is a tarball of the filesystem and is booted using user-space NFS. 507 You must use the <filename>ext3</filename> form when booting an image using the
508 Here are the respective forms: 508 QEMU emulator.
509 The <filename>tar</filename> form can be flattened out in your host development system
510 and used for Yocto Project build purposes.
509 </para> 511 </para>
510 512
511 <literallayout class='monospaced'> 513 <literallayout class='monospaced'>
512 yocto-image-&lt;<emphasis>profile</emphasis>&gt;-qemu&lt;<emphasis>arch</emphasis>&gt;.rootfs.ext3.bz2 514 yocto-image-&lt;<emphasis>profile</emphasis>&gt;-qemu&lt;<emphasis>arch</emphasis>&gt;-&lt;<emphasis>release</emphasis>&gt;.rootfs.ext3.bz2
513 yocto-image-&lt;<emphasis>profile</emphasis>&gt;-qemu&lt;<emphasis>arch</emphasis>&gt;.rootfs.tar.bz2 515 yocto-image-&lt;<emphasis>profile</emphasis>&gt;-qemu&lt;<emphasis>arch</emphasis>&gt;-&lt;<emphasis>release</emphasis>&gt;.rootfs.tar.bz2
514 516
515 Where: 517 Where:
516 &lt;<emphasis>profile</emphasis>&gt; is the filesystem image's profile: 518 &lt;<emphasis>profile</emphasis>&gt; is the filesystem image's profile:
517 sdk, sato, minimal, or lsb. 519 lsb, lsb-dev, lsb-sdk, minimal, minimal-dev, sato, sato-dev, or sato-sdk.
520 For information on these types of image profiles, see
521 <ulink url='http://www.yoctoproject.org/docs/1.1/poky-ref-manual/poky-ref-manual.html#ref-images'>Reference: Images</ulink> in the Yocto Project Reference Manual.
518 522
519 &lt;<emphasis>arch</emphasis>&gt; is a string representing the target architecture: 523 &lt;<emphasis>arch</emphasis>&gt; is a string representing the target architecture:
520 x86, x86-64, ppc, mips, or arm. 524 x86, x86-64, ppc, mips, or arm.
525
526 &lt;<emphasis>release</emphasis>&gt; is the version of Yocto Project.
521 </literallayout> 527 </literallayout>
522 </section> 528 </section>
523 529