summaryrefslogtreecommitdiffstats
path: root/config/busybox/fileutils/Config.in
blob: 5cbe778262c06a0ec2de5bcde47165dffc5ec27e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
#
# For a description of the syntax of this configuration file,
# see scripts/kbuild/config-language.txt.
#

menu "File Utilities"
	depends on BUSYBOX

config BB_CONFIG_CHMOD
	bool "chmod"
	default n
	help
	  Please submit a patch to add help text for this item.

config BB_CONFIG_CHOWN
	bool "chown"
	default n
	help
	  Please submit a patch to add help text for this item.

config BB_CONFIG_CHGRP
	bool "chgrp"
	default n
	help
	  Please submit a patch to add help text for this item.

config BB_CONFIG_CP
	bool "cp"
	default n
	help
	  Please submit a patch to add help text for this item.

config BB_CONFIG_DD
	bool "dd"
	default n
	help
	  Please submit a patch to add help text for this item.

config BB_CONFIG_DF
	bool "df"
	default n
	help
	  Please submit a patch to add help text for this item.

config BB_CONFIG_DU
	bool "du"
	default n
	help
	  Please submit a patch to add help text for this item.

config BB_CONFIG_LN
	bool "ln"
	default n
	help
	  Please submit a patch to add help text for this item.

config BB_CONFIG_LS
	bool "ls"
	default n
	help
	  Please submit a patch to add help text for this item.

config BB_CONFIG_FEATURE_LS_FILETYPES
	bool "  Enable filetyping options (-p and -F)"
	default y
	depends on BB_CONFIG_LS
	help
	  Please submit a patch to add help text for this item.

config BB_CONFIG_FEATURE_LS_FOLLOWLINKS
	bool "  Enable symlinks dereferencing (-L)"
	default y
	depends on BB_CONFIG_LS
	help
	  Please submit a patch to add help text for this item.

config BB_CONFIG_FEATURE_LS_RECURSIVE
	bool "  Enable recursion (-R)"
	default y
	depends on BB_CONFIG_LS
	help
	  Please submit a patch to add help text for this item.

config BB_CONFIG_FEATURE_LS_SORTFILES
	bool "  Sort the file names"
	default y
	depends on BB_CONFIG_LS
	help
	  Please submit a patch to add help text for this item.

config BB_CONFIG_FEATURE_LS_TIMESTAMPS
	bool "  Show file timestamps"
	default y
	depends on BB_CONFIG_LS
	help
	  Please submit a patch to add help text for this item.

config BB_CONFIG_FEATURE_LS_USERNAME
	bool "  Show username/groupnames"
	default y
	depends on BB_CONFIG_LS
	help
	  Please submit a patch to add help text for this item.

config BB_CONFIG_FEATURE_LS_COLOR
	bool "  Use color to identify file types"
	default y
	depends on BB_CONFIG_LS
	help
	  Please submit a patch to add help text for this item.

config BB_CONFIG_MKDIR
	bool "mkdir"
	default n
	help
	  Please submit a patch to add help text for this item.

config BB_CONFIG_MKFIFO
	bool "mkfifo"
	default n
	help
	  Please submit a patch to add help text for this item.

config BB_CONFIG_MKNOD
	bool "mknod"
	default n
	help
	  Please submit a patch to add help text for this item.

config BB_CONFIG_MV
	bool "mv"
	default n
	help
	  Please submit a patch to add help text for this item.

config BB_CONFIG_RM
	bool "rm"
	default n
	help
	  Please submit a patch to add help text for this item.

config BB_CONFIG_RMDIR
	bool "rmdir"
	default n
	help
	  Please submit a patch to add help text for this item.

config BB_CONFIG_SYNC
	bool "sync"
	default n
	help
	  Please submit a patch to add help text for this item.

config BB_CONFIG_TOUCH
	bool "touch"
	default n
	help
	  Please submit a patch to add help text for this item.

comment "Common options for cp and mv"
    depends on BB_CONFIG_CP || BB_CONFIG_MV

config BB_CONFIG_FEATURE_PRESERVE_HARDLINKS
	bool "  Preserve hard links"
	default n
	depends on BB_CONFIG_CP || BB_CONFIG_MV
	help
	  Please submit a patch to add help text for this item.

comment "Common options for ls and more"
    depends on BB_CONFIG_LS || BB_CONFIG_MORE

config BB_CONFIG_FEATURE_AUTOWIDTH
	bool "  Calculate terminal & column widths"
	default n
	depends on BB_CONFIG_LS || BB_CONFIG_MORE
	help
	  Please submit a patch to add help text for this item.


comment "Common options for df, du, ls"
    depends on BB_CONFIG_DF || BB_CONFIG_DU || BB_CONFIG_LS

config BB_CONFIG_FEATURE_HUMAN_READABLE
	bool "  Support for human readable output (example 13k, 23M, 235G)"
	default n
	depends on BB_CONFIG_DF || BB_CONFIG_DU || BB_CONFIG_LS
	help
	  Please submit a patch to add help text for this item.

endmenu