1. 6434ace Shameless meddling. by Rob Landley · 9 years ago
  2. 831a085 Use $TMPDIR if set (necessary on Android, where there is no /tmp). by Elliot Hughes · 9 years ago
  3. 912b2be Build standalone commands where "depends on" config entries need to be switched on. by Rob Landley · 9 years ago
  4. 5eb4475 Clean up the output of "make change". by Rob Landley · 9 years ago
  5. fb4ae95 Remove xexec_optargs(). by Rob Landley · 9 years ago
  6. d57c23b Cleanup pass on env, removing exec_optargs(). by Rob Landley · 9 years ago
  7. c004520 Make toy_exec() check if argc is in optargs and deal with it there so we don't need a separate xexec_optargs(). by Rob Landley · 9 years ago
  8. a48cfba Merge unshare and nsenter (promoting and cleaning up nsenter). by Rob Landley · 9 years ago
  9. 459cab0 In rm, init using to AT_REMOVEDIR in the dir case earlier. by Rob Landley · 9 years ago
  10. bd6c3f3 Alright, the Android guys agree with the musl guys: faccessat(AT_SYMLINK_NOFOLLOW) is not supported. by Rob Landley · 9 years ago
  11. 436a5c0 Commit 1061 said "this gets expand off my to-review list". Remove it from the list. by Rob Landley · 9 years ago
  12. afd712a Cleanup mountpoint and remove it from the pending README. by Rob Landley · 9 years ago
  13. b5e7220 bootchartd: Removing wrong free call to non-malloc'ed string. by Luis Felipe Strano Moraes · 9 years ago
  14. 4bb3a35 Fix sed s//\[newline]/ line continuations. by Rob Landley · 9 years ago
  15. ef0546d fix hwclock's rtc selection by Elliott Hughes · 9 years ago
  16. 9d1d0ad fix typo in printf by Elliott Hughes · 9 years ago
  17. 2c1cf4a Remove trailing whitespace. by Rob Landley · 9 years ago
  18. 468f155 Lift the basename/libgen.h shenanigans back out of portability.c and make it a static inline in portability.h, and prototype dirname() while we're at it. by Rob Landley · 9 years ago
  19. e910826 fix non-glibc basename(3) usage by Elliott Hughes · 9 years ago
  20. 0a4bd4b Move pty.h back to toys.h (under LSB 4.1 headers). by Rob Landley · 9 years ago
  21. c2415d1 AOSP master has <pty.h> and builds netcat/nc. by Elliott Hughes · 9 years ago
  22. 3b91599 id.c #ifdefectomy. (ifdefs belong in headers, not in C code.) by Rob Landley · 9 years ago
  23. 7e2af1c This patch adds a TOYBOX_SELINUX configuration option to control both by Elliott Hughes · 9 years ago
  24. 376a257 Added tag 0.5.1 for changeset 62a7d617e1ce by Rob Landley · 9 years ago
  25. f492fcc Switch netcat to stop parsing command line at first nonoption argument instead of stopping after -l or -L. by Rob Landley · 9 years ago
  26. a2fd3ce Make touch -d miliseconds work. (Still only 6 digits precision instead of 9, but it's a start.) by Rob Landley · 9 years ago
  27. 50d3207 i found a few problems while manually smoke testing toybox chown versus toolbox (NetBSD) chown... by Elliott Hughes · 9 years ago
  28. 698a160 Let chown build standalone. by Rob Landley · 9 years ago
  29. 9d66c41 sed bugfix: N or n at end of script would save the terminating NULL as the resume position, so the script would restart from beginning. by Rob Landley · 9 years ago
  30. 3a4917a sed s/// can have line continuations in the replacement part, with or without a \ escaping the newline. by Rob Landley · 9 years ago
  31. d3d633f Promote printf. by Rob Landley · 9 years ago
  32. d0dead3 One more bugfix for printf.c, with test suite entry. (Make %-3d etc work.) by Rob Landley · 9 years ago
  33. caa6b01 Cleanup pass on printf. by Rob Landley · 9 years ago
  34. 70cbfe8 More half-finished cleanup of printf.c, and more test suite entries. by Rob Landley · 9 years ago
  35. dd2cc65 Since "printf" is a shell builtin, printf.test wasn't actually testing anything. by Rob Landley · 9 years ago
  36. cc39d95 More printf cleanup, and test suite entries. by Rob Landley · 9 years ago
  37. a8df744 Fix sed backslash parsing in square bracket pattern sections. by Rob Landley · 9 years ago
  38. 77c8d1a Another cleanup pass on printf. by Rob Landley · 9 years ago
  39. aad492f Move fflush() checking to xexit() and have exit paths in main() call that. by Rob Landley · 9 years ago
  40. 87fd25f Cleanup pass on printf. by Rob Landley · 9 years ago
  41. 4f53457 Need to update install.c for the changed OLDTOY() argument list. by Rob Landley · 9 years ago
  42. 3c99404 Tweak status.html by Rob Landley · 9 years ago
  43. 82effc9 Switch a lot of strncpy() calls to xstrncpy(). by Rob Landley · 9 years ago
  44. 5f53d13 strncpy(optptr, hname, strlen(hname)) is really just strcpy(). by Rob Landley · 9 years ago
  45. 86c747a strtol() doesn't return error indicator for overflow, it just sets errno. So add estrtol() (which clears errno first), and xstrtol() (which error_exit()s on overflow). by Rob Landley · 9 years ago
  46. cf2516a Debris from flag handling rewrite: don't allow -^A to actually trigger. by Rob Landley · 9 years ago
  47. eeff24f typo fixes by Elliott Hughes · 9 years ago
  48. 88fe313 Fix for mix from Isaac Dunham (who can actually test it). (I tweaked the curly brackets.) by Rob Landley · 9 years ago
  49. f3e56f4 Redo option parsing infrastructure so #define FORCE_FLAGS can unzero flag macros for a disabled command (needed when multiple commands share infrastructure with a common set of flags). by Rob Landley · 9 years ago
  50. 5834ddd When CP_MORE was disabled, the d flag was still in the [-exclusion] list at the end and option parsing fell off the end looking for it (segfault) if DEBUG wasn't enabled to check for that. by Rob Landley · 9 years ago
  51. de699ac When you include the posix header libgen.h, glibc #defines basename to some random other symbol name (because gnu) and this screws up nontrivial macro expansions of NEWTOY(basename), so work around it in portability.h. by Rob Landley · 9 years ago
  52. 774c599 Link to gmane web archive. by Rob Landley · 9 years ago
  53. 5c419e3 Another random link for the design page. by Rob Landley · 9 years ago
  54. 7f24174 Fluff out help text. by Rob Landley · 9 years ago
  55. 989f453 Promote mix by Rob Landley · 9 years ago
  56. 73b8bb5 Cleanup mix.c. by Rob Landley · 9 years ago
  57. 4391e57 Teach factor to accept whitespace separated arguments (reported by Robert Thompson). by Rob Landley · 9 years ago
  58. d5c66a9 getenforce and setenforce by Elliott Hughes · 9 years ago
  59. 627cd0f those of us who need to check in generated files find that 'tr' and by Elliott Hughes · 9 years ago
  60. 677c1b5 Merge catv back into cat as discussed on the list. Add comments about infrastructure upgrades needed to restore separate catv option. by Rob Landley · 9 years ago
  61. 9b5000c Allocate space for null terminator. by Rob Landley · 9 years ago
  62. ea8be3d sed 'r' didn't work right. by Rob Landley · 9 years ago
  63. c09b79d Another sed bug. (The e2fsprogs build uses multiple line continuations on the same command.) by Rob Landley · 9 years ago
  64. 1a1e0a9 Promote sed to posix. by Rob Landley · 9 years ago
  65. 32cd2b7 sed: implement 'l' by Rob Landley · 9 years ago
  66. a136fa5 Add tizen section to roadmap. by Rob Landley · 9 years ago
  67. 95b7682 More sed bugs. by Rob Landley · 9 years ago
  68. c2d6740 Decouple cp and mv so mv uses its own --help text. by Rob Landley · 9 years ago
  69. bce0e00 Give fstype its own config symbol (separate from blkid), and fix blkid not using more accurate ext3/ext4 filesystem sub-type. by Rob Landley · 9 years ago
  70. a1ea6bb Fix yet another sed bug. by Rob Landley · 9 years ago
  71. 807a50d Make sed a\ line continuations work properly for different pattern input modes. by Rob Landley · 9 years ago
  72. 2c23705 Fix bug in sed y/// where bytes in target but not in source were replaced by zeroes (nul terminator overwritten). by Rob Landley · 9 years ago
  73. 76ea44a Last sed bugfix broke 'b', fix it. by Rob Landley · 10 years ago
  74. 4e49a94 Leftover variable from factoring out base64_init() caused an unused variable warning. by Rob Landley · 10 years ago
  75. 79839a4 Oops. xfork() moved to portability.c and the config2help.c build wasn't including that. (Worked until I did a "make clean".) by Rob Landley · 10 years ago
  76. 5bec5ba Forgot to check in a header file for base64. by Rob Landley · 10 years ago
  77. e72ea20 Add "make help" entry for "make change". by Rob Landley · 10 years ago
  78. 0517eb7 Add base64. by Rob Landley · 10 years ago
  79. 87fbe12 Remove more strncpy() calls. by Rob Landley · 10 years ago
  80. e75b1d8 here's a patch that should let us replace toolbox's chcon. by Elliott Hughes · 10 years ago
  81. ed053c0 Make unescape_delimited_string() copy the string so error reporting isn't so messed up. by Rob Landley · 10 years ago
  82. acb2d0e Fix some sed bugs and improve error reporting. by Rob Landley · 10 years ago
  83. 50fc9ed Work with buildroot's extensively patched uClibc, and for nommu support move xfork() to portability.h and #ifdef based on __uClinux__ (which seems to be the nommu compiler define). by Rob Landley · 10 years ago
  84. 2fb85a3 Implement xstrncat() and fix xstrndup(). by Rob Landley · 10 years ago
  85. 0a79156 Add shred. by Rob Landley · 10 years ago
  86. 2ebbefb More gzip stuff: now creates -0 compression files (store only), and does so to stdout. by Rob Landley · 10 years ago
  87. fad2fb0 Fix bug pointed out by Elliott Hughes ("vmstat 1" should repeat endlessly), and remove final delay (after all output) for "vmstat 2 3" case. by Rob Landley · 10 years ago
  88. bce8a51 Note posix mailing list posting correcting a bug in the web version of the standard. by Rob Landley · 10 years ago
  89. a03a044 Don't mount a filesystem over an existing one with the same /dev and /dir. by Rob Landley · 10 years ago
  90. aebcdfa Switching on fortify was not kind to the pending directory. Fix the actual build break (open(O_CREAT) without permissions). by Rob Landley · 10 years ago
  91. 1ba12b4 Start of deflate compress-side code, mostly refactoring and stubs so far. by Rob Landley · 10 years ago
  92. 10e0d86 Ashwini Sharma pointed out that "mkdir sub; ln -s . sub/up; du -L sub" shouldn't loop endlessly. by Rob Landley · 10 years ago
  93. ef6a773 Refactor expr and add another test entry that works with TEST_HOST=1 but not with the one in pending. by Rob Landley · 10 years ago
  94. de211e0 Tests for operator priority groupings. by Rob Landley · 10 years ago
  95. a92f4e1 Remove the strncpy from mountpoint, and make a lot of other changes while I'm here (to be described on the mailing list). by Rob Landley · 10 years ago
  96. dc11ed8 The "re-exec to regain root permissions" logic broke the error message when calling root-only commands through the multiplexer. by Rob Landley · 10 years ago
  97. 7701bf9 Minor whitespace cleanups. by Rob Landley · 10 years ago
  98. c3657fd expr.c: Added '==' sign into list of operations. Also added support for regex pattern match. by Ashwini Sharma · 10 years ago
  99. 42a36d6 Improve error reporting in parallel build. (On error, wait for all children to finish before exiting.) by Rob Landley · 10 years ago
  100. 6d28370 Make sendfile use libbuf. by Rob Landley · 10 years ago