1. 5c87c14 Give a hint when setuid logic fails. by Rob Landley · 10 years ago
  2. fc49761 Forgot to check in main() part of TOYFLAG_LOCALE change. by Rob Landley · 10 years ago
  3. 90b200c Move toys.toycount initialization _after_ zeroing toys, so help -a works again. by Rob Landley · 10 years ago
  4. 3bc5d3d The "not root" test happens before looking for --help, so "./sulogin --help" doesn't show it. Instead make the "not root" failure case always show help text. by Rob Landley · 10 years ago
  5. 1bc5224 Add generic_signal() handler, which sets toys.signal and writes byte to toys.signalfd if set. by Rob Landley · 10 years ago
  6. 52ab00b bugfix: the multiplexer increments optc and then the command the multiplexer runs increments it further, resulting in a wrong count. Fix: zero it. by Rob Landley · 10 years ago
  7. 36aa7d7 Add help -a (to show all commands) and -h (to produce HTML output). by Rob Landley · 10 years ago
  8. afba5b8 Fix some issues raised (albeit indirectly) by Isaac Dunham. by Rob Landley · 10 years ago
  9. 6db8529 Don't permute toys.optargs, cleanup code (xexec()) can free it. by Rob Landley · 10 years ago
  10. 8fdcfdb Introduce libbuf analogous to toybuf but for use by lib/*.c. Change readfile() semantics to be able to read into an existing buffer, or malloc its own if that's NULL. by Rob Landley · 11 years ago
  11. d04dc1f Add scripts/single.sh to build individual non-multiplexed standalone commands. by Rob Landley · 11 years ago
  12. 5f80533 Fix --help option to multiplexer. by Rob Landley · 11 years ago
  13. bb504f3 Start of TOYBOX_SINGLE support, for building standalone commands with no multiplexer. by Rob Landley · 11 years ago
  14. 953722e Add config option for --help support in all commands. by Rob Landley · 11 years ago
  15. 09ee264 Add --help option to toybox command when TOYBOX_HELP is enabled. by Rob Landley · 11 years ago
  16. 933919c Fix some comments from way back when toybox first started (in 2006), when I was still cleaning busybox-isms out of my head... by Rob Landley · 11 years ago
  17. 41ed979 Use basename() where appropriate. by Rob Landley · 11 years ago
  18. bf1e70f TOYBOX_DEBUG warns about lack of suid bit when running a STAYROOT command, but it shouldn't warn just because the multiplexer command "toybox" is stayroot. by Rob Landley · 11 years ago
  19. a48e579 Elie De Brauwer pointed out that xputs() isn't reliably reporting errors because there's no flush. Rather than change the output granularity, flush before exit and check errors there. (We still need xputc() doing it so "yes" doesn't continue forever.) by Rob Landley · 11 years ago
  20. 6cf0a11 Cleanup i18n support (#ifdefectomy, move global init to process launch). Teach make.sh to emit "#define FLAG_x 0" for options inside disabled USE macros so we can unconditionally refer to them. by Rob Landley · 12 years ago
  21. 250e005 Make internalization support optional by Felix Janda · 12 years ago
  22. 6c62448 Init global context to toybox multiplexer early so error_exit() doesn't segfault trying to print current command name, and change TOYBOX_DEBUG+TOYBOX_SUID complaint about not having the suid bit set to warning rather than exit.. by Rob Landley · 12 years ago
  23. 4521f41 Set optc when optstring NULL. by Rob Landley · 12 years ago
  24. caf39c2 Add rebound support to intercept error_exit() and longjmp instead. by Rob Landley · 12 years ago
  25. 7aa651a Reindent to two spaces per level. Remove vi: directives that haven't worked 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. by Rob Landley · 12 years ago
  26. 9c1c5ec Replace TOY_LIST_LEN with more generic ARRAY_LEN() by Rob Landley · 12 years ago
  27. 07d79af Workaround longstanding glibc/ld bug, ala http://sources.redhat.com/bugzilla/show_bug.cgi?id=3400, which prevents "./toybox | wc" from producing any output when toybox was statically linked. by Rob Landley · 12 years ago
  28. 2b54b1a Nathan McSween convinced me compilers that inline memset() can optimize the bzero case pretty well. by Rob Landley · 12 years ago
  29. 7f28e68 Switch from deprecated function to gratuitously renamed identical non-depricated function. *shrug* by Rob Landley · 12 years ago
  30. 8f8c504 Expand comments. by Rob Landley · 12 years ago
  31. db037ef Make toy_init() reentrant, or else xexec() has funky errors. by Rob Landley · 14 years ago
  32. e0377fb Add TOYBOX_SUID. by Rob Landley · 14 years ago
  33. 0f8c4c5 Add TOYFLAG_UMASK. by Rob Landley · 16 years ago
  34. 841223d Fix crash when running unknown command via symlink. by Rob Landley · 16 years ago
  35. b1aaba1 Zap toylist.h, moving contents of global structures into DEFINE_GLOBALS() by Rob Landley · 16 years ago
  36. 55928b1 Move NEWTOY() list from end of toylist.h to generated/newtoys.h. by Rob Landley · 16 years ago
  37. aaffc07 Changeset 186 assumed that toys.exitval defaults to 0. Actually change the by Rob Landley · 16 years ago
  38. efda21c Change command main() functions to return void, and exit(toys.exitval) from by Rob Landley · 17 years ago
  39. 860f263 Patch from Charlie Shepherd: remove extra \n from error_exit() arguments. by Rob Landley · 17 years ago
  40. 2c22685 Remove trailing whitespace (thanks to Charlie Shepherd), and a couple comment by Rob Landley · 17 years ago
  41. 6ed92f3 Tweak error message. by Rob Landley · 17 years ago
  42. 4307a7b Make warning go away. by Rob Landley · 17 years ago
  43. fc2224b Show the compiler how to optimize out the option parsing logic when nothing by Rob Landley · 17 years ago
  44. b841cd2 Allow applets with optarg string NULL to use toy.optargs[]. by Rob Landley · 17 years ago
  45. 5a60e26 Trim a redundant definition that confuses older compilers. (Regression testing by Rob Landley · 17 years ago
  46. a6d696b Small cleanup to prepare for cross-compile friendly make install. by Rob Landley · 17 years ago
  47. 5aab966 Save 4 bytes of stack space. by Rob Landley · 17 years ago
  48. 055cfcb Add start of mke2fs/gene2fs, and some other stuff I've been working on. by Rob Landley · 17 years ago
  49. 8324b89 New option parsing infrastructure (doesn't use getopt). Hook it up to by Rob Landley · 18 years ago
  50. f2311a4 Add pwd. Consolidate toy list information under toylist.h. by Rob Landley · 18 years ago
  51. 0a04b3e Implement which. Add hello world to menuconfig. Wrap the various applet main by Rob Landley · 18 years ago
  52. 9b3fc7d Add a hello world applet, partly as an example and partly for testing purposes. by Rob Landley · 18 years ago
  53. 09ea7ac Implement df. Add -Wall to build and fix up warnings. Add copyright notices. by landley · 18 years ago
  54. cd9dfc3 Next drop of toysh, plus more infratructure. by landley · 18 years ago
  55. 4f344e3 Infrastructure, first drop of toy shell, and a bit of work on df. by landley · 18 years ago
  56. c562150 Next snapshot. Tries to grab something out of lib in order to build, I have by landley · 18 years ago