summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorScott Rifenbark <scott.m.rifenbark@intel.com>2012-05-24 07:21:31 -0600
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-05-31 21:16:54 +0100
commit230e325582ef3c173d1330ea41523872a2c5a89b (patch)
treed733e0a3f8b12d061ea78f4317d1127d2226d0a9
parent31bfebd8c954933cd96ce2a8b4ad47f9886f29b1 (diff)
downloadpoky-230e325582ef3c173d1330ea41523872a2c5a89b.tar.gz
documentation/dev-manual/dev-manual-bsp-appendix.xml: .bbappend example
The linux-yocto_3.2.bbappend example was out of date. There is no longer a kernel features statement in the last part of the section. Only COMPATIBLE_MACHINE, KMACHINE, and KBRANCH remain. I removed the fourth one from the text description and the example code. (From yocto-docs rev: 1a6d3cad48f1b52e5b029434ce655940c6024694) 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-bsp-appendix.xml7
1 files changed, 3 insertions, 4 deletions
diff --git a/documentation/dev-manual/dev-manual-bsp-appendix.xml b/documentation/dev-manual/dev-manual-bsp-appendix.xml
index c28bf3addc..ec8fe1463a 100644
--- a/documentation/dev-manual/dev-manual-bsp-appendix.xml
+++ b/documentation/dev-manual/dev-manual-bsp-appendix.xml
@@ -516,10 +516,10 @@
516 <para> 516 <para>
517 Also in the <filename>linux-yocto_3.2.bbappend</filename> file are 517 Also in the <filename>linux-yocto_3.2.bbappend</filename> file are
518 <filename>COMPATIBLE_MACHINE</filename>, <filename>KMACHINE</filename>, 518 <filename>COMPATIBLE_MACHINE</filename>, <filename>KMACHINE</filename>,
519 <filename>KBRANCH</filename>, and <filename>KERNEL_FEATURES</filename> statements. 519 and <filename>KBRANCH</filename> statements.
520 Two sets of these exist: one set supports EMGD and one set does not. 520 Two sets of these exist: one set supports EMGD and one set does not.
521 Because we are not interested in supporting EMGD those four can be deleted. 521 Because we are not interested in supporting EMGD those three can be deleted.
522 The remaining four must be changed so that <filename>mymachine</filename> replaces 522 The remaining three must be changed so that <filename>mymachine</filename> replaces
523 <filename>crownbay-noemgd</filename> and <filename>crownbay</filename>. 523 <filename>crownbay-noemgd</filename> and <filename>crownbay</filename>.
524 Because we are using the <filename>atom-pc</filename> branch for this new BSP, we can also find 524 Because we are using the <filename>atom-pc</filename> branch for this new BSP, we can also find
525 the exact branch we need for the <filename>KMACHINE</filename> 525 the exact branch we need for the <filename>KMACHINE</filename>
@@ -537,7 +537,6 @@
537 COMPATIBLE_MACHINE_mymachine = "mymachine" 537 COMPATIBLE_MACHINE_mymachine = "mymachine"
538 KMACHINE_mymachine = "atom-pc" 538 KMACHINE_mymachine = "atom-pc"
539 KBRANCH_mymachine = "standard/default/common-pc/atom-pc" 539 KBRANCH_mymachine = "standard/default/common-pc/atom-pc"
540 KERNEL_FEATURES_append_mymachine += " cfg/smp.scc"
541 540
542 SRCREV_machine_pn-linux-yocto_mymachine ?= \ 541 SRCREV_machine_pn-linux-yocto_mymachine ?= \
543 "f29531a41df15d74be5ad47d958e4117ca9e489e" 542 "f29531a41df15d74be5ad47d958e4117ca9e489e"