summaryrefslogtreecommitdiffstats
path: root/documentation/bsp-guide/bsp.xml
diff options
context:
space:
mode:
authorScott Rifenbark <scott.m.rifenbark@intel.com>2012-07-19 10:54:45 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-07-20 12:32:54 +0100
commit98a1fd1e734db50380a3a37d35767ccb4cc21f7c (patch)
treee567faa8d95cabadb8b9f812ae325140fdc77290 /documentation/bsp-guide/bsp.xml
parent24340ed5d1f153610a0452e48babcadd4fc50b63 (diff)
downloadpoky-98a1fd1e734db50380a3a37d35767ccb4cc21f7c.tar.gz
documentation: Config fragment sections updated
I have updated both the section for configuration fragments found in the BSP and dev manuals. Reported-by: James Abernathy <jabernathy@gmail.com> (From yocto-docs rev: 62f4df751c80e7b749356bb80ade3a7847411f7c) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'documentation/bsp-guide/bsp.xml')
-rw-r--r--documentation/bsp-guide/bsp.xml22
1 files changed, 11 insertions, 11 deletions
diff --git a/documentation/bsp-guide/bsp.xml b/documentation/bsp-guide/bsp.xml
index 0159f48848..05094ca77d 100644
--- a/documentation/bsp-guide/bsp.xml
+++ b/documentation/bsp-guide/bsp.xml
@@ -596,22 +596,22 @@
596 </para> 596 </para>
597 597
598 <para> 598 <para>
599 For example, suppose you had a set of configuration options in a file called 599 For example, suppose you had a some configuration options in a file called
600 <filename>myconfig.cfg</filename>. 600 <filename>network_configs.cfg</filename>.
601 If you put that file inside a directory named <filename>/linux-yocto</filename> and then added 601 You can place that file inside a directory named <filename>/linux-yocto</filename> and then add
602 a <filename>SRC_URI</filename> statement such as the following to the append file, 602 a <filename>SRC_URI</filename> statement such as the following to the append file.
603 those configuration options will be picked up and applied when the kernel is built. 603 When the OpenEmbedded build system builds the kernel, the configuration options are
604 picked up and applied.
604 <literallayout class='monospaced'> 605 <literallayout class='monospaced'>
605 SRC_URI += "file://myconfig.cfg" 606 SRC_URI += "file://network_configs.cfg"
606 </literallayout> 607 </literallayout>
607 </para> 608 </para>
608 609
609 <para> 610 <para>
610 As mentioned earlier, you can group related configurations into multiple files and 611 To group related configurations into multiple files, you perform a similar procedure.
611 name them all in the <filename>SRC_URI</filename> statement as well. 612 Here is an example that groups separate configurations specifically for Ethernet and graphics
612 For example, you could group separate configurations specifically for Ethernet and graphics 613 into their own files and adds the configurations
613 into their own files and add those by using a <filename>SRC_URI</filename> statement like the 614 by using a <filename>SRC_URI</filename> statement like the following in your append file:
614 following in your append file:
615 <literallayout class='monospaced'> 615 <literallayout class='monospaced'>
616 SRC_URI += "file://myconfig.cfg \ 616 SRC_URI += "file://myconfig.cfg \
617 file://eth.cfg \ 617 file://eth.cfg \