[oe] [PATCH] systemd.bbclass: set INHIBIT_UPDATERCD_BBCLASS like oe-core does now

Martin Jansa martin.jansa at gmail.com
Fri Mar 29 12:07:58 UTC 2013


---
 meta-systemd/classes/systemd.bbclass | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/meta-systemd/classes/systemd.bbclass b/meta-systemd/classes/systemd.bbclass
index f2a0363..4069367 100644
--- a/meta-systemd/classes/systemd.bbclass
+++ b/meta-systemd/classes/systemd.bbclass
@@ -33,6 +33,14 @@ def get_package_var(d, var, pkg):
     return val
 
 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():
         if d.getVar('BB_WORKERCONTEXT', True) is not None:
             return
-- 
1.8.1.5





More information about the Openembedded-devel mailing list