From dc449a2ef5a4a846d421ba288fb367ebea808d54 Mon Sep 17 00:00:00 2001 From: Paul Eggleton Date: Tue, 9 Apr 2013 13:15:15 +0100 Subject: [PATCH] ref-manual/ref-variables: add INSANE_SKIP Added quotes around the section head for the cross reference. Made some sentences present tense rather than future tense. Shortened a sentence. (From yocto-docs rev: 77f8a2778e5880928cc79e56636a12a39f25492a) Signed-off-by: Paul Eggleton Signed-off-by: Scott Rifenbark Signed-off-by: Richard Purdie --- documentation/ref-manual/ref-variables.xml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/documentation/ref-manual/ref-variables.xml b/documentation/ref-manual/ref-variables.xml index a3f0c1b87a..3ed966f377 100644 --- a/documentation/ref-manual/ref-variables.xml +++ b/documentation/ref-manual/ref-variables.xml @@ -1530,6 +1530,28 @@ recipes-graphics/xorg-font/font-alias_1.0.3.bb:PR = "${INC_PR}.3" + INSANE_SKIP + + + Specifies the QA checks to skip for a specific package + within a recipe. + For example, to skip the check for symbolic link + .so files in the main package of a + recipe, add the following to the recipe. + In this example, the package name override + ${PN} must be used: + + INSANE_SKIP_${PN} += "dev-so" + + + + See the "Generated Output Quality Assurance Checks - insane.bbclass" + section for a list of the valid QA checks you can + specify using this variable. + + + +