OSDN Git Service

Promote help to global config option, teach error_exit() to output usage message...
[android-x86/external-toybox.git] / Config.in
1 mainmenu "ToyBox Configuration"
2
3 menu "Global settings"
4
5 config HELP
6         bool "help"
7         default y
8         help
9           usage: help [command]
10
11           Show usage information for toybox commands.
12
13 config HELP_LONG
14         bool "Verbose help text"
15         default y
16         depends on HELP
17         help
18           Show more than one line of help information per command.
19
20
21 config TOYBOX_FREE
22         bool "Free memory unnecessarily"
23         default n
24         help
25           When a program exits, the operating system will clean up after it
26           (free memory, close files, etc).  To save size, toybox usually relies
27           on this behavior.  If you're running toybox under a debugger or
28           without a real OS (ala newlib+libgloss), enable this to make toybox
29           clean up after itself.
30
31 config TOYBOX_DEBUG
32         bool "Debugging tests"
33         default n
34         help
35           Enable extra checks for debugging purposes.
36
37 endmenu
38
39 source toys/Config.in