aboutsummaryrefslogtreecommitdiff
path: root/findutils
diff options
context:
space:
mode:
authorandersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277>2002-12-05 08:41:41 +0000
committerandersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277>2002-12-05 08:41:41 +0000
commite40a650628ce6b03e67c4c6d96ea396e7bd2afb3 (patch)
tree72904548bb54dcaf78017d3b35296765437e0bd5 /findutils
parent49ec1a2dc6dfba670b3659286524fd5baf12e6fe (diff)
downloadbusybox-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 'findutils')
-rw-r--r--findutils/Config.in70
-rw-r--r--findutils/config.in23
2 files changed, 70 insertions, 23 deletions
diff --git a/findutils/Config.in b/findutils/Config.in
new file mode 100644
index 000000000..42400ffb8
--- /dev/null
+++ b/findutils/Config.in
@@ -0,0 +1,70 @@
1#
2# For a description of the syntax of this configuration file,
3# see scripts/kbuild/config-language.txt.
4#
5
6menu "Finding Utilities"
7
8config CONFIG_FIND
9 bool "find"
10 default n
11 help
12 Please submit a patch to add help text for this item.
13
14config CONFIG_FEATURE_FIND_MTIME
15 bool " Enable modified time matching (-mtime) option"
16 default y
17 depends on CONFIG_FIND
18 help
19 Please submit a patch to add help text for this item.
20
21config CONFIG_FEATURE_FIND_PERM
22 bool " Enable permissions matching (-perm) option"
23 default y
24 depends on CONFIG_FIND
25 help
26 Please submit a patch to add help text for this item.
27
28config CONFIG_FEATURE_FIND_TYPE
29 bool " Enable filetype matching (-type) option"
30 default y
31 depends on CONFIG_FIND
32 help
33 Please submit a patch to add help text for this item.
34
35config CONFIG_FEATURE_FIND_XDEV
36 bool " Enable stay in filesystem (-xdev) option"
37 default y
38 depends on CONFIG_FIND
39 help
40 Please submit a patch to add help text for this item.
41
42config CONFIG_GREP
43 bool "grep"
44 default n
45 help
46 Please submit a patch to add help text for this item.
47
48config CONFIG_FEATURE_GREP_EGREP_ALIAS
49 bool " Support extended regular expressions (egrep & grep -E)"
50 default y
51 depends on CONFIG_GREP
52 help
53 Please submit a patch to add help text for this item.
54
55config CONFIG_FEATURE_GREP_CONTEXT
56 bool " Enable before and after context flags (-A, -B and -C)"
57 default y
58 depends on CONFIG_GREP
59 help
60 Please submit a patch to add help text for this item.
61
62config CONFIG_XARGS
63 bool "xargs"
64 default n
65 help
66 Please submit a patch to add help text for this item.
67
68
69endmenu
70
diff --git a/findutils/config.in b/findutils/config.in
deleted file mode 100644
index 41a23c00a..000000000
--- a/findutils/config.in
+++ /dev/null
@@ -1,23 +0,0 @@
1#
2# For a description of the syntax of this configuration file,
3# see scripts/kbuild/config-language.txt.
4#
5
6mainmenu_option next_comment
7comment 'Finding Utilities'
8
9bool 'find' CONFIG_FIND
10if [ "$CONFIG_FIND" = "y" ] ; then
11 bool ' Enable modified time matching (-mtime) option' CONFIG_FEATURE_FIND_MTIME
12 bool ' Enable permissions matching (-perm) option' CONFIG_FEATURE_FIND_PERM
13 bool ' Enable filetype matching (-type) option' CONFIG_FEATURE_FIND_TYPE
14 bool ' Enable stay in filesystem (-xdev) option' CONFIG_FEATURE_FIND_XDEV
15fi
16bool 'grep' CONFIG_GREP
17if [ "$CONFIG_GREP" = "y" ] ; then
18 bool ' Support extended regular expressions (egrep & grep -E)' CONFIG_FEATURE_GREP_EGREP_ALIAS
19 bool ' Enable before and after context flags (-A, -B and -C)' CONFIG_FEATURE_GREP_CONTEXT
20fi
21bool 'xargs' CONFIG_XARGS
22endmenu
23