blob: 73ab01e604feba8da206525dd63bf40dfc235c97 [file] [log] [blame]
landley5257cf52006-10-31 23:30:06 -05001mainmenu "ToyBox Configuration"
2
Rob Landley76ec4852012-10-21 17:57:23 -05003
4source generated/Config.probed
5source generated/Config.in
6
7comment ""
8
Rob Landley3a9241a2012-08-25 14:25:22 -05009menu "Toybox global settings"
landley5257cf52006-10-31 23:30:06 -050010
Rob Landley28964802008-01-19 17:08:39 -060011config TOYBOX
12 bool
13 default n
Rob Landleyd06c58d2007-10-11 15:36:36 -050014 help
Rob Landley28964802008-01-19 17:08:39 -060015 usage: toybox [command] [arguments...]
Rob Landleyd06c58d2007-10-11 15:36:36 -050016
Rob Landley28964802008-01-19 17:08:39 -060017 With no arguments, shows available commands. First argument is
18 name of a command to run, followed by any arguments to that command.
Rob Landleyd06c58d2007-10-11 15:36:36 -050019
Rob Landleye0377fb2010-01-05 12:17:05 -060020config TOYBOX_SUID
21 bool "SUID support"
22 default y
23 help
24 Support for suid commands, which run as root. This means toybox must
25 be installed suid root, and drops permissions before running commands
26 which do not require root access.
27
Rob Landleyf01503d2012-02-02 07:26:39 -060028config TOYBOX_FLOAT
29 bool "Floating point support"
30 default y
31 help
32 Include floating point support infrastructure and commands that
33 require it.
34
Felix Janda250e0052012-11-21 20:38:29 +010035config TOYBOX_I18N
36 bool "Internalization support"
37 default y
38 help
39 Add support for locales in commands.
40
Rob Landleyde05a702007-01-31 14:37:01 -050041config TOYBOX_FREE
landley5257cf52006-10-31 23:30:06 -050042 bool "Free memory unnecessarily"
43 default n
44 help
45 When a program exits, the operating system will clean up after it
46 (free memory, close files, etc). To save size, toybox usually relies
47 on this behavior. If you're running toybox under a debugger or
48 without a real OS (ala newlib+libgloss), enable this to make toybox
49 clean up after itself.
50
Rob Landleyde05a702007-01-31 14:37:01 -050051config TOYBOX_DEBUG
Rob Landley8324b892006-11-19 02:49:22 -050052 bool "Debugging tests"
53 default n
54 help
55 Enable extra checks for debugging purposes.
56
landley5257cf52006-10-31 23:30:06 -050057endmenu