diff options
author | Richard Purdie <rpurdie@linux.intel.com> | 2010-10-15 11:55:59 +0100 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2010-10-15 11:55:59 +0100 |
commit | 22083287912ebd552e33b79f7c567bc966376d43 (patch) | |
tree | a16fa012a97a249e25a405d4092b0a89321bfaf6 /documentation/poky-ref-manual/ref-images.xml | |
parent | 13a702e9e572a2dc9f6b52a1531a2237d4d98ff1 (diff) | |
download | openembedded-core-22083287912ebd552e33b79f7c567bc966376d43.tar.gz openembedded-core-22083287912ebd552e33b79f7c567bc966376d43.tar.bz2 openembedded-core-22083287912ebd552e33b79f7c567bc966376d43.zip |
handbook: Move into documentation directory
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
Diffstat (limited to 'documentation/poky-ref-manual/ref-images.xml')
-rw-r--r-- | documentation/poky-ref-manual/ref-images.xml | 72 |
1 files changed, 72 insertions, 0 deletions
diff --git a/documentation/poky-ref-manual/ref-images.xml b/documentation/poky-ref-manual/ref-images.xml new file mode 100644 index 0000000000..03583eb394 --- /dev/null +++ b/documentation/poky-ref-manual/ref-images.xml @@ -0,0 +1,72 @@ +<!DOCTYPE appendix PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN" +"http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd"> + +<appendix id='ref-images'> + <title>Reference: Images</title> + + <para> + Poky has several standard images covering most people's standard needs. A full + list of image targets can be found by looking in the directories + <filename class="directory"> meta/recipes-core/images/</filename>, + <filename class="directory"> meta/packages/images/</filename>, + <filename class="directory"> meta/recipes-sato/images/</filename> and + <filename class="directory"> meta/packages/meta/</filename>. The standard + images are listed below along with details of what they contain: + </para> + + <itemizedlist> + <listitem> + <para> + <emphasis>poky-image-minimal</emphasis> - A small image, just enough + to allow a device to boot + </para> + </listitem> + <listitem> + <para> + <emphasis>poky-image-base</emphasis> - console only image with full + support of target device hardware + </para> + </listitem> + <listitem> + <para> + <emphasis>poky-image-core</emphasis> - X11 image with simple apps like + terminal, editor and file manager + </para> + </listitem> + <listitem> + <para> + <emphasis>poky-image-sato</emphasis> - X11 image with Sato theme and + Pimlico applications. Also contains terminal, editor and file manager. + </para> + </listitem> + <listitem> + <para> + <emphasis>poky-image-sdk</emphasis> - X11 image like poky-image-sato but + also include native toolchain and libraries needed to build applications + on the device itself. Also includes testing and profiling tools and debug + symbols. + </para> + </listitem> + <listitem> + <para> + <emphasis>meta-toolchain</emphasis> - This generates a tarball containing + a standalone toolchain which can be used externally to Poky. It is self + contained and unpacks to the <filename class="directory">/opt/poky</filename> + directory. It also contains a copy of QEMU and the scripts neccessary to run + poky QEMU images. + </para> + </listitem> + <listitem> + <para> + <emphasis>meta-toolchain-sdk</emphasis> - This includes everything in + meta-toolchain but also includes development headers and libraries + forming a complete standalone SDK. See the <link linkend='platdev-appdev-external-sdk'> + Developing using the Poky SDK</link> and <link linkend='platdev-appdev-external-anjuta'> + Developing using the Anjuta Plugin</link> sections for more information. + </para> + </listitem> + </itemizedlist> +</appendix> +<!-- +vim: expandtab tw=80 ts=4 +--> |