1. 6f5ef6f Update news page and link to ELC 2013 talk on toybox. by Rob Landley · 11 years ago
  2. da7fc1c Add -a to who and switch to default y in defconfig. by Rob Landley · 11 years ago
  3. 29264d8 Explain that code in the "pending" directory isn't necessarily ready for prime time. by Rob Landley · 11 years ago
  4. 121db2a uuencode and uudecode by Erich Plondke. by Rob Landley · 11 years ago
  5. 02656c7 The old nbd-client I wrote in 2010. Needs cleanup. by Rob Landley · 11 years ago
  6. e5f3a0b Remove unused min/max macros. by Rob Landley · 11 years ago
  7. 33cdec5 Move mdev into the pending directory, since it's not done yet. by Rob Landley · 11 years ago
  8. 971d57e Isaac Dunham took the public domain xz-embedded code and made an xzcat. I glued all his files together into one big one and threw it in pending. It needs something between cleanup and a complete rewrite. by Rob Landley · 11 years ago
  9. ee86b1d Simplify license text, as mentioned on the mailing list. by Rob Landley · 11 years ago
  10. a5a1403 Added tag 0.4.4 for changeset 52e69f6710ca by Rob Landley · 11 years ago
  11. 04fc2db Remove more debug code from find. by Rob Landley · 11 years ago
  12. db12a37 A couple quick fixes to find so I can try it out. by Rob Landley · 11 years ago
  13. 55da839 Find by Gurang Shastri. by Rob Landley · 11 years ago
  14. 25b043b Compile time probe to fish O_NOFOLLOW out of linux headers when fcntl doesn't conform to posix-2008. by Rob Landley · 11 years ago
  15. 364d9ab O_NOFOLLOW is specified by posix-2008 and varies by target, don't try to supply them for broken headers. by Rob Landley · 11 years ago
  16. f9d7c95 Call stat "stat" instead of "st" in menuconfig. Use xmalloc() instead of malloc. by Rob Landley · 11 years ago
  17. 61dacaa Fix whitespace in submitted stat command. by Rob Landley · 11 years ago
  18. e3f0787 Fix another allyesconfig build break in the pending directory. by Rob Landley · 11 years ago
  19. cc99be2 Sed's still just a stub, but clean it up enough so it at least compiles. by Rob Landley · 11 years ago
  20. 5383200 Add readahead. by Rob Landley · 11 years ago
  21. 9559c2c Comment updates and a policy statement about avoiding #define GNU_dammit by Rob Landley · 11 years ago
  22. 9a69a92 Accumulated web page changes. (Release announcement for previous release, roadmap updates, etc.) by Rob Landley · 11 years ago
  23. 799515e Fix a warning when debug code enabled. by Rob Landley · 11 years ago
  24. dd009d6 Move some unfinished commands to the "pending" directory. by Rob Landley · 11 years ago
  25. 865afc5 Implement cp -s option. by Rob Landley · 11 years ago
  26. d1fcf4f Tweak cmp test to be a little more deterministic. by Rob Landley · 11 years ago
  27. 44b9d04 More support for old (~2008) build environments, move the #ifdef checks for symbols out of specific library version checks (shouldn't hurt anything), remove obsolete debug macro. by Rob Landley · 11 years ago
  28. af00119 Some older build environments don't have LOOP_CTL_GET_FREE or LOOP_SET_CAPACITY. Substitute constants so they can get the rest of losetup without a build break. by Rob Landley · 11 years ago
  29. 2279108 Fix -in behavior: descend into existing directory without prompting, show full path in error messages, actually overwrite when answering yes to -i. by Rob Landley · 11 years ago
  30. c26ca6e Wrong closing tag in roadmap.html. by Rob Landley · 11 years ago
  31. f5b50e9 id: make "id -Gn root" print root's groups instead of current user (and without leading space), enforce max 1 argument and at most one of Ggu. by Rob Landley · 11 years ago
  32. 9d6e088 Add time command (that only does posix mode). by Rob Landley · 11 years ago
  33. 4e998e5 Added tag 0.4.3 for changeset f8f5ddb6b69a by Rob Landley · 11 years ago
  34. 5ddc312 Adjust umask(0) for cp -p so mknod doesn't have to try to fchmodat() without the unsupported symlink nofollow flag. by Rob Landley · 11 years ago
  35. 3a99aef Switch readlink on by default, and fill out readlink.test. by Rob Landley · 11 years ago
  36. 7c0e280 Fix xabspath() resolving symlink after .., and properly detecting failure for last entry after nondir. by Rob Landley · 11 years ago
  37. 6be5ac6 Make "sudo cp -rp /dev/null blah" work. Still not happy with it, fchmodat(AT_SYMLINK_NOFOLLOW) doesn't work (there's a glibc bug open for this. It's really a missing kernel syscall, but glibc fails without ever making any syscall if you feed it that flag, which isn't helpful). by Rob Landley · 11 years ago
  38. ae9243a Work around more random uClibc-specific breakage. by Rob Landley · 11 years ago
  39. 1a33c6b Silence deeply stupid gcc warning. (First non-declaration line of function: if (file) ffd = open(); at end of of function: if (file) close(ffd); "file" is an argument to the function and nothing else assigns to it. gcc warning on that close, "ffd may be used uninitialized!" _HOW_?) by Rob Landley · 11 years ago
  40. bccb6db Revert some debug code accidentally checked in at commit 715. by Rob Landley · 11 years ago
  41. ae6a84b Update -p and -f to apply properly to various conditions. Still some bugs to squeeze out but this gets the infrastructure mostly right (and does away with the remaining gotos). by Rob Landley · 11 years ago
  42. 8d84a99 Teach cp to do -n. by Rob Landley · 11 years ago
  43. c428b54 Teach cp to do mknod. by Rob Landley · 11 years ago
  44. c0f11f3 Adapt cp to updated dirtree code. by Rob Landley · 11 years ago
  45. 41ed979 Use basename() where appropriate. by Rob Landley · 11 years ago
  46. 90e8605 Make basename use basename(). by Rob Landley · 11 years ago
  47. 662a267 Have error_msg() and friends set TT.exitval to 1 if it's still 0, clean out other places that were setting it that no longer need to. by Rob Landley · 11 years ago
  48. 090c5c6 Make dirtree_handle_callback() start with dirtree_ like the rest of the dirtree functions. by Rob Landley · 11 years ago
  49. ef2af2e Add losetup. (Who knows, it might even work.) by Rob Landley · 11 years ago
  50. 5e9d865 Fix invalid free in toysh. by Felix Janda · 11 years ago
  51. 90c6dfa Getting the pwd -L behavior right is fiddly. by Rob Landley · 11 years ago
  52. 840ed12 Add some tests for pwd. by Felix Janda · 11 years ago
  53. 3bb115d Add options -L and -P to pwd. by Felix Janda · 11 years ago
  54. 8abf095 Ashwini Sharma pointed out that my previous tweak to [!abc] groups still didn't get the error reporting right (test case "touch -d 12 -r f2 f1"). This says "no 'r' with 'd'" for that, and still shouldn't be able to fall off the end of the list (segfault) because an option can't conflict with itself (that's what the ~(1<<i) on lib/args.c line 317 is for). by Rob Landley · 11 years ago
  55. 63e042c Add tests to mkfifo based on tests for mkdir. by Felix Janda · 11 years ago
  56. d0d0f40 mkfifo -m is already implemented. by Felix Janda · 11 years ago
  57. 6d91e0f Fix option grouping. by Rob Landley · 11 years ago
  58. 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
  59. f02ca1e A screen width of 1 is possible (in some weird setups), and gives ls -C a division by zero error. by Rob Landley · 11 years ago
  60. 27cec9a Minor cleanups. by Rob Landley · 11 years ago
  61. 41b4748 LSB does not allow killall to kill itself by Elie De Brauwer · 11 years ago
  62. e5af216 Minor tweaks. by Rob Landley · 11 years ago
  63. c5b15db Add some tests for mkdir by Felix Janda · 11 years ago
  64. 208f6c1 Add -m option to mkdir by Felix Janda · 11 years ago
  65. ca4035b Extend killall with support for -v and -i by Elie De Brauwer · 11 years ago
  66. 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
  67. a8f3bf0 Whitespace. by Rob Landley · 11 years ago
  68. 434d351 Extend seq to support -f (format string) and -s (string separator) as requested by LSB by Elie De Brauwer · 11 years ago
  69. de08aef Fix tac to handle the "abc\ndef" case properly by Elie De Brauwer · 11 years ago
  70. 7a78d92 Update mkstatus.py, roadmap.html, and status.html. by Rob Landley · 11 years ago
  71. 7d01b31 Refactoring broke rev by Elie De Brauwer · 11 years ago
  72. 8390c65 Web page update for release. by Rob Landley · 11 years ago
  73. 93504e6 Minor cleanups. by Rob Landley · 11 years ago
  74. fadbd60 Adding implementation of rev including tests by Elie De Brauwer · 11 years ago
  75. e9e10b5 Adding tests for tac based on cat tests by Elie De Brauwer · 11 years ago
  76. d4d5119 Simplify tac, the newline checking is already done in the get_line() function by Elie De Brauwer · 11 years ago
  77. 28eeadd Missing letter in help text. by Rob Landley · 11 years ago
  78. 91d7014 Added tag 0.4.2 for changeset 8947c0d35e58 by Rob Landley · 11 years ago
  79. 5806b9f The Linux kernel "make clean" calls rm -f with no arguments, which apparently is not an error. by Rob Landley · 12 years ago
  80. b1c002a Add stat submission to new "pending" directory, along with infrastructure to support pending. by Rob Landley · 12 years ago
  81. b9bde7b essat's flag not to follow symlinks isn't in the system call, and if libc is supposed to implement this as a wrapper uClibc gets it wrong. So use the stat info about symlinks instead. (Doesn't check the parent directory, but if that's read only we can't delete the file anyway so prompting is moot.) by Rob Landley · 12 years ago
  82. d52e76d Meddle. by Rob Landley · 12 years ago
  83. 7c6209d Adding -s (single shot) and -o (omit pids) options to pidof by Elie De Brauwer · 12 years ago
  84. d394a1f Set executable bits on two test scripts. by Rob Landley · 12 years ago
  85. 2a55ccb Adding sha1sum tests based on RFC 3174 by Elie De Brauwer · 12 years ago
  86. 6c57628 Adding tests for cat by Elie De Brauwer · 12 years ago
  87. aa777fe Add README file to each toys/ directory, teach build infrastructure to get fancy name from that. This means adding new directories shouldn't require touching build scripts. by Rob Landley · 12 years ago
  88. 37de8ed Complicate the rm -i behavior to do what posix specifies. by Rob Landley · 12 years ago
  89. db8eb32 Make yesno() always read from stdin and write to stderr. (If we need to find our tty, open /dev/tty, but existing users don't.) by Rob Landley · 12 years ago
  90. c087a4a New rm command. by Rob Landley · 12 years ago
  91. 62f0021 Update link to posix in docs (open group broke their website). by Rob Landley · 12 years ago
  92. 3162c27 Have dirtree_add_node() set parent so error message can provide full path. by Rob Landley · 12 years ago
  93. 5434415 Use sched_{set,get}affinity directly so musl doesn't have to provide wrappers. by Rob Landley · 12 years ago
  94. 6093554 Minor whitespace tweak. by Rob Landley · 12 years ago
  95. ddd4685 First guess at what internationalization support for expand would look like. by Rob Landley · 12 years ago
  96. e0cc81e Generate status page with new pubs.opengroup.org urls. by Rob Landley · 12 years ago
  97. 4ddc73b Remove unused structure definition. by Rob Landley · 12 years ago
  98. 4eb2256 The open group changed their website stupidly, so opengroup.org/onlinepubs forwards to a dead server and you have to use pubs.opengroup.org/onlinepubs now. Change the hello template to note the new location. (Waiting to see if they fix it upstream before touching every command in toys/posix.) by Rob Landley · 12 years ago
  99. 503c8b8 Add header that musl libc needs. by Rob Landley · 12 years ago
  100. 62fd9d0 Fix ancient glibc workaround to force fstatat64 by Rob Landley · 12 years ago