forked from ~ljy/RK356X_SDK_RELEASE

hc
2023-11-20 5a4414d1fd83d52b073fc27f6e12dc9fe3b32766
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# anonymous support class from originally from angstrom
# To use the blacklist, a distribution should include this
# class in the INHERIT_DISTRO
#
# No longer use ANGSTROM_BLACKLIST, instead use a table of
# recipes in PNBLACKLIST
#
# Features:
#
# * To add a package to the blacklist, set:
#   PNBLACKLIST[pn] = "message"
#
 
python () {
    blacklist = d.getVarFlag('PNBLACKLIST', d.getVar('PN'))
 
    if blacklist:
        raise bb.parse.SkipRecipe("Recipe is blacklisted: %s" % (blacklist))
}