diff options
author | Scott Rifenbark <scott.m.rifenbark@intel.com> | 2013-11-26 08:13:22 -0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-12-03 12:53:23 +0000 |
commit | f8ac48631abaa167c1af784bce32769bd61e3ad8 (patch) | |
tree | d69f13f833eeb748a9e2989d5076e85f57835c9c /documentation | |
parent | 72562c42508f7d2733187b0c4c95b004cd5d4db1 (diff) | |
download | poky-f8ac48631abaa167c1af784bce32769bd61e3ad8.tar.gz |
ref-manual: Added blacklist class description.
(From yocto-docs rev: 1eb01b7edb2093e78f12ad0e99bb193756a6d02a)
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/ref-manual/ref-classes.xml | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/documentation/ref-manual/ref-classes.xml b/documentation/ref-manual/ref-classes.xml index 3fa50155a8..c1c3baa392 100644 --- a/documentation/ref-manual/ref-classes.xml +++ b/documentation/ref-manual/ref-classes.xml | |||
@@ -234,6 +234,28 @@ | |||
234 | </para> | 234 | </para> |
235 | </section> | 235 | </section> |
236 | 236 | ||
237 | <section id='ref-classes-blacklist.bbclass'> | ||
238 | <title><filename>blacklist.bbclass</filename></title> | ||
239 | |||
240 | <para> | ||
241 | The blacklist (<filename>blacklist</filename>) class prevents | ||
242 | the OpenEmbedded build system from building specific recipes | ||
243 | (blacklists them). | ||
244 | To use this class, inherit the class globally and set | ||
245 | <filename>PNBLACKLIST</filename> for each recipe you wish to blacklist. | ||
246 | Specify the <link linkend='var-PN'><filename>PN</filename></link> | ||
247 | value as a variable flag (varflag) and provide a reason, which is | ||
248 | reported, if the package is requested to be built as the value. | ||
249 | For example, if you want to blacklist a recipe called "exoticware", | ||
250 | you add the following to your <filename>local.conf</filename> | ||
251 | or distribution configuration: | ||
252 | <literallayout class='monospaced'> | ||
253 | INHERIT += "blacklist" | ||
254 | PNBLACKLIST[exoticware] = "Not supported by our organization." | ||
255 | </literallayout> | ||
256 | </para> | ||
257 | </section> | ||
258 | |||
237 | <section id='ref-classes-debian'> | 259 | <section id='ref-classes-debian'> |
238 | <title>Debian Renaming - <filename>debian.bbclass</filename></title> | 260 | <title>Debian Renaming - <filename>debian.bbclass</filename></title> |
239 | 261 | ||