xref: /OK3568_Linux_fs/yocto/poky/meta/classes/typecheck.bbclass (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1# Check types of bitbake configuration variables
2#
3# See oe.types for details.
4
5python check_types() {
6    import oe.types
7    for key in e.data.keys():
8        if e.data.getVarFlag(key, "type"):
9            oe.data.typed_value(key, e.data)
10}
11addhandler check_types
12check_types[eventmask] = "bb.event.ConfigParsed"
13