summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2018-03-17 14:07:38 +0100
committerWaldemar Brodkorb <wbx@openadk.org>2018-03-17 14:15:09 +0100
commit0ffbfbf75bd5f0bd219a60046284f76a726a44be (patch)
treed01c3a54dc6df4a922524cf13b2095a3966c7f10
parent3a9d2b85e384f9263527b9d524796d26728ec1f5 (diff)
use simpleinit for non busybox builds
-rw-r--r--target/config/Config.in.runtime9
1 files changed, 5 insertions, 4 deletions
diff --git a/target/config/Config.in.runtime b/target/config/Config.in.runtime
index 88fe079d1..6ff13706c 100644
--- a/target/config/Config.in.runtime
+++ b/target/config/Config.in.runtime
@@ -14,11 +14,16 @@ choice
prompt "init system"
depends on !ADK_APPLIANCE_TOOLCHAIN
default ADK_RUNTIME_INIT_SYSV if ADK_PACKAGE_BUSYBOX
+default ADK_RUNTIME_INIT_SIMPLEINIT if ADK_PACKAGE_TOOLBOX
config ADK_RUNTIME_INIT_SYSV
bool "Use busybox init"
depends on ADK_PACKAGE_BUSYBOX
+config ADK_RUNTIME_INIT_SIMPLEINIT
+ bool "Use a very simple init"
+ select ADK_PACKAGE_SIMPLEINIT
+
config ADK_RUNTIME_INIT_SYSVINIT
bool "Use system V init"
select ADK_PACKAGE_SYSVINIT
@@ -42,10 +47,6 @@ config ADK_RUNTIME_INIT_SYSTEMD
select ADK_TARGET_LIBC_WITH_LIBINTL_STUB if ADK_TARGET_LIB_UCLIBC_NG
depends on ADK_TARGET_LIB_GLIBC || ADK_TARGET_LIB_UCLIBC_NG
-config ADK_RUNTIME_INIT_SIMPLEINIT
- bool "Use a very simple init"
- select ADK_PACKAGE_SIMPLEINIT
-
endchoice
choice