summaryrefslogtreecommitdiffstats
path: root/meta
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2013-04-17 13:14:50 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2013-04-18 00:38:02 +0100
commit90fa87287315e14683596cd8d1b471219b5811fe (patch)
tree7e6c546a4fd760333cb6392140da8f1a4c70fd9d /meta
parentca4ce80ed8077fe3275439938f2b146fc2bdb2bc (diff)
downloadpoky-90fa87287315e14683596cd8d1b471219b5811fe.tar.gz
packagegroup: Add init-manager sanity check
Currently, you can set VIRTUAL-RUNTIME_init_manager to an init system that isn't in DISTRO_FEATURES. This leads to head scratching over unbootable images. This adds a sanity check which ensures more valid systems are built. (From OE-Core rev: c72ec4b52827f75351790eab483d258b2e87611a) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r--meta/classes/packagegroup.bbclass7
1 files changed, 7 insertions, 0 deletions
diff --git a/meta/classes/packagegroup.bbclass b/meta/classes/packagegroup.bbclass
index 201309c28f..9bc9cc22ad 100644
--- a/meta/classes/packagegroup.bbclass
+++ b/meta/classes/packagegroup.bbclass
@@ -38,3 +38,10 @@ do_configure[noexec] = "1"
38do_compile[noexec] = "1" 38do_compile[noexec] = "1"
39do_install[noexec] = "1" 39do_install[noexec] = "1"
40do_populate_sysroot[noexec] = "1" 40do_populate_sysroot[noexec] = "1"
41
42python () {
43 initman = d.getVar("VIRTUAL-RUNTIME_init_manager", True)
44 if initman and initman in ['sysvinit', 'systemd'] and not base_contains('DISTRO_FEATURES', initman, True, False, d):
45 bb.fatal("Please ensure that your setting of VIRTUAL-RUNTIME_init_manager (%s) matches the entries enabled in DISTRO_FEATURES" % initman)
46}
47