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 | ast2050-yocto-poky-f8ac48631abaa167c1af784bce32769bd61e3ad8.zip ast2050-yocto-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 3fa5015..c1c3baa 100644 --- a/documentation/ref-manual/ref-classes.xml +++ b/documentation/ref-manual/ref-classes.xml @@ -234,6 +234,28 @@ </para> </section> +<section id='ref-classes-blacklist.bbclass'> + <title><filename>blacklist.bbclass</filename></title> + + <para> + The blacklist (<filename>blacklist</filename>) class prevents + the OpenEmbedded build system from building specific recipes + (blacklists them). + To use this class, inherit the class globally and set + <filename>PNBLACKLIST</filename> for each recipe you wish to blacklist. + Specify the <link linkend='var-PN'><filename>PN</filename></link> + value as a variable flag (varflag) and provide a reason, which is + reported, if the package is requested to be built as the value. + For example, if you want to blacklist a recipe called "exoticware", + you add the following to your <filename>local.conf</filename> + or distribution configuration: + <literallayout class='monospaced'> + INHERIT += "blacklist" + PNBLACKLIST[exoticware] = "Not supported by our organization." + </literallayout> + </para> +</section> + <section id='ref-classes-debian'> <title>Debian Renaming - <filename>debian.bbclass</filename></title> |