diff options
author | Scott Rifenbark <scott.m.rifenbark@intel.com> | 2015-02-25 08:46:19 -0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-02-27 07:40:34 +0000 |
commit | 4bdaa5c5baf9b3f6306e8f2452155546d1f9730a (patch) | |
tree | e719500dd943c8e5ecbbe4f093725830a2afb24e | |
parent | 1a74c797a00f5870330fb1e2d6aaf36cca44ccc5 (diff) | |
download | poky-4bdaa5c5baf9b3f6306e8f2452155546d1f9730a.tar.gz |
kernel-dev: Small fixes.
Reported-by: Robert P. J. Day <rpjday@crashcourse.ca>
(From yocto-docs rev: 198ce97a1158237056f035ade555ce04a6031c56)
Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | documentation/kernel-dev/kernel-dev-common.xml | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/documentation/kernel-dev/kernel-dev-common.xml b/documentation/kernel-dev/kernel-dev-common.xml index b08f7983f0..56fa17d7d8 100644 --- a/documentation/kernel-dev/kernel-dev-common.xml +++ b/documentation/kernel-dev/kernel-dev-common.xml | |||
@@ -133,16 +133,16 @@ | |||
133 | 133 | ||
134 | <para> | 134 | <para> |
135 | For example, you can apply a three-patch series by adding the | 135 | For example, you can apply a three-patch series by adding the |
136 | following lines to your linux-yocto <filename>.bbappend</filename> | 136 | following lines to your linux-yocto |
137 | file in your layer: | 137 | <filename>.bbappend</filename> file in your layer: |
138 | <literallayout class='monospaced'> | 138 | <literallayout class='monospaced'> |
139 | SRC_URI += "file://0001-first-change.patch" | 139 | SRC_URI += "file://0001-first-change.patch" |
140 | SRC_URI += "file://0002-first-change.patch" | 140 | SRC_URI += "file://0002-second-change.patch" |
141 | SRC_URI += "file://0003-first-change.patch" | 141 | SRC_URI += "file://0003-third-change.patch" |
142 | </literallayout> | 142 | </literallayout> |
143 | The next time you run BitBake to build the Linux kernel, BitBake | 143 | The next time you run BitBake to build the Linux kernel, |
144 | detects the change in the recipe and fetches and applies the patches | 144 | BitBake detects the change in the recipe and fetches and |
145 | before building the kernel. | 145 | applies the patches before building the kernel. |
146 | </para> | 146 | </para> |
147 | 147 | ||
148 | <para> | 148 | <para> |
@@ -187,14 +187,14 @@ | |||
187 | 187 | ||
188 | <note> | 188 | <note> |
189 | The build system applies the configurations from the | 189 | The build system applies the configurations from the |
190 | <filename>.config</filename> file before applying any | 190 | <filename>defconfig</filename> file before applying any |
191 | subsequent configuration fragments. | 191 | subsequent configuration fragments. |
192 | The final kernel configuration is a combination of the | 192 | The final kernel configuration is a combination of the |
193 | configurations in the <filename>.config</filename> file and | 193 | configurations in the <filename>defconfig</filename> file and |
194 | any configuration fragments you provide. | 194 | any configuration fragments you provide. |
195 | You need to realize that if you have any configuration | 195 | You need to realize that if you have any configuration |
196 | fragments, the build system applies these on top of and | 196 | fragments, the build system applies these on top of and |
197 | after applying the existing <filename>.config</filename> | 197 | after applying the existing <filename>defconfig</filename> |
198 | file configurations. | 198 | file configurations. |
199 | </note> | 199 | </note> |
200 | 200 | ||
@@ -399,7 +399,7 @@ | |||
399 | 399 | ||
400 | WARNING: There were 2 hardware options requested that do not | 400 | WARNING: There were 2 hardware options requested that do not |
401 | have a corresponding value present in the final ".config" file. | 401 | have a corresponding value present in the final ".config" file. |
402 | This probably means you are not't getting the config you wanted. | 402 | This probably means you are not getting the config you wanted. |
403 | The full list can be found in your kernel src dir at: | 403 | The full list can be found in your kernel src dir at: |
404 | meta/cfg/standard/mybsp/mismatch.cfg | 404 | meta/cfg/standard/mybsp/mismatch.cfg |
405 | </literallayout> | 405 | </literallayout> |