Age | Commit message (Collapse) | Author | |
---|---|---|---|
2014-06-09 | When locale is enabled, sprintf("%.123s", str) is counting characters, not ↵ | Rob Landley | |
bytes, so we can't globally enable locale without opening stack/heap smashing vulnerabilities. Make commands individually request setlocale() using TOYFLAGS instead. | |||
2014-05-21 | Add generic_signal() handler, which sets toys.signal and writes byte to ↵ | Rob Landley | |
toys.signalfd if set. | |||
2014-05-05 | Fix bug reported by Ashwini Sharma: rebound has to be at the end or ↵ | Rob Landley | |
toy_init() doesn't zero the rest of the struct. | |||
2014-04-09 | modprobe: cleanup, incorporate Ashwini's fix for alias loading | Isaac Dunham | |
Move <fnmatch.h> to toys.h, since it's POSIX. Avoid duplicating code in an if/else block. Terser error messages, spelling. Don't always print the state. | |||
2014-03-29 | Group headers by standard (POSIX or LSB) or function (internationalization, ↵ | Rob Landley | |
networking). Move headers standards ignore (but which have been there >15 years) to lib/portability.h. Fold xregcomp into lib since it's posix. | |||
2014-03-28 | Add help -a (to show all commands) and -h (to produce HTML output). | Rob Landley | |
2013-11-02 | Merge toynet.h into toys.h: musl supports it and micromanaging uClibc config ↵ | Rob Landley | |
options isn't very interesting anymore. | |||
2013-10-03 | Switch flag generation from shell to C. | Rob Landley | |
This should actually generate FLAG_longopt 0 #defines for disabled bare longopts (ala ls without --color). Put temporary executables under "generated" (including instlist for install). | |||
2013-09-03 | Introduce libbuf analogous to toybuf but for use by lib/*.c. Change ↵ | Rob Landley | |
readfile() semantics to be able to read into an existing buffer, or malloc its own if that's NULL. | |||
2013-08-17 | su: cleanery | Strake | |
* make help message more like others * s/TT\.(.)Argu/TT.\1/g * move environ to toys.h * simplify failure messages * clear password before quit * not check what execve returns * -lc | |||
2013-08-15 | Forgot to check in toys.h when generated/oldtoys.h went in. (Oops.) | Rob Landley | |
2013-04-21 | Fix some comments from way back when toybox first started (in 2006), when I ↵ | Rob Landley | |
was still cleaning busybox-isms out of my head... | |||
2012-12-10 | Add stat submission to new "pending" directory, along with infrastructure to ↵ | Rob Landley | |
support pending. | |||
2012-12-01 | Add header that musl libc needs. | Rob Landley | |
2012-11-26 | Cleanup i18n support (#ifdefectomy, move global init to process launch). ↵ | Rob Landley | |
Teach make.sh to emit "#define FLAG_x 0" for options inside disabled USE macros so we can unconditionally refer to them. | |||
2012-11-21 | Make internalization support optional | Felix Janda | |
2012-11-16 | Add rebound support to intercept error_exit() and longjmp instead. | Rob Landley | |
2012-11-13 | Reindent to two spaces per level. Remove vi: directives that haven't worked ↵ | Rob Landley | |
right in years (ubuntu broke its' vim implementation). Remove trailing spaces. Add/remove blank lines. Re-wordwrap in places. Update documentation with new coding style. The actual code should be the same afterward, this is just cosmetic refactoring. | |||
2012-11-08 | wc -m only cares about counting characters. Attached is a try on ↵ | Felix Janda | |
implementing it and some test cases for it. The test cases are only for UTF-8 locales. | |||
2012-10-08 | New build infrastructure to generate FLAG_ macros and TT alias, #define ↵ | Rob Landley | |
FOR_commandname before #including toys.h to trigger it. Rename DEFINE_GLOBALS() to just GLOBALS() (because I could never remember if it was DECLARE_GLOBALS). Convert existing commands to use new infrastructure, and replace optflag constants with FLAG_ macros where appropriate. | |||
2012-08-14 | Replace TOY_LIST_LEN with more generic ARRAY_LEN() | Rob Landley | |
2012-07-15 | Adding initial implementation of taskset | Elie De Brauwer | |
2012-06-16 | More header fiddling: crypt.h is silly, SUSv4 requires crypt() to be ↵ | Rob Landley | |
prototyped in unistd.h. The fact glibc refuses to do so without a wacky #define is a glibc bug, treat it as such. | |||
2012-04-28 | Georgi pointed out that some overly-pedantic C libraries require you to ↵ | Rob Landley | |
include both "string.h" and "strings.h". (Most don't.) | |||
2012-04-24 | Adding initial version of login.c | Elie De Brauwer | |
2012-04-14 | Comment and whitespace changes. | Rob Landley | |
2012-03-12 | Yet another header for technical susv4 compliance. | Rob Landley | |
2012-03-07 | Consolidate headers. | Rob Landley | |
2012-02-18 | Adding swapon and swapoff | Elie De Brauwer | |
2012-02-17 | Sigh: moving a header to toys.h isn't very useful if I forget to check in ↵ | Rob Landley | |
toys.h. | |||
2012-02-04 | Cleaning out one more old gpl notice that no longer applies after the switch ↵ | Rob Landley | |
to BSD in november. | |||
2010-01-05 | Add TOYBOX_SUID. | Rob Landley | |
2009-08-06 | Make a warning go away on Fedora 11. | Rob Landley | |
2009-01-25 | Comment tweaks. | Rob Landley | |
2008-11-15 | Add netcat server mode, -l, -L, and -t. | Rob Landley | |
2008-02-12 | Add TOYFLAG_UMASK. | Rob Landley | |
2008-02-12 | Add toys.optc, an argv-style count for toys.optargs. | Rob Landley | |
2008-01-20 | Zap toylist.h, moving contents of global structures into DEFINE_GLOBALS() | Rob Landley | |
macros in each C file, and making generated/globals.h from that. Rename "toy" to "this" along the way to avoid toy/toys confusion. | |||
2008-01-19 | Move NEWTOY() list from end of toylist.h to generated/newtoys.h. | 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.) | |||
2008-01-10 | Move some generated files into the "generated" subdirectory. | Rob Landley | |
2007-12-28 | Make touch work reliably when file doesn't exist and clean up headers a bit. | Rob Landley | |
2007-10-16 | Need to commit this too. :) | Rob Landley | |
2007-08-15 | Remove strings.h which Maximilian Attems points out is obsolete: | Rob Landley | |
> belows snippet directly taken from mdadm.h. > > to quote hpa: > "Including <strings.h> is a bug in the upstream source; > <strings.h> has been obsolete since at least 1989" > > one small little step for better klibc support ;) | |||
2007-05-17 | Add sleep. | Rob Landley | |
2007-04-23 | Add sync and an incomplete version of mdev. | Rob Landley | |
2007-02-03 | Teach build to build only the toys/*.c selected in .config, and teach | Rob Landley | |
CFG_TOYSH_DEBUG to shut up the spurious "gcc can't tell that this is never actually used uninitialized because gcc is stupid" warnings. | |||
2007-01-28 | More work on mke2fs. | Rob Landley | |
2007-01-23 | More work on mke2fs. | Rob Landley | |
2007-01-23 | More random progress on mke2fs. Nothing to see yet. | Rob Landley | |