blob: 835e703b86910ed35b1110df4722b44fc16d7155 [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
Rob Landleyde05a702007-01-31 14:37:01 -050035config TOYBOX_FREE
landley5257cf52006-10-31 23:30:06 -050036 bool "Free memory unnecessarily"
37 default n
38 help
39 When a program exits, the operating system will clean up after it
40 (free memory, close files, etc). To save size, toybox usually relies
41 on this behavior. If you're running toybox under a debugger or
42 without a real OS (ala newlib+libgloss), enable this to make toybox
43 clean up after itself.
44
Rob Landleyde05a702007-01-31 14:37:01 -050045config TOYBOX_DEBUG
Rob Landley8324b892006-11-19 02:49:22 -050046 bool "Debugging tests"
47 default n
48 help
49 Enable extra checks for debugging purposes.
50
landley5257cf52006-10-31 23:30:06 -050051endmenu