summaryrefslogtreecommitdiffstats
path: root/documentation
diff options
context:
space:
mode:
authorPeter Kjellerstedt <peter.kjellerstedt@axis.com>2018-12-13 16:16:45 -0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2018-12-27 22:54:55 +0000
commit8349383002657f75c6964e22630002db844f94c2 (patch)
treeca8d7b495c4ed0b093a8d81713a5f6eadbd5883d /documentation
parentaf4b3c6f9b3556f23acfe4fc34402b73b50bffae (diff)
downloadpoky-8349383002657f75c6964e22630002db844f94c2.tar.gz
ref-manual: Document the fifth argument to PACKAGECONFIG
(From yocto-docs rev: 1a4a95d070d79bfeb202faf381c2e0a288ba88f5) Signed-off-by: Scott Rifenbark <srifenbark@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'documentation')
-rw-r--r--documentation/ref-manual/ref-variables.xml12
1 files changed, 8 insertions, 4 deletions
diff --git a/documentation/ref-manual/ref-variables.xml b/documentation/ref-manual/ref-variables.xml
index c3cc1fab57..9e51b7591c 100644
--- a/documentation/ref-manual/ref-variables.xml
+++ b/documentation/ref-manual/ref-variables.xml
@@ -10337,9 +10337,9 @@ recipes-graphics/xorg-font/font-alias_1.0.3.bb:PR = "${INC_PR}.3"
10337 Here is the basic block structure: 10337 Here is the basic block structure:
10338 <literallayout class='monospaced'> 10338 <literallayout class='monospaced'>
10339 PACKAGECONFIG ??= "f1 f2 f3 ..." 10339 PACKAGECONFIG ??= "f1 f2 f3 ..."
10340 PACKAGECONFIG[f1] = "--with-f1,--without-f1,build-deps-f1,rt-deps-f1" 10340 PACKAGECONFIG[f1] = "--with-f1,--without-f1,build-deps-f1,rt-deps-f1,rt-recs-f1"
10341 PACKAGECONFIG[f2] = "--with-f2,--without-f2,build-deps-f2,rt-deps-f2" 10341 PACKAGECONFIG[f2] = "--with-f2,--without-f2,build-deps-f2,rt-deps-f2,rt-recs-f2"
10342 PACKAGECONFIG[f3] = "--with-f3,--without-f3,build-deps-f3,rt-deps-f3" 10342 PACKAGECONFIG[f3] = "--with-f3,--without-f3,build-deps-f3,rt-deps-f3,rt-recs-f3"
10343 </literallayout> 10343 </literallayout>
10344 </para> 10344 </para>
10345 10345
@@ -10348,7 +10348,7 @@ recipes-graphics/xorg-font/font-alias_1.0.3.bb:PR = "${INC_PR}.3"
10348 variable itself specifies a space-separated list of the 10348 variable itself specifies a space-separated list of the
10349 features to enable. 10349 features to enable.
10350 Following the features, you can determine the behavior of 10350 Following the features, you can determine the behavior of
10351 each feature by providing up to four order-dependent 10351 each feature by providing up to five order-dependent
10352 arguments, which are separated by commas. 10352 arguments, which are separated by commas.
10353 You can omit any argument you like but must retain the 10353 You can omit any argument you like but must retain the
10354 separating commas. 10354 separating commas.
@@ -10374,6 +10374,10 @@ recipes-graphics/xorg-font/font-alias_1.0.3.bb:PR = "${INC_PR}.3"
10374 (<link linkend='var-RDEPENDS'><filename>RDEPENDS</filename></link>) 10374 (<link linkend='var-RDEPENDS'><filename>RDEPENDS</filename></link>)
10375 that should be added if the feature is enabled. 10375 that should be added if the feature is enabled.
10376 </para></listitem> 10376 </para></listitem>
10377 <listitem><para>Additional runtime recommendations
10378 (<link linkend='var-RRECOMMENDS'><filename>RRECOMMENDS</filename></link>)
10379 that should be added if the feature is enabled.
10380 </para></listitem>
10377 </orderedlist> 10381 </orderedlist>
10378 </para> 10382 </para>
10379 10383