landley | 5257cf5 | 2006-10-31 23:30:06 -0500 | [diff] [blame] | 1 | mainmenu "ToyBox Configuration" |
| 2 | |
Rob Landley | 76ec485 | 2012-10-21 17:57:23 -0500 | [diff] [blame] | 3 | |
| 4 | source generated/Config.probed |
| 5 | source generated/Config.in |
| 6 | |
| 7 | comment "" |
| 8 | |
Rob Landley | 3a9241a | 2012-08-25 14:25:22 -0500 | [diff] [blame] | 9 | menu "Toybox global settings" |
landley | 5257cf5 | 2006-10-31 23:30:06 -0500 | [diff] [blame] | 10 | |
Rob Landley | 2896480 | 2008-01-19 17:08:39 -0600 | [diff] [blame] | 11 | config TOYBOX |
| 12 | bool |
| 13 | default n |
Rob Landley | d06c58d | 2007-10-11 15:36:36 -0500 | [diff] [blame] | 14 | help |
Rob Landley | 2896480 | 2008-01-19 17:08:39 -0600 | [diff] [blame] | 15 | usage: toybox [command] [arguments...] |
Rob Landley | d06c58d | 2007-10-11 15:36:36 -0500 | [diff] [blame] | 16 | |
Rob Landley | 2896480 | 2008-01-19 17:08:39 -0600 | [diff] [blame] | 17 | With no arguments, shows available commands. First argument is |
| 18 | name of a command to run, followed by any arguments to that command. |
Rob Landley | d06c58d | 2007-10-11 15:36:36 -0500 | [diff] [blame] | 19 | |
Rob Landley | e0377fb | 2010-01-05 12:17:05 -0600 | [diff] [blame] | 20 | config 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 Landley | f01503d | 2012-02-02 07:26:39 -0600 | [diff] [blame] | 28 | config 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 Janda | 250e005 | 2012-11-21 20:38:29 +0100 | [diff] [blame] | 35 | config TOYBOX_I18N |
| 36 | bool "Internalization support" |
| 37 | default y |
| 38 | help |
| 39 | Add support for locales in commands. |
| 40 | |
Rob Landley | de05a70 | 2007-01-31 14:37:01 -0500 | [diff] [blame] | 41 | config TOYBOX_FREE |
landley | 5257cf5 | 2006-10-31 23:30:06 -0500 | [diff] [blame] | 42 | 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 Landley | de05a70 | 2007-01-31 14:37:01 -0500 | [diff] [blame] | 51 | config TOYBOX_DEBUG |
Rob Landley | 8324b89 | 2006-11-19 02:49:22 -0500 | [diff] [blame] | 52 | bool "Debugging tests" |
| 53 | default n |
| 54 | help |
| 55 | Enable extra checks for debugging purposes. |
| 56 | |
landley | 5257cf5 | 2006-10-31 23:30:06 -0500 | [diff] [blame] | 57 | endmenu |