comparison Config.in @ 1032:40d0c96a8e89 draft

Add scripts/single.sh to build individual non-multiplexed standalone commands. Alas, you can't quite do this yet: make defconfig make for i in $(./toybox) do echo $i PREFIX=singles/ scripts/single.sh $i || break done Because the OLDTOY() aliases for commands won't build without the base command. And I can't just skip them because chown/chmod or mv/cp aren't the same thing.
author Rob Landley <rob@landley.net>
date Fri, 30 Aug 2013 01:53:31 -0500
parents caa05719070f
children 63d8181b0f92
comparison
equal deleted inserted replaced
1031:0d0c01ac5c63 1032:40d0c96a8e89
8 8
9 menu "Toybox global settings" 9 menu "Toybox global settings"
10 10
11 config TOYBOX 11 config TOYBOX
12 bool 12 bool
13 default n 13 default y
14 help 14 help
15 usage: toybox [command] [arguments...] 15 usage: toybox [command] [arguments...]
16 16
17 With no arguments, shows available commands. First argument is 17 With no arguments, shows available commands. First argument is
18 name of a command to run, followed by any arguments to that command. 18 name of a command to run, followed by any arguments to that command.
19
20 config TOYBOX_SINGLE
21 bool
22 default n
23 help
24 Build a single toybox command standalone with no multiplexer.
25 19
26 config TOYBOX_SUID 20 config TOYBOX_SUID
27 bool "SUID support" 21 bool "SUID support"
28 default y 22 default y
29 help 23 help