diff options
| author | andersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2002-12-05 08:41:41 +0000 |
|---|---|---|
| committer | andersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2002-12-05 08:41:41 +0000 |
| commit | e40a650628ce6b03e67c4c6d96ea396e7bd2afb3 (patch) | |
| tree | 72904548bb54dcaf78017d3b35296765437e0bd5 /sysklogd | |
| parent | 49ec1a2dc6dfba670b3659286524fd5baf12e6fe (diff) | |
| download | busybox-w32-e40a650628ce6b03e67c4c6d96ea396e7bd2afb3.tar.gz busybox-w32-e40a650628ce6b03e67c4c6d96ea396e7bd2afb3.tar.bz2 busybox-w32-e40a650628ce6b03e67c4c6d96ea396e7bd2afb3.zip | |
Yet another major rework of the BusyBox config system, using the considerably
modified Kbuild system I put into uClibc. With this, there should be no more
need to modify Rules.mak since I've moved all the interesting options into the
config system. I think I've got everything updated, but you never know, I may
have made some mistakes, so watch closely.
-Erik
git-svn-id: svn://busybox.net/trunk/busybox@6102 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'sysklogd')
| -rw-r--r-- | sysklogd/Config.in | 48 | ||||
| -rw-r--r-- | sysklogd/config.in | 21 |
2 files changed, 48 insertions, 21 deletions
diff --git a/sysklogd/Config.in b/sysklogd/Config.in new file mode 100644 index 000000000..5bded0675 --- /dev/null +++ b/sysklogd/Config.in | |||
| @@ -0,0 +1,48 @@ | |||
| 1 | # | ||
| 2 | # For a description of the syntax of this configuration file, | ||
| 3 | # see scripts/kbuild/config-language.txt. | ||
| 4 | # | ||
| 5 | |||
| 6 | menu "System Logging Utilities" | ||
| 7 | |||
| 8 | config CONFIG_KLOGD | ||
| 9 | bool "klogd" | ||
| 10 | default n | ||
| 11 | help | ||
| 12 | Please submit a patch to add help text for this item. | ||
| 13 | |||
| 14 | config CONFIG_LOGGER | ||
| 15 | bool "logger" | ||
| 16 | default n | ||
| 17 | help | ||
| 18 | Please submit a patch to add help text for this item. | ||
| 19 | |||
| 20 | config CONFIG_SYSLOGD | ||
| 21 | bool "syslogd" | ||
| 22 | default n | ||
| 23 | help | ||
| 24 | Please submit a patch to add help text for this item. | ||
| 25 | |||
| 26 | config CONFIG_FEATURE_REMOTE_LOG | ||
| 27 | bool " Remote Log support" | ||
| 28 | default n | ||
| 29 | depends on CONFIG_SYSLOGD | ||
| 30 | help | ||
| 31 | Please submit a patch to add help text for this item. | ||
| 32 | |||
| 33 | config CONFIG_FEATURE_IPC_SYSLOG | ||
| 34 | bool " Circular Buffer support" | ||
| 35 | default n | ||
| 36 | depends on CONFIG_SYSLOGD | ||
| 37 | help | ||
| 38 | Please submit a patch to add help text for this item. | ||
| 39 | |||
| 40 | config CONFIG_LOGREAD | ||
| 41 | bool " logread" | ||
| 42 | default y | ||
| 43 | depends on CONFIG_FEATURE_IPC_SYSLOG | ||
| 44 | help | ||
| 45 | Please submit a patch to add help text for this item. | ||
| 46 | |||
| 47 | endmenu | ||
| 48 | |||
diff --git a/sysklogd/config.in b/sysklogd/config.in deleted file mode 100644 index be8b16066..000000000 --- a/sysklogd/config.in +++ /dev/null | |||
| @@ -1,21 +0,0 @@ | |||
| 1 | # | ||
| 2 | # For a description of the syntax of this configuration file, | ||
| 3 | # see scripts/kbuild/config-language.txt. | ||
| 4 | # | ||
| 5 | |||
| 6 | mainmenu_option next_comment | ||
| 7 | comment 'System Logging Utilities' | ||
| 8 | |||
| 9 | bool 'klogd' CONFIG_KLOGD | ||
| 10 | bool 'logger' CONFIG_LOGGER | ||
| 11 | bool 'syslogd' CONFIG_SYSLOGD | ||
| 12 | if [ "$CONFIG_SYSLOGD" = "y" ] ; then | ||
| 13 | bool ' Remote Log support ' CONFIG_FEATURE_REMOTE_LOG | ||
| 14 | bool ' Circular Buffer support ' CONFIG_FEATURE_IPC_SYSLOG | ||
| 15 | if [ "$CONFIG_FEATURE_IPC_SYSLOG" = "y" ] ; then | ||
| 16 | bool ' logread ' CONFIG_LOGREAD | ||
| 17 | fi | ||
| 18 | fi | ||
| 19 | |||
| 20 | endmenu | ||
| 21 | |||
