OSDN Git Service

Make cp pass most of its test suite. Still need to add symlink support.
[android-x86/external-toybox.git] / Config.in
1 mainmenu "ToyBox Configuration"
2
3 menu "Global settings"
4
5 config TOYBOX
6         bool
7         default n
8         help
9           usage: toybox [command] [arguments...]
10
11           With no arguments, shows available commands.  First argument is
12           name of a command to run, followed by any arguments to that command.
13
14 config TOYBOX_FREE
15         bool "Free memory unnecessarily"
16         default n
17         help
18           When a program exits, the operating system will clean up after it
19           (free memory, close files, etc).  To save size, toybox usually relies
20           on this behavior.  If you're running toybox under a debugger or
21           without a real OS (ala newlib+libgloss), enable this to make toybox
22           clean up after itself.
23
24 config TOYBOX_DEBUG
25         bool "Debugging tests"
26         default n
27         help
28           Enable extra checks for debugging purposes.
29
30 endmenu
31
32 menu "Toys"
33 source generated/Config.in
34 endmenu