aboutsummaryrefslogtreecommitdiffstats
path: root/documentation
diff options
context:
space:
mode:
authorScott Rifenbark <scott.m.rifenbark@intel.com>2013-01-09 16:20:14 -0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2013-01-16 15:59:17 +0000
commitf42c87a1acd6419e78ad1567cb2e88720e63c4b5 (patch)
treea20860e7209bdd7384441f0d2545efe49f86e3a7 /documentation
parentb56df9790e626683cefa8d04f3a6e7f25ac60c34 (diff)
downloadopenembedded-core-contrib-f42c87a1acd6419e78ad1567cb2e88720e63c4b5.tar.gz
kernel-dev: Removed recursive include statement from examples.
Three instances of *.scc files were recursively including themselves. These .scc files needed to have their names changed to a file that indicated hardware support only. (From yocto-docs rev: f1c347f8f63141807084ac0a2bd3b64e138315cb) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'documentation')
-rw-r--r--documentation/kernel-dev/kernel-dev-advanced.xml11
1 files changed, 4 insertions, 7 deletions
diff --git a/documentation/kernel-dev/kernel-dev-advanced.xml b/documentation/kernel-dev/kernel-dev-advanced.xml
index d15e0100f7..ff8374c635 100644
--- a/documentation/kernel-dev/kernel-dev-advanced.xml
+++ b/documentation/kernel-dev/kernel-dev-advanced.xml
@@ -1123,7 +1123,7 @@ Note: It is not strictly necessary to create a ktype scc file. The BSP file can
define KARCH i386
include standard.scc
- include mybsp.scc
+ include mybsp-hw.scc
</literallayout>
</para>
@@ -1131,7 +1131,7 @@ Note: It is not strictly necessary to create a ktype scc file. The BSP file can
In the above example, <filename>standard.scc</filename>
aggregates all the configuration fragments, patches, and
features that make up your standard kernel policy whereas
- <filename>mybsp.scc</filename> aggregates all those necessary
+ <filename>mybsp-hw.scc</filename> aggregates all those necessary
to support the hardware available on the "mybsp" machine.
For information on how to break a complete
<filename>.config</filename> file into the various
@@ -1373,9 +1373,6 @@ the KTYPE has changed, now set to "tiny".
</section>
</section>
-
-
-
<section id='machine-branches'>
<title>Machine Branches</title>
@@ -1425,7 +1422,7 @@ the KTYPE has changed, now set to "tiny".
branch mynewbranch
- include mybsp.scc
+ include mybsp-hw.scc
</literallayout>
</para>
@@ -1580,7 +1577,7 @@ Note: The "base" branches are an artifact of the way git manages its data
branch mynewbranch
git merge myfeature
- include mybsp.scc
+ include mybsp-hw.scc
</literallayout>
</para>