Age | Commit message (Collapse) | Author | |
---|---|---|---|
2016-10-05 | Explain some generic argument parsing features in toybox --help. | Rob Landley | |
2016-10-01 | Move --version handling next to --help handling, so it applies to all commands. | Rob Landley | |
Say "toybox" before version string. Tweak sed to preserve lie-to-autoconf. | |||
2016-07-15 | Add optional openssl accelerated versions of hash functions, loosely based on | Rob Landley | |
a patch from Elliott Hughes, who said: [PATCH] Add support for libcrypto for MD5/SHA. Orders of magnitude faster (for architectures where OpenSSL/BoringSSL has optimized assembler). Also adds sha224sum, sha256sum, sha384sum, and sha512sum for folks building with libcrypto. The fallback portable C implementations could easily be refactored to be API-compatible, but I don't know whether they'd stay here or move to lib/ so I've left that part alone for now. | |||
2015-08-29 | Menuconfig option for musl-libc pretending mmu is just pining for the fijords. | Rob Landley | |
2015-07-31 | Whitespace. | Rob Landley | |
2015-04-15 | Put SELINUX in a a menu, and add config option for SMACK. | Rob Landley | |
2015-04-08 | Update multiplexer help text for --version | Rob Landley | |
2015-01-16 | This patch adds a TOYBOX_SELINUX configuration option to control both | Elliott Hughes | |
the SELinux commands (such as chcon) and the SELinux-specific options to regular commands (such as ls -Z). This lets us #include <selinux/selinux.h> in portability.h. I've also fixed chcon to insist on being given the a context argument. This patch also adds -Z to id and fixes id's regular output (-G should be separated by spaces, non-G output should be separated by commas, and you don't want a double comma where the egid is omitted from the list of groups). | |||
2014-10-20 | Add TOYBOX_NORECURSE so xexec() won't make internal function calls. | Rob Landley | |
2014-09-20 | Typo from the dawn of time: toybox is not capitalized the way BusyBox was. | Rob Landley | |
It's just a word. Capitalize at the start of the sentence, otherwise don't. Yeah, it could be always capitalized as a proper name but since the command "toybox" is all lower case, that would be weird. | |||
2014-08-18 | Cleanups on useradd/groupadd/groupdel, and put TOYBOX_UID_SYS and ↵ | Rob Landley | |
TOYBOX_UID_USR in the top level Config. | |||
2014-06-10 | Update toybox help to say how to install the static binary. | Rob Landley | |
2013-08-30 | Add scripts/single.sh to build individual non-multiplexed standalone commands. | Rob Landley | |
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. | |||
2013-07-19 | Start of TOYBOX_SINGLE support, for building standalone commands with no ↵ | Rob Landley | |
multiplexer. | |||
2013-06-30 | Add config option for --help support in all commands. | Rob Landley | |
2013-06-16 | Typo fix | Rob Landley | |
2013-04-14 | Move guts of help command into show_help() in lib/help.c, with config ↵ | Rob Landley | |
TOYBOX_HELP controlling infrastructure. | |||
2013-04-14 | Tweak help text. | Rob Landley | |
2012-11-21 | Make internalization support optional | Felix Janda | |
2012-10-21 | Put the commands at the start of menuconfig and the toybox library options ↵ | Rob Landley | |
at the end. (Aesthetic tweak.) | |||
2012-08-25 | Move commands into "posix", "lsb", and "other" menus/directories. | Rob Landley | |
2012-02-23 | Don't mix the the probed symbols with the command symbols. | Rob Landley | |
2012-02-02 | Commit 415 needs the other two files. (Oops.) | Rob Landley | |
2010-01-05 | Add TOYBOX_SUID. | Rob Landley | |
2008-01-19 | Zap toys/Config.in and instead create generated/Config.in from contents of | Rob Landley | |
toys/*.c. Move relevant info into comment at the top of each toys/*.c. Also convert more of Makefile into a thin wrapper around shell scripts that actually do the work. (Makefile is only still there for the user interface.) | |||
2007-10-11 | Promote help to global config option, teach error_exit() to output usage ↵ | Rob Landley | |
message when called from get_optflags(). | |||
2007-01-31 | Add "make defconfig". Modify global options to start with CONFIG_TOYBOX_. | Rob Landley | |
2006-11-19 | New option parsing infrastructure (doesn't use getopt). Hook it up to | Rob Landley | |
existing applets. Still a bit buggy, but bits of it work. | |||
2006-11-02 | Thinko: the Config.in for the toys should be in ./toys, not ./lib. | Rob Landley | |
2006-11-01 | The Config files don't need the CONFIG_ prefix. | landley | |
2006-10-31 | Add menuconfig, plus some basic Config info, lots of which is just future | landley | |
plans for toysh. Nothing's currently _using_ this config info, but at least it's being generated now. |