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