summaryrefslogtreecommitdiffstats
path: root/documentation
diff options
context:
space:
mode:
authorScott Rifenbark <scott.m.rifenbark@intel.com>2011-07-27 09:00:46 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2011-08-04 15:06:46 +0100
commit9709d1315d510f53e14f0bd19a875ebba3107b8f (patch)
tree469ff336cb1d717a63edbe242ce8ade3319c7022 /documentation
parent49e6b1d83ca91a15557e536719fb4c33a0268200 (diff)
downloadpoky-9709d1315d510f53e14f0bd19a875ebba3107b8f.tar.gz
documentation/dev-manual/dev-manual-start.xml: Added bsp naming scheme
Added the YP BSP naming scheme to the general getting started section where it talks about getting BSP files on the local system. (From yocto-docs rev: 5b8dc20a52053341ac726fe6662152397262d5e8) 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/dev-manual/dev-manual-start.xml28
1 files changed, 20 insertions, 8 deletions
diff --git a/documentation/dev-manual/dev-manual-start.xml b/documentation/dev-manual/dev-manual-start.xml
index 49e26d795d..9d27a9a265 100644
--- a/documentation/dev-manual/dev-manual-start.xml
+++ b/documentation/dev-manual/dev-manual-start.xml
@@ -104,7 +104,20 @@
104 </itemizedlist></para></listitem> 104 </itemizedlist></para></listitem>
105 <listitem><para><emphasis>Supported Board Support Packages (BSPs):</emphasis> The same considerations 105 <listitem><para><emphasis>Supported Board Support Packages (BSPs):</emphasis> The same considerations
106 exist for BSPs. 106 exist for BSPs.
107 You can get set up for BSP development one of two ways: 107 You can get set up for BSP development one of two ways: tarball extraction or
108 with a local Git repository.
109 Regardless of the method you use, the Yocto Project uses the following BSP layer
110 naming scheme:
111 <literallayout class='monospaced'>
112 meta-&lt;BSP_name&gt;
113 </literallayout>
114 where &lt;BSP_name&gt; is the recognized BSP name.
115 Here are some examples:
116 <literallayout class='monospaced'>
117 meta&dash;crownbay
118 meta&dash;emenlow
119 meta&dash;n450
120 </literallayout>
108 <itemizedlist> 121 <itemizedlist>
109 <listitem><para><emphasis>Tarball Extraction:</emphasis> You can download any released 122 <listitem><para><emphasis>Tarball Extraction:</emphasis> You can download any released
110 BSP tarball from the same 123 BSP tarball from the same
@@ -118,12 +131,11 @@
118 Typically, you set up the <filename>meta-intel</filename> Git repository inside 131 Typically, you set up the <filename>meta-intel</filename> Git repository inside
119 the <filename>poky</filename> Git repository.</para> 132 the <filename>poky</filename> Git repository.</para>
120 133
121 <para> 134 <para>For example, the following transcript shows the steps to clone the
122 For example, the following transcript shows the steps to clone the 135 <filename>meta-intel</filename>
123 <filename>meta-intel</filename> 136 Git repository inside the <filename>poky</filename>
124 Git repository inside the <filename>poky</filename> 137 <filename>poky</filename> Git repository.
125 <filename>poky</filename> Git repository. 138 <literallayout class='monospaced'>
126 <literallayout class='monospaced'>
127 $cd poky 139 $cd poky
128 $ git clone git://git.yoctoproject.org/meta-intel.git 140 $ git clone git://git.yoctoproject.org/meta-intel.git
129 Initialized empty Git repository in /home/scottrif/poky/meta-intel/.git/ 141 Initialized empty Git repository in /home/scottrif/poky/meta-intel/.git/
@@ -132,7 +144,7 @@
132 remote: Total 1325 (delta 546), reused 85 (delta 27) 144 remote: Total 1325 (delta 546), reused 85 (delta 27)
133 Receiving objects: 100% (1325/1325), 1.56 MiB | 330 KiB/s, done. 145 Receiving objects: 100% (1325/1325), 1.56 MiB | 330 KiB/s, done.
134 Resolving deltas: 100% (546/546), done. 146 Resolving deltas: 100% (546/546), done.
135 </literallayout></para> 147 </literallayout></para>
136 148
137 <para>The same 149 <para>The same
138 <ulink url='https://wiki.yoctoproject.org/wiki/Transcript:_from_git_checkout_to_meta-intel_BSP'> 150 <ulink url='https://wiki.yoctoproject.org/wiki/Transcript:_from_git_checkout_to_meta-intel_BSP'>