diff options
author | Scott Rifenbark <scott.m.rifenbark@intel.com> | 2011-03-14 14:19:44 -0600 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-03-16 13:38:02 +0000 |
commit | ac2c8848bbefcf7d24192573904baaef87c67382 (patch) | |
tree | 3300084af930dfce3525c5e7d7c997d0afd2b9e8 /documentation/adt-manual/adt-intro.xml | |
parent | 79f160a7ac9426ec9952f7a9c40190da8b95c88d (diff) | |
download | openembedded-core-ac2c8848bbefcf7d24192573904baaef87c67382.tar.gz openembedded-core-ac2c8848bbefcf7d24192573904baaef87c67382.tar.bz2 openembedded-core-ac2c8848bbefcf7d24192573904baaef87c67382.zip |
documentation/adt-manual: New file structure for ADT Manual
I have added a new directory to documentation named adt-manual.
This directory holds a Figures folder, and the 9 files needed
for the ADT manual. The book consists of five chapters:
adt-intro, adt-prepare, adt-package, adt-eclipse, and adt-command.
There is also a adt-manual.xml file called by the Makefile.
There is also a style.css file. And finally, a adt-manual-customization.xsl
file to control numbering.
Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com>
Diffstat (limited to 'documentation/adt-manual/adt-intro.xml')
-rw-r--r-- | documentation/adt-manual/adt-intro.xml | 57 |
1 files changed, 57 insertions, 0 deletions
diff --git a/documentation/adt-manual/adt-intro.xml b/documentation/adt-manual/adt-intro.xml new file mode 100644 index 0000000000..05e5443b85 --- /dev/null +++ b/documentation/adt-manual/adt-intro.xml @@ -0,0 +1,57 @@ +<!DOCTYPE chapter PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN" +"http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd"> + +<chapter id='kernel-doc-intro'> + +<title>Yocto Project Kernel Architecture and Use Manual</title> + +<section id='book-intro'> + <title>Introduction</title> + <para> + The Yocto Project presents the kernel as a fully patched, history-clean git + repository. + The git tree represents the selected features, board support, + and configurations extensively tested by Yocto Project. + The Yocto Project kernel allows the end user to leverage community + best practices to seamlessly manage the development, build and debug cycles. + </para> + <para> + This manual describes the Yocto Project kernel by providing information + on its history, organization, benefits, and use. + The manual consists of two sections: + <itemizedlist> + <listitem><para>Concepts - Describes concepts behind the kernel. + You will understand how the kernel is organized and why it is organized in + the way it is. You will understand the benefits of the kernel's organization + and the mechanisms used to work with the kernel and how to apply it in your + design process.</para></listitem> + <listitem><para>Using the Kernel - Describes best practices and "how-to" information + that lets you put the kernel to practical use. Some examples are "How to Build a + Project Specific Tree", "How to Examine Changes in a Branch", and "Saving Kernel + Modifications."</para></listitem> + </itemizedlist> + </para> + <para> + For more information on the kernel, see the following links: + <itemizedlist> + <listitem><para><ulink url='http://ldn.linuxfoundation.org/book/1-a-guide-kernel-development-process'></ulink></para></listitem> + <listitem><para><ulink url='http://userweb.kernel.org/~akpm/stuff/tpp.txt'></ulink></para></listitem> + <listitem><para><ulink url='http://git.kernel.org/?p=linux/kernel/git/torvalds/linux-2.6.git;a=blob_plain;f=Documentation/HOWTO;hb=HEAD'></ulink></para></listitem> + </itemizedlist> + <para> + You can find more information on Yocto Project by visiting the website at + <ulink url='http://www.yoctoproject.org'></ulink>. + </para> + </para> +</section> + + + + + + + +</chapter> +<!-- +vim: expandtab tw=80 ts=4 +--> |