blob: 72da932232892fd6437afa8a7beaf5d1a3bf05ab [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():
Brad Bishop6e60e8b2018-02-01 10:27:11 -05008 if e.data.getVarFlag(key, "type"):
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"