summaryrefslogtreecommitdiffstats
path: root/documentation
diff options
context:
space:
mode:
Diffstat (limited to 'documentation')
-rw-r--r--documentation/ref-manual/ref-classes.xml22
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