blob: 6bff7c71381506274e30329373a57a6fdc09835a [file] [log] [blame]
Patrick Williamsc124f4f2015-09-15 14:41:29 -05001# 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():
Patrick Williamsd8c66bc2016-06-20 12:57:21 -05008 if e.data.getVarFlag(key, "type", True):
Patrick Williamsc124f4f2015-09-15 14:41:29 -05009 oe.data.typed_value(key, e.data)
10}
11addhandler check_types
12check_types[eventmask] = "bb.event.ConfigParsed"