aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2006-03-10 23:17:17 +0000
committerMike Frysinger <vapier@gentoo.org>2006-03-10 23:17:17 +0000
commit72d59dbd768f92ad3ce4723b30b490dbe29fbaba (patch)
tree4c0ff24619656b6da43ee3f1c991f4708b077fee
parentead19306f5d6d5d5ef49165aa518e525de8e84b2 (diff)
downloadbusybox-w32-72d59dbd768f92ad3ce4723b30b490dbe29fbaba.tar.gz
busybox-w32-72d59dbd768f92ad3ce4723b30b490dbe29fbaba.tar.bz2
busybox-w32-72d59dbd768f92ad3ce4723b30b490dbe29fbaba.zip
rearrange the menu a little to split general settings from applet selection
-rw-r--r--Config.in133
1 files changed, 69 insertions, 64 deletions
diff --git a/Config.in b/Config.in
index e1d5020a7..f8a039915 100644
--- a/Config.in
+++ b/Config.in
@@ -9,6 +9,8 @@ config HAVE_DOT_CONFIG
9 bool 9 bool
10 default y 10 default y
11 11
12comment "Busybox Settings"
13
12menu "General Configuration" 14menu "General Configuration"
13 15
14choice 16choice
@@ -260,70 +262,6 @@ config CONFIG_BUILD_AT_ONCE
260 262
261endmenu 263endmenu
262 264
263menu 'Installation Options'
264
265config CONFIG_INSTALL_NO_USR
266 bool "Don't use /usr"
267 default n
268 help
269 Disable use of /usr. Don't activate this option if you don't know
270 that you really want this behaviour.
271
272choice
273 prompt "Applets links"
274 default CONFIG_INSTALL_APPLET_SYMLINKS
275 help
276 Choose how you install applets links.
277
278config CONFIG_INSTALL_APPLET_SYMLINKS
279 bool "as soft-links"
280 help
281 Install applets as soft-links to the busybox binary. This needs some
282 free inodes on the filesystem, but might help with filesystem
283 generators that can't cope with hard-links.
284
285config CONFIG_INSTALL_APPLET_HARDLINKS
286 bool "as hard-links"
287 help
288 Install applets as hard-links to the busybox binary. This might count
289 on a filesystem with few inodes.
290
291config CONFIG_INSTALL_APPLET_DONT
292 bool
293 prompt "not installed"
294 depends on CONFIG_FEATURE_INSTALLER || CONFIG_FEATURE_SH_STANDALONE_SHELL
295 help
296 Do not install applets links. Usefull when using the -install feature
297 or a standalone shell for rescue pruposes.
298
299endchoice
300
301config PREFIX
302 string "BusyBox installation prefix"
303 default "./_install"
304 help
305 Define your directory to install BusyBox files/subdirs in.
306
307endmenu
308
309source archival/Config.in
310source coreutils/Config.in
311source console-tools/Config.in
312source debianutils/Config.in
313source editors/Config.in
314source findutils/Config.in
315source init/Config.in
316source loginutils/Config.in
317source e2fsprogs/Config.in
318source modutils/Config.in
319source util-linux/Config.in
320source miscutils/Config.in
321source networking/Config.in
322source procps/Config.in
323source shell/Config.in
324source sysklogd/Config.in
325source libbb/Config.in
326
327menu 'Debugging Options' 265menu 'Debugging Options'
328 266
329config CONFIG_DEBUG 267config CONFIG_DEBUG
@@ -390,3 +328,70 @@ config CONFIG_DEBUG_YANK_SUSv2
390 yank from renice too.) 328 yank from renice too.)
391 329
392endmenu 330endmenu
331
332menu 'Installation Options'
333
334config CONFIG_INSTALL_NO_USR
335 bool "Don't use /usr"
336 default n
337 help
338 Disable use of /usr. Don't activate this option if you don't know
339 that you really want this behaviour.
340
341choice
342 prompt "Applets links"
343 default CONFIG_INSTALL_APPLET_SYMLINKS
344 help
345 Choose how you install applets links.
346
347config CONFIG_INSTALL_APPLET_SYMLINKS
348 bool "as soft-links"
349 help
350 Install applets as soft-links to the busybox binary. This needs some
351 free inodes on the filesystem, but might help with filesystem
352 generators that can't cope with hard-links.
353
354config CONFIG_INSTALL_APPLET_HARDLINKS
355 bool "as hard-links"
356 help
357 Install applets as hard-links to the busybox binary. This might count
358 on a filesystem with few inodes.
359
360config CONFIG_INSTALL_APPLET_DONT
361 bool
362 prompt "not installed"
363 depends on CONFIG_FEATURE_INSTALLER || CONFIG_FEATURE_SH_STANDALONE_SHELL
364 help
365 Do not install applets links. Usefull when using the -install feature
366 or a standalone shell for rescue pruposes.
367
368endchoice
369
370config PREFIX
371 string "BusyBox installation prefix"
372 default "./_install"
373 help
374 Define your directory to install BusyBox files/subdirs in.
375
376endmenu
377
378source libbb/Config.in
379
380comment "Applets"
381
382source archival/Config.in
383source coreutils/Config.in
384source console-tools/Config.in
385source debianutils/Config.in
386source editors/Config.in
387source findutils/Config.in
388source init/Config.in
389source loginutils/Config.in
390source e2fsprogs/Config.in
391source modutils/Config.in
392source util-linux/Config.in
393source miscutils/Config.in
394source networking/Config.in
395source procps/Config.in
396source shell/Config.in
397source sysklogd/Config.in