diff options
author | John Crispin <blogic@openwrt.org> | 2013-03-13 18:11:31 +0000 |
---|---|---|
committer | John Crispin <blogic@openwrt.org> | 2013-03-13 18:11:31 +0000 |
commit | 23f96f4fefd6c467ed9672f33154d0e17b0c65bb (patch) | |
tree | 8a8d7f8e0e7d78b46e33ab21acf61a920630e684 /package/busybox/config | |
parent | b715f860d7712b66a5a353026235cccc68a38c46 (diff) | |
download | master-187ad058-23f96f4fefd6c467ed9672f33154d0e17b0c65bb.tar.gz master-187ad058-23f96f4fefd6c467ed9672f33154d0e17b0c65bb.tar.bz2 master-187ad058-23f96f4fefd6c467ed9672f33154d0e17b0c65bb.zip |
[busybox] make init and logread depend on !PROCD_INIT
Signed-off-by: John Crispin <blogic@openwrt.org>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@36005 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/busybox/config')
-rw-r--r-- | package/busybox/config/init/Config.in | 1 | ||||
-rw-r--r-- | package/busybox/config/sysklogd/Config.in | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/package/busybox/config/init/Config.in b/package/busybox/config/init/Config.in index 61c20140b7..4b3c8dd160 100644 --- a/package/busybox/config/init/Config.in +++ b/package/busybox/config/init/Config.in @@ -73,6 +73,7 @@ config BUSYBOX_CONFIG_INIT bool "init" default y select BUSYBOX_CONFIG_FEATURE_SYSLOG + depends on !PROCD_INIT help init is the first program run when the system boots. diff --git a/package/busybox/config/sysklogd/Config.in b/package/busybox/config/sysklogd/Config.in index 20e1aff063..087a5b4e50 100644 --- a/package/busybox/config/sysklogd/Config.in +++ b/package/busybox/config/sysklogd/Config.in @@ -96,7 +96,7 @@ config BUSYBOX_CONFIG_FEATURE_IPC_SYSLOG_BUFFER_SIZE config BUSYBOX_CONFIG_LOGREAD bool "logread" default y - depends on BUSYBOX_CONFIG_FEATURE_IPC_SYSLOG + depends on BUSYBOX_CONFIG_FEATURE_IPC_SYSLOG && !PROCD_INIT help If you enabled Circular Buffer support, you almost certainly want to enable this feature as well. This |