mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-06-05 02:50:46 +00:00
systemd.bbclass: set INHIBIT_UPDATERCD_BBCLASS like oe-core does now
This commit is contained in:
@@ -33,6 +33,14 @@ def get_package_var(d, var, pkg):
|
|||||||
return val
|
return val
|
||||||
|
|
||||||
def systemd_after_parse(d):
|
def systemd_after_parse(d):
|
||||||
|
features = d.getVar("DISTRO_FEATURES", True).split()
|
||||||
|
# If the distro features have systemd but not sysvinit, inhibit update-rcd
|
||||||
|
# from doing any work so that pure-systemd images don't have redundant init
|
||||||
|
# files.
|
||||||
|
if "systemd" in features:
|
||||||
|
if "sysvinit" not in features:
|
||||||
|
d.setVar("INHIBIT_UPDATERCD_BBCLASS", "1")
|
||||||
|
|
||||||
def systemd_check_vars():
|
def systemd_check_vars():
|
||||||
if d.getVar('BB_WORKERCONTEXT', True) is not None:
|
if d.getVar('BB_WORKERCONTEXT', True) is not None:
|
||||||
return
|
return
|
||||||
|
|||||||
Reference in New Issue
Block a user