mirror of
git://git.yoctoproject.org/poky.git
synced 2025-07-19 21:09:03 +02:00

getVarFlag() now defaults to expanding by default, thus remove the True option from getVarFlag() calls with a regex search and replace. Search made with the following regex: getVarFlag ?\(( ?[^,()]*, ?[^,()]*), True\) (From OE-Core rev: 2dea9e490a98377010b3d4118d054814c317a735) Signed-off-by: Joshua Lock <joshua.g.lock@intel.com> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
13 lines
315 B
Plaintext
13 lines
315 B
Plaintext
# Check types of bitbake configuration variables
|
|
#
|
|
# See oe.types for details.
|
|
|
|
python check_types() {
|
|
import oe.types
|
|
for key in e.data.keys():
|
|
if e.data.getVarFlag(key, "type"):
|
|
oe.data.typed_value(key, e.data)
|
|
}
|
|
addhandler check_types
|
|
check_types[eventmask] = "bb.event.ConfigParsed"
|