Signed-off-by: Denys Dmytriyenko <[email protected]>
---
meta-arago-distro/conf/distro/arago.conf | 11 +++++++----
1 file changed, 7 insertions(+), 4 deletions(-)
diff --git a/meta-arago-distro/conf/distro/arago.conf
b/meta-arago-distro/conf/distro/arago.conf
index a8e9a4b..b434509 100644
--- a/meta-arago-distro/conf/distro/arago.conf
+++ b/meta-arago-distro/conf/distro/arago.conf
@@ -60,14 +60,17 @@ DISTRO_FEATURES = "${DISTRO_FEATURES_DEFAULT}
${DISTRO_FEATURES_LIBC}"
DISTRO_FEATURES_remove = "x11"
# Add additional distro features
-DISTRO_FEATURES_append = " pam wayland opengl systemd"
+DISTRO_FEATURES_append = " pam wayland opengl"
# Set global runtime providers for major components
-VIRTUAL-RUNTIME_dev_manager = "systemd"
-VIRTUAL-RUNTIME_init_manager = "systemd"
-VIRTUAL-RUNTIME_initscripts = "systemd-compat-units"
+ARAGO_SYSVINIT ?= "0"
+VIRTUAL-RUNTIME_dev_manager = "${@base_conditional("ARAGO_SYSVINIT", "1",
"udev", "systemd", d)}"
+VIRTUAL-RUNTIME_init_manager = "${@base_conditional("ARAGO_SYSVINIT", "1",
"sysvinit", "systemd", d)}"
+VIRTUAL-RUNTIME_initscripts = "${@base_conditional("ARAGO_SYSVINIT", "1",
"initscripts", "systemd-compat-units", d)}"
VIRTUAL-RUNTIME_login_manager = "busybox shadow"
+DISTRO_FEATURES_append = "${@base_conditional("ARAGO_SYSVINIT", "1", "", "
systemd", d)}"
+
# Set preferred Qt version
QT_PROVIDER ?= "qt5"
--
2.7.4
_______________________________________________
meta-arago mailing list
[email protected]
http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago