diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2006-09-09 12:18:46 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2006-09-09 12:18:46 +0000 |
commit | d797fcd72644f772090c79464d293f37607b9698 (patch) | |
tree | a8bce5f2cc86aa33d4c3141fc33cd1a49e934dbc /networking/udhcp | |
parent | 2f50aa42c54fb92347058e83965ea7a668ab04af (diff) | |
download | busybox-w32-d797fcd72644f772090c79464d293f37607b9698.tar.gz busybox-w32-d797fcd72644f772090c79464d293f37607b9698.tar.bz2 busybox-w32-d797fcd72644f772090c79464d293f37607b9698.zip |
udhcp: FEATURE_UDHCP_SYSLOG should be selected only if
udhcp[cd] really are going to use it.
Diffstat (limited to 'networking/udhcp')
-rw-r--r-- | networking/udhcp/Config.in | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/networking/udhcp/Config.in b/networking/udhcp/Config.in index 3954b467f..f01340192 100644 --- a/networking/udhcp/Config.in +++ b/networking/udhcp/Config.in | |||
@@ -6,7 +6,6 @@ | |||
6 | config CONFIG_APP_UDHCPD | 6 | config CONFIG_APP_UDHCPD |
7 | bool "udhcp Server (udhcpd)" | 7 | bool "udhcp Server (udhcpd)" |
8 | default n | 8 | default n |
9 | select CONFIG_FEATURE_SYSLOG | ||
10 | help | 9 | help |
11 | uDHCPd is a DHCP server geared primarily toward embedded systems, | 10 | uDHCPd is a DHCP server geared primarily toward embedded systems, |
12 | while striving to be fully functional and RFC compliant. | 11 | while striving to be fully functional and RFC compliant. |
@@ -27,7 +26,6 @@ config CONFIG_APP_DUMPLEASES | |||
27 | config CONFIG_APP_UDHCPC | 26 | config CONFIG_APP_UDHCPC |
28 | bool "udhcp Client (udhcpc)" | 27 | bool "udhcp Client (udhcpc)" |
29 | default n | 28 | default n |
30 | select CONFIG_FEATURE_SYSLOG | ||
31 | help | 29 | help |
32 | uDHCPc is a DHCP client geared primarily toward embedded systems, | 30 | uDHCPc is a DHCP client geared primarily toward embedded systems, |
33 | while striving to be fully functional and RFC compliant. | 31 | while striving to be fully functional and RFC compliant. |
@@ -41,6 +39,7 @@ config CONFIG_FEATURE_UDHCP_SYSLOG | |||
41 | bool "Log udhcp messages to syslog" | 39 | bool "Log udhcp messages to syslog" |
42 | default n | 40 | default n |
43 | depends on CONFIG_APP_UDHCPD || CONFIG_APP_UDHCPC | 41 | depends on CONFIG_APP_UDHCPD || CONFIG_APP_UDHCPC |
42 | select CONFIG_FEATURE_SYSLOG | ||
44 | help | 43 | help |
45 | If not daemonized, udhcpd prints its messages to stdout/stderr. | 44 | If not daemonized, udhcpd prints its messages to stdout/stderr. |
46 | If this option is selected, it will also log them to syslog. | 45 | If this option is selected, it will also log them to syslog. |