diff options
-rw-r--r-- | documentation/kernel-dev/kernel-dev-maint-appx.xml | 218 | ||||
-rw-r--r-- | documentation/kernel-dev/kernel-dev.xml | 2 |
2 files changed, 220 insertions, 0 deletions
diff --git a/documentation/kernel-dev/kernel-dev-maint-appx.xml b/documentation/kernel-dev/kernel-dev-maint-appx.xml new file mode 100644 index 0000000000..17a409e7ea --- /dev/null +++ b/documentation/kernel-dev/kernel-dev-maint-appx.xml | |||
@@ -0,0 +1,218 @@ | |||
1 | <!DOCTYPE chapter PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN" | ||
2 | "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd" | ||
3 | [<!ENTITY % poky SYSTEM "../poky.ent"> %poky; ] > | ||
4 | |||
5 | <appendix id='kernel-dev-maint-appx'> | ||
6 | <title>Kernel Maintenance</title> | ||
7 | |||
8 | <section id='tree-construction'> | ||
9 | <title>Tree Construction</title> | ||
10 | <para> | ||
11 | This section describes construction of the Yocto Project kernel source repositories | ||
12 | as accomplished by the Yocto Project team to create kernel repositories. | ||
13 | These kernel repositories are found under the heading "Yocto Linux Kernel" at | ||
14 | <ulink url='&YOCTO_GIT_URL;/cgit.cgi'>&YOCTO_GIT_URL;/cgit.cgi</ulink> | ||
15 | and can be shipped as part of a Yocto Project release. | ||
16 | The team creates these repositories by | ||
17 | compiling and executing the set of feature descriptions for every BSP/feature | ||
18 | in the product. | ||
19 | Those feature descriptions list all necessary patches, | ||
20 | configuration, branching, tagging and feature divisions found in a kernel. | ||
21 | Thus, the Yocto Project kernel repository (or tree) is built. | ||
22 | </para> | ||
23 | <para> | ||
24 | The existence of this tree allows you to access and clone a particular | ||
25 | Yocto Project kernel repository and use it to build images based on their configurations | ||
26 | and features. | ||
27 | </para> | ||
28 | <para> | ||
29 | You can find the files used to describe all the valid features and BSPs | ||
30 | in the Yocto Project kernel in any clone of the Yocto Project kernel source repository | ||
31 | Git tree. | ||
32 | For example, the following command clones the Yocto Project baseline kernel that | ||
33 | branched off of <filename>linux.org</filename> version 3.4: | ||
34 | <literallayout class='monospaced'> | ||
35 | $ git clone git://git.yoctoproject.org/linux-yocto-3.4 | ||
36 | </literallayout> | ||
37 | For another example of how to set up a local Git repository of the Yocto Project | ||
38 | kernel files, see the | ||
39 | "<ulink url='&YOCTO_DOCS_DEV_URL;#local-kernel-files'>Yocto Project Kernel</ulink>" bulleted | ||
40 | item in the Yocto Project Development Manual. | ||
41 | </para> | ||
42 | <para> | ||
43 | Once you have cloned the kernel Git repository on your local machine, you can | ||
44 | switch to the <filename>meta</filename> branch within the repository. | ||
45 | Here is an example that assumes the local Git repository for the kernel is in | ||
46 | a top-level directory named <filename>linux-yocto-3.4</filename>: | ||
47 | <literallayout class='monospaced'> | ||
48 | $ cd ~/linux-yocto-3.4 | ||
49 | $ git checkout -b meta origin/meta | ||
50 | </literallayout> | ||
51 | Once you have checked out and switched to the <filename>meta</filename> branch, | ||
52 | you can see a snapshot of all the kernel configuration and feature descriptions that are | ||
53 | used to build that particular kernel repository. | ||
54 | These descriptions are in the form of <filename>.scc</filename> files. | ||
55 | </para> | ||
56 | <para> | ||
57 | You should realize, however, that browsing your local kernel repository | ||
58 | for feature descriptions and patches is not an effective way to determine what is in a | ||
59 | particular kernel branch. | ||
60 | Instead, you should use Git directly to discover the changes in a branch. | ||
61 | Using Git is an efficient and flexible way to inspect changes to the kernel. | ||
62 | For examples showing how to use Git to inspect kernel commits, see the following sections | ||
63 | in this chapter. | ||
64 | <note> | ||
65 | Ground up reconstruction of the complete kernel tree is an action only taken by the | ||
66 | Yocto Project team during an active development cycle. | ||
67 | When you create a clone of the kernel Git repository, you are simply making it | ||
68 | efficiently available for building and development. | ||
69 | </note> | ||
70 | </para> | ||
71 | <para> | ||
72 | The following steps describe what happens when the Yocto Project Team constructs | ||
73 | the Yocto Project kernel source Git repository (or tree) found at | ||
74 | <ulink url='&YOCTO_GIT_URL;/cgit.cgi'></ulink> given the | ||
75 | introduction of a new top-level kernel feature or BSP. | ||
76 | These are the actions that effectively create the tree | ||
77 | that includes the new feature, patch or BSP: | ||
78 | <orderedlist> | ||
79 | <listitem><para>A top-level kernel feature is passed to the kernel build subsystem. | ||
80 | Normally, this feature is a BSP for a particular kernel type.</para></listitem> | ||
81 | <listitem><para>The file that describes the top-level feature is located by searching | ||
82 | these system directories: | ||
83 | <itemizedlist> | ||
84 | <listitem><para>The in-tree kernel-cache directories, which are located | ||
85 | in <filename>meta/cfg/kernel-cache</filename></para></listitem> | ||
86 | <listitem><para>Areas pointed to by <filename>SRC_URI</filename> statements | ||
87 | found in recipes</para></listitem> | ||
88 | </itemizedlist> | ||
89 | For a typical build, the target of the search is a | ||
90 | feature description in an <filename>.scc</filename> file | ||
91 | whose name follows this format: | ||
92 | <literallayout class='monospaced'> | ||
93 | <bsp_name>-<kernel_type>.scc | ||
94 | </literallayout> | ||
95 | </para></listitem> | ||
96 | <listitem><para>Once located, the feature description is either compiled into a simple script | ||
97 | of actions, or into an existing equivalent script that is already part of the | ||
98 | shipped kernel.</para></listitem> | ||
99 | <listitem><para>Extra features are appended to the top-level feature description. | ||
100 | These features can come from the | ||
101 | <ulink url='&YOCTO_DOCS_REF_URL;#var-KERNEL_FEATURES'><filename>KERNEL_FEATURES</filename></ulink> | ||
102 | variable in recipes.</para></listitem> | ||
103 | <listitem><para>Each extra feature is located, compiled and appended to the script | ||
104 | as described in step three.</para></listitem> | ||
105 | <listitem><para>The script is executed to produce a series of <filename>meta-*</filename> | ||
106 | directories. | ||
107 | These directories are descriptions of all the branches, tags, patches and configurations that | ||
108 | need to be applied to the base Git repository to completely create the | ||
109 | source (build) branch for the new BSP or feature.</para></listitem> | ||
110 | <listitem><para>The base repository is cloned, and the actions | ||
111 | listed in the <filename>meta-*</filename> directories are applied to the | ||
112 | tree.</para></listitem> | ||
113 | <listitem><para>The Git repository is left with the desired branch checked out and any | ||
114 | required branching, patching and tagging has been performed.</para></listitem> | ||
115 | </orderedlist> | ||
116 | </para> | ||
117 | <para> | ||
118 | The kernel tree is now ready for developer consumption to be locally cloned, | ||
119 | configured, and built into a Yocto Project kernel specific to some target hardware. | ||
120 | <note><para>The generated <filename>meta-*</filename> directories add to the kernel | ||
121 | as shipped with the Yocto Project release. | ||
122 | Any add-ons and configuration data are applied to the end of an existing branch. | ||
123 | The full repository generation that is found in the | ||
124 | official Yocto Project kernel repositories at | ||
125 | <ulink url='&YOCTO_GIT_URL;/cgit.cgi'>http://git.yoctoproject.org/cgit.cgi</ulink> | ||
126 | is the combination of all supported boards and configurations.</para> | ||
127 | <para>The technique the Yocto Project team uses is flexible and allows for seamless | ||
128 | blending of an immutable history with additional patches specific to a | ||
129 | deployment. | ||
130 | Any additions to the kernel become an integrated part of the branches.</para> | ||
131 | </note> | ||
132 | </para> | ||
133 | </section> | ||
134 | |||
135 | <section id='build-strategy'> | ||
136 | <title>Build Strategy</title> | ||
137 | |||
138 | <para> | ||
139 | <emphasis>AR - Darrren Hart:</emphasis> Some parts of this section | ||
140 | need to be in the | ||
141 | "<link linkend='using-an-iterative-development-process'>Using an Iterative Development Process</link>" | ||
142 | section. | ||
143 | Darren needs to figure out which parts and identify them. | ||
144 | </para> | ||
145 | |||
146 | <para> | ||
147 | Once a local Git repository of the Yocto Project kernel exists on a development system, | ||
148 | you can consider the compilation phase of kernel development - building a kernel image. | ||
149 | Some prerequisites exist that are validated by the build process before compilation | ||
150 | starts: | ||
151 | </para> | ||
152 | |||
153 | <itemizedlist> | ||
154 | <listitem><para>The | ||
155 | <ulink url='&YOCTO_DOCS_REF_URL;#var-SRC_URI'><filename>SRC_URI</filename></ulink> points | ||
156 | to the kernel Git repository.</para></listitem> | ||
157 | <listitem><para>A BSP build branch exists. | ||
158 | This branch has the following form: | ||
159 | <literallayout class='monospaced'> | ||
160 | <kernel_type>/<bsp_name> | ||
161 | </literallayout></para></listitem> | ||
162 | </itemizedlist> | ||
163 | |||
164 | <para> | ||
165 | The OpenEmbedded build system makes sure these conditions exist before attempting compilation. | ||
166 | Other means, however, do exist, such as as bootstrapping a BSP. | ||
167 | </para> | ||
168 | |||
169 | <para> | ||
170 | Before building a kernel, the build process verifies the tree | ||
171 | and configures the kernel by processing all of the | ||
172 | configuration "fragments" specified by feature descriptions in the <filename>.scc</filename> | ||
173 | files. | ||
174 | As the features are compiled, associated kernel configuration fragments are noted | ||
175 | and recorded in the <filename>meta-*</filename> series of directories in their compilation order. | ||
176 | The fragments are migrated, pre-processed and passed to the Linux Kernel | ||
177 | Configuration subsystem (<filename>lkc</filename>) as raw input in the form | ||
178 | of a <filename>.config</filename> file. | ||
179 | The <filename>lkc</filename> uses its own internal dependency constraints to do the final | ||
180 | processing of that information and generates the final <filename>.config</filename> file | ||
181 | that is used during compilation. | ||
182 | </para> | ||
183 | |||
184 | <para> | ||
185 | Using the board's architecture and other relevant values from the board's template, | ||
186 | kernel compilation is started and a kernel image is produced. | ||
187 | </para> | ||
188 | |||
189 | <para> | ||
190 | The other thing that you notice once you configure a kernel is that | ||
191 | the build process generates a build tree that is separate from your kernel's local Git | ||
192 | source repository tree. | ||
193 | This build tree has a name that uses the following form, where | ||
194 | <filename>${MACHINE}</filename> is the metadata name of the machine (BSP) and "kernel_type" is one | ||
195 | of the Yocto Project supported kernel types (e.g. "standard"): | ||
196 | <literallayout class='monospaced'> | ||
197 | linux-${MACHINE}-<kernel_type>-build | ||
198 | </literallayout> | ||
199 | </para> | ||
200 | |||
201 | <para> | ||
202 | The existing support in the <filename>kernel.org</filename> tree achieves this | ||
203 | default functionality. | ||
204 | </para> | ||
205 | |||
206 | <para> | ||
207 | This behavior means that all the generated files for a particular machine or BSP are now in | ||
208 | the build tree directory. | ||
209 | The files include the final <filename>.config</filename> file, all the <filename>.o</filename> | ||
210 | files, the <filename>.a</filename> files, and so forth. | ||
211 | Since each machine or BSP has its own separate build directory in its own separate branch | ||
212 | of the Git repository, you can easily switch between different builds. | ||
213 | </para> | ||
214 | </section> | ||
215 | </appendix> | ||
216 | <!-- | ||
217 | vim: expandtab tw=80 ts=4 | ||
218 | --> | ||
diff --git a/documentation/kernel-dev/kernel-dev.xml b/documentation/kernel-dev/kernel-dev.xml index 1d2d55e3ac..9682d54006 100644 --- a/documentation/kernel-dev/kernel-dev.xml +++ b/documentation/kernel-dev/kernel-dev.xml | |||
@@ -65,6 +65,8 @@ | |||
65 | 65 | ||
66 | <xi:include href="kernel-dev-concepts-appx.xml"/> | 66 | <xi:include href="kernel-dev-concepts-appx.xml"/> |
67 | 67 | ||
68 | <xi:include href="kernel-dev-maint-appx.xml"/> | ||
69 | |||
68 | <!-- | 70 | <!-- |
69 | <xi:include href="kernel-dev-examples.xml"/> | 71 | <xi:include href="kernel-dev-examples.xml"/> |
70 | --> | 72 | --> |