diff options
author | Scott Rifenbark <scott.m.rifenbark@intel.com> | 2011-08-02 12:58:44 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-08-15 15:26:57 +0100 |
commit | 0fb815e5fd39bde5f4c38285bbc120499e261874 (patch) | |
tree | fc3e6883d4109a2d1a2e29ed8c6c38ab940dbbce | |
parent | e60821b98089e62874f4e54df66f4926964e070e (diff) | |
download | poky-0fb815e5fd39bde5f4c38285bbc120499e261874.tar.gz |
documentation/dev-manual/dev-manual-start.xml: Added section for kernel files.
In the section that shows how to get various groups of files needed for
using YP I added a bulleted item to show how to clone the linux yocto
kernel files. this section will be referenced from the kernel example
flow section and the kernel example appendix.
(From yocto-docs rev: 4126d1456290d677ab8dc1d02d11aac6eb8add46)
Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | documentation/dev-manual/dev-manual-start.xml | 22 |
1 files changed, 20 insertions, 2 deletions
diff --git a/documentation/dev-manual/dev-manual-start.xml b/documentation/dev-manual/dev-manual-start.xml index 9194d76cf9..939ccef590 100644 --- a/documentation/dev-manual/dev-manual-start.xml +++ b/documentation/dev-manual/dev-manual-start.xml | |||
@@ -55,7 +55,8 @@ | |||
55 | See the <ulink url='http://www.yoctoproject.org/docs/yocto-quick-start/yocto-project-qs.html#packages'> | 55 | See the <ulink url='http://www.yoctoproject.org/docs/yocto-quick-start/yocto-project-qs.html#packages'> |
56 | The Packages</ulink> section in the Yocto Project Quick start for the exact package | 56 | The Packages</ulink> section in the Yocto Project Quick start for the exact package |
57 | requirements.</para></listitem> | 57 | requirements.</para></listitem> |
58 | <listitem id='local-yp-release'><para><emphasis>Yocto Project Release:</emphasis> You need a release of the Yocto Project. | 58 | <listitem id='local-yp-release'><para><emphasis>Yocto Project Release:</emphasis> |
59 | You need a release of the Yocto Project. | ||
59 | You can get set up with local Yocto Project files one of two ways depending on whether you | 60 | You can get set up with local Yocto Project files one of two ways depending on whether you |
60 | are going to be contributing back into the Yocto Project source repository or not. | 61 | are going to be contributing back into the Yocto Project source repository or not. |
61 | <note> | 62 | <note> |
@@ -105,7 +106,24 @@ | |||
105 | wiki page</ulink>, which describes how to create both <filename>poky</filename> | 106 | wiki page</ulink>, which describes how to create both <filename>poky</filename> |
106 | and <filename>meta-intel</filename> Git repositories.</para></listitem> | 107 | and <filename>meta-intel</filename> Git repositories.</para></listitem> |
107 | </itemizedlist></para></listitem> | 108 | </itemizedlist></para></listitem> |
108 | <listitem><para><emphasis>Supported Board Support Packages (BSPs):</emphasis> The same considerations | 109 | <listitem id='local-kernel-files'><para><emphasis>Linux Yocto Kernel:</emphasis> |
110 | If you are going to be making modifications to a supported Linux Yocto kernel you | ||
111 | need a local copy of these files. | ||
112 | Creating a local Git repository of the files allows you access to the files locally | ||
113 | and gives you opportunity to contribute changes upstream to the Yocto Project.</para> | ||
114 | <para>As an example, the following transcript shows how to clone the | ||
115 | <filename>linux-yocto-2.6.37</filename> kernel Git repository: | ||
116 | <literallayout class='monospaced'> | ||
117 | $ git clone git://git.yoctoproject.org/linux-yocto-2.6.37 | ||
118 | Initialized empty Git repository in /home/scottrif/linux-yocto-2.6.37/.git/ | ||
119 | remote: Counting objects: 1886034, done. | ||
120 | remote: Compressing objects: 100% (314326/314326), done. | ||
121 | remote: Total 1886034 (delta 1570200), reused 1870337 (delta 1554798) | ||
122 | Receiving objects: 100% (1886034/1886034), 401.51 MiB | 3.99 MiB/s, done. | ||
123 | Resolving deltas: 100% (1570200/1570200), done. | ||
124 | Checking out files: 100% (35188/35188), done. | ||
125 | </literallayout></para></listitem> | ||
126 | <listitem><para><emphasis>Supported Board Support Packages (BSPs):</emphasis> The same considerations | ||
109 | exist for BSPs. | 127 | exist for BSPs. |
110 | You can get set up for BSP development one of two ways: tarball extraction or | 128 | You can get set up for BSP development one of two ways: tarball extraction or |
111 | with a local Git repository. | 129 | with a local Git repository. |