dev-manual: Updated the "Working with a PR Service" section.

I added a link to the PRSERV_HOST variable.  That variable is
now defined in the ref-manual variable glossary.

(From yocto-docs rev: 7166fe94107cd379081fd81b7351ec081aa2c6ae)

Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Scott Rifenbark 2013-12-04 05:36:18 -06:00 committed by Richard Purdie
parent 4f2fb32c62
commit 31b5f4933a
1 changed files with 9 additions and 8 deletions

View File

@ -3237,9 +3237,10 @@
The simplest form for a PR Service is for it to exist The simplest form for a PR Service is for it to exist
for a single host development system that builds the for a single host development system that builds the
package feed (building system). package feed (building system).
For this scenario, you can enable the PR Service by adding For this scenario, you can enable a local PR Service by
the following to your <filename>local.conf</filename> setting
file in the <ulink url='&YOCTO_DOCS_REF_URL;#var-PRSERV_HOST'><filename>PRSERV_HOST</filename></ulink>
in your <filename>local.conf</filename> file in the
<ulink url='&YOCTO_DOCS_DEV_URL;#build-directory'>Build Directory</ulink>: <ulink url='&YOCTO_DOCS_DEV_URL;#build-directory'>Build Directory</ulink>:
<literallayout class='monospaced'> <literallayout class='monospaced'>
PRSERV_HOST = "localhost:0" PRSERV_HOST = "localhost:0"
@ -4397,12 +4398,12 @@
<para> <para>
In fact, the Yocto Project provides a distribution named In fact, the Yocto Project provides a distribution named
<filename>poky-bleeding</filename>, whose configuration <filename>poky-bleeding</filename>, whose configuration
file contains the line: file contains the line:
<literallayout class='monospaced'> <literallayout class='monospaced'>
require conf/distro/include/poky-floating-revisions.inc require conf/distro/include/poky-floating-revisions.inc
</literallayout> </literallayout>
This line pulls in the listed include file that contains This line pulls in the listed include file that contains
numerous lines of exactly that form: numerous lines of exactly that form:
<literallayout class='monospaced'> <literallayout class='monospaced'>
SRCREV_pn-gconf-dbus ?= "${AUTOREV}" SRCREV_pn-gconf-dbus ?= "${AUTOREV}"
@ -4424,14 +4425,14 @@
. .
. .
</literallayout> </literallayout>
These lines allow you to experiment with building a These lines allow you to experiment with building a
distribution that tracks the latest development source distribution that tracks the latest development source
for numerous packages. for numerous packages.
<note><title>Caution</title> <note><title>Caution</title>
The <filename>poky-bleeding</filename> distribution The <filename>poky-bleeding</filename> distribution
is not tested on a regular basis. is not tested on a regular basis.
Keep this in mind if you use it. Keep this in mind if you use it.
</note> </note>
</para> </para>
</section> </section>