mirror of
git://git.yoctoproject.org/poky
synced 2026-09-09 04:35:36 +00:00
Where there isn't a copyright statement, add one to make it explicit. Also drop editor config lines where they were present. (From OE-Core rev: 880c1ea3edc8edef974e65b2d424fc36809ea034) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
17 lines
358 B
Plaintext
17 lines
358 B
Plaintext
#
|
|
# Copyright OpenEmbedded Contributors
|
|
#
|
|
|
|
# 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"
|