blob: 62c2ec0a979272cc53509854b7ce5161f2a5d0bc [file] [log] [blame]
landley5257cf52006-10-31 23:30:06 -05001mainmenu "ToyBox Configuration"
2
3menu "Global settings"
4
Rob Landleyd06c58d2007-10-11 15:36:36 -05005config HELP
6 bool "help"
7 default y
8 help
9 usage: help [command]
10
11 Show usage information for toybox commands.
12
13config 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
Rob Landleyde05a702007-01-31 14:37:01 -050021config TOYBOX_FREE
landley5257cf52006-10-31 23:30:06 -050022 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
Rob Landleyde05a702007-01-31 14:37:01 -050031config TOYBOX_DEBUG
Rob Landley8324b892006-11-19 02:49:22 -050032 bool "Debugging tests"
33 default n
34 help
35 Enable extra checks for debugging purposes.
36
landley5257cf52006-10-31 23:30:06 -050037endmenu
38
Rob Landley3c49a452006-11-02 11:20:53 -050039source toys/Config.in