History log of /external/toybox/scripts/single.sh
Revision Date Author Comments (<<< Hide modified files) (Show modified files >>>)
8b6bff527b7684c009e3a817d993818b075c590c 04-May-2015 Rob Landley <rob@landley.net> Yank smack from singleconfig.

Need to come up with a better solution to this, but the problem is that
single.sh's symbol enabling isn't dependency aware, and "silentoldconfig"
prompts. I suspect the better solution is "write a kconfig replacement".
/external/toybox/scripts/single.sh
55fc1603b4162786565106e703da14106295171e 14-Feb-2015 Rob Landley <rob@landley.net> Fix --help for single.sh builds.
/external/toybox/scripts/single.sh
912b2be5e53f2656727beb3158c8d97ad6b1f6f2 08-Feb-2015 Rob Landley <rob@landley.net> Build standalone commands where "depends on" config entries need to be switched on.
/external/toybox/scripts/single.sh
5d4fa5742fee322187d80bc5a9a55d41a621f8b6 28-Sep-2014 Rob Landley <rob@landley.net> Multi-build single.sh should exit with an error when build breaks.
/external/toybox/scripts/single.sh
0b63d2671b2b11795c388943093d8b8269f665d6 28-Sep-2014 Rob Landley <rob@landley.net> Allow single.sh to build more than one command per invocation.
/external/toybox/scripts/single.sh
be3a48c269cfa4cf35e0bb31155553a8d3c6d6c1 13-Aug-2014 Rob Landley <rob@landley.net> Enable a command's sub-options in single builds.
/external/toybox/scripts/single.sh
825d7148d057a012fd8df0851a768a0d438f6c61 03-Aug-2014 Rob Landley <rob@landley.net> Add --help support to single.sh builds.
/external/toybox/scripts/single.sh
1e1f4412d8c4ef7c0442b62ee507ca48a07ade06 27-Jul-2014 Rob Landley <rob@landley.net> Patch from Isaac Dunham to work around the deficiencies in musl's regex engine (which break building under alpine linux).

Musl's regex engine doesn't support \| which changes the behavior of busybox
sed, breaks toybox grep... I need to come up with a musl patch, in the meantime
here's a workaround.
/external/toybox/scripts/single.sh
63352139e7b957c930a756563f7cf2a75c8955de 22-Jul-2014 Rob Landley <rob@landley.net> Have single.sh enable I18N and FLOAT.
/external/toybox/scripts/single.sh
3be2e3ea9fb3d0485a9ab4ef790b3dbd8eb92510 18-May-2014 Rob Landley <rob@landley.net> Teach singleconfig to switch on sub-options of commands it's building.

If we're building a standalone version, it might as well have all the bells and whistles enabled.
/external/toybox/scripts/single.sh
d04dc1feb92a279e27e4487c502944f454d43837 30-Aug-2013 Rob Landley <rob@landley.net> 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.
/external/toybox/scripts/single.sh