mirror of
git://git.yoctoproject.org/meta-virtualization.git
synced 2025-07-19 20:59:41 +02:00

The ConfigParsed event is raised multiple times during a build which resulted in the sanity warning appearing up to 4 times per build. Instead we should be watching for the SanityCheck event (this is what the sanity checks in oe-core watch for). Signed-off-by: Paul Barker <pbarker@toganlabs.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
11 lines
564 B
Plaintext
11 lines
564 B
Plaintext
addhandler virt_bbappend_distrocheck
|
|
virt_bbappend_distrocheck[eventmask] = "bb.event.SanityCheck"
|
|
python virt_bbappend_distrocheck() {
|
|
skip_check = e.data.getVar('SKIP_META_VIRT_SANITY_CHECK') == "1"
|
|
if 'virtualization' not in e.data.getVar('DISTRO_FEATURES').split() and not skip_check:
|
|
bb.warn("You have included the meta-virtualization layer, but \
|
|
'virtualization' has not been enabled in your DISTRO_FEATURES. Some bbappend files \
|
|
may not take effect. See the meta-virtualization README for details on enabling \
|
|
virtualization support.")
|
|
}
|