summaryrefslogtreecommitdiffstats
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)
downloadpoky-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
1123 define KARCH i386 1123 define KARCH i386
1124 1124
1125 include standard.scc 1125 include standard.scc
1126 include mybsp.scc 1126 include mybsp-hw.scc
1127 </literallayout> 1127 </literallayout>
1128 </para> 1128 </para>
1129 1129
@@ -1131,7 +1131,7 @@ Note: It is not strictly necessary to create a ktype scc file. The BSP file can
1131 In the above example, <filename>standard.scc</filename> 1131 In the above example, <filename>standard.scc</filename>
1132 aggregates all the configuration fragments, patches, and 1132 aggregates all the configuration fragments, patches, and
1133 features that make up your standard kernel policy whereas 1133 features that make up your standard kernel policy whereas
1134 <filename>mybsp.scc</filename> aggregates all those necessary 1134 <filename>mybsp-hw.scc</filename> aggregates all those necessary
1135 to support the hardware available on the "mybsp" machine. 1135 to support the hardware available on the "mybsp" machine.
1136 For information on how to break a complete 1136 For information on how to break a complete
1137 <filename>.config</filename> file into the various 1137 <filename>.config</filename> file into the various
@@ -1373,9 +1373,6 @@ the KTYPE has changed, now set to "tiny".
1373 </section> 1373 </section>
1374</section> 1374</section>
1375 1375
1376
1377
1378
1379<section id='machine-branches'> 1376<section id='machine-branches'>
1380 <title>Machine Branches</title> 1377 <title>Machine Branches</title>
1381 1378
@@ -1425,7 +1422,7 @@ the KTYPE has changed, now set to "tiny".
1425 1422
1426 branch mynewbranch 1423 branch mynewbranch
1427 1424
1428 include mybsp.scc 1425 include mybsp-hw.scc
1429 </literallayout> 1426 </literallayout>
1430 </para> 1427 </para>
1431 1428
@@ -1580,7 +1577,7 @@ Note: The "base" branches are an artifact of the way git manages its data
1580 branch mynewbranch 1577 branch mynewbranch
1581 git merge myfeature 1578 git merge myfeature
1582 1579
1583 include mybsp.scc 1580 include mybsp-hw.scc
1584 </literallayout> 1581 </literallayout>
1585 </para> 1582 </para>
1586 1583