1. eb3c443 Enable fallocate in defconfig. by Rob Landley · 10 years ago
  2. ef377cf Promote rfkill. by Rob Landley · 10 years ago
  3. 314f19e Help text should have a blank line after usage: lines, and a couple other whitespace tweaks. by Rob Landley · 10 years ago
  4. f71abed Promote partprobe. by Rob Landley · 10 years ago
  5. d8872c4 Introduce xfork() and make commands use it, and make some WEXITSTATUS() use WIFEXITED() and WTERMSIG()+127. by Rob Landley · 10 years ago
  6. c6fcf1d Make "losetup /dev/loop0 filename" work. by Rob Landley · 10 years ago
  7. 1c806ca atolx_range() is already added into lib/lib.c, in vconfig.c atolx_range() can be used in place of locally defined strtorange() function. by Ashwini Sharma · 10 years ago
  8. 80a438d logname and whoami are the same as id -un, so merge them. by Isaac Dunham · 10 years ago
  9. 97641f4 Promote sysctl from pending to other, default y. by Rob Landley · 10 years ago
  10. a547cf1 Attached is the patch for lsattr and chattr implementation. by Ashwini Sharma · 10 years ago
  11. f9070f3 Add example directory, move hello.c into it, add skeleton.c to demonstrate more complciated stuff (multiple commands per file, etc), and have genconfig.sh sort backwards so posix is first and example last in menuconfig. by Rob Landley · 10 years ago
  12. 6c64f5f Revert lots of half-finished local debris I didn't mean to check in with Isaac's roadmap update. by Rob Landley · 11 years ago
  13. 76e1cb3 Probe for the existence of FIFREEZE and make fsfreeze depend on it. by Rob Landley · 11 years ago
  14. 1d12fb6 An issue in ifconfig while verifying the HW Address, which is assumed to be of the format __C2:79:38:95:CD:AB__ but can be of form __C2:79:38:95:D:A__. In this case the HW address is reported as bad. by Ashwini sharma · 11 years ago
  15. 931425c roadmap: describe glibc commands. by Isaac Dunham · 11 years ago
  16. 18720dc In ifconfig.c, there is a glitch in function get_addrinfo() when computing the prefix length. by Ashwini Sharma · 11 years ago
  17. 2b0b548 New toy fsfreeze, from Isaac Dunham, plus minor cleanups. by Rob Landley · 11 years ago
  18. 36aa7d7 Add help -a (to show all commands) and -h (to produce HTML output). by Rob Landley · 11 years ago
  19. 69664c2 Promote freeramdisk from pending to other, default y. by Rob Landley · 11 years ago
  20. da60b9b Fix two bugs reported by Ashwini Sharma. by Rob Landley · 11 years ago
  21. 1fb3ae7 Various cleanups found by Tom Sparrow's static analysis. by Rob Landley · 11 years ago
  22. b6c8a86 Move bunzip2 logic from lib into bzcat. by Rob Landley · 11 years ago
  23. 5486075 Tweak help text. by Rob Landley · 11 years ago
  24. 030c3f3 Add /prefix netmask support to ifconfig, ala "ifconfig eth0 192.168.1.42/28" by Rob Landley · 11 years ago
  25. 714a0db Two changes to shut up GCC: by Isaac Dunham · 11 years ago
  26. 59d85e2 Rename xmsprintf() to just xmprintf(). by Rob Landley · 11 years ago
  27. f9d5b02 Cleanup vmstat. Procs, memory, and cpu are reading right, the others not so much. by Rob Landley · 11 years ago
  28. afba5b8 Fix some issues raised (albeit indirectly) by Isaac Dunham. by Rob Landley · 11 years ago
  29. 5a73f39 Ashwini sharma pointed out that show_help() doesn't exit so "ifconfig eth0 netmask" would segfault. Replace it with an error_exit(), see list for aesthetic issue this raises re: help text. by Rob Landley · 11 years ago
  30. 6db8529 Don't permute toys.optargs, cleanup code (xexec()) can free it. by Rob Landley · 11 years ago
  31. 0cae729 When building for 32-bit, the compiler can't figure out that a constant too big to fit in a long isn't trying to unless you explicitly postfix the constant with the type of the varable it's being assigned into. by Rob Landley · 11 years ago
  32. 76e7916 Cleanup help text, remove dead fields unused by linux kernel. by Rob Landley · 11 years ago
  33. 8f64b03 Promote ifconfig from pending to other. by Rob Landley · 11 years ago
  34. 75cb924 Add test suite for blkid and clean up an editorial comment that shouldn't have been checked in. by Rob Landley · 11 years ago
  35. 599a13b Sceond cleanup pass on vconfig by Rob Landley · 11 years ago
  36. 98c322e Merge toynet.h into toys.h: musl supports it and micromanaging uClibc config options isn't very interesting anymore. by Rob Landley · 11 years ago
  37. 6fb8fae Cleanup vconfig. by Rob Landley · 11 years ago
  38. 66643b4 I noticed the user count was missing and added this, borrowing a bit of code from toys/posix/who.c. by Jeroen van Rijn · 11 years ago
  39. 4aee303 Minor cleanup of reboot by Rob Landley · 11 years ago
  40. 9b2b24a New toy: reboot/halt/poweroff by Elie De Brauwer · 11 years ago
  41. 03c1b0b Move blkid out of pending, default y. by Rob Landley · 11 years ago
  42. db494a2 Cleanup chvt by Rob Landley · 11 years ago
  43. dc44b6b Cleanup on acpi, switch to default y. by Rob Landley · 11 years ago
  44. 7f4e24e I got tired of trying to guess how much terminal time I could get in on my phone, so here's a basic acpi. by Isaac Dunham · 11 years ago
  45. 1f747f7 Don't pad stat's %a field. by Rob Landley · 11 years ago
  46. 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
  47. 7f8f9ec Cleanup pwdx by Rob Landley · 11 years ago
  48. 2318663 pwdx by Lukasz Skalski. by Rob Landley · 11 years ago
  49. b7162a4 Improve --longopt parsing: general bugfixes, better error reporting, new ; option for optional arguments only suppliable with =. by Rob Landley · 11 years ago
  50. dd4bed0 PID and UID namespaces for unshare, pointed out by heehooman@gmail.com. by Rob Landley · 11 years ago
  51. 455865a Rewrite pmap to be simpler and match other implementation's output more closely. by Rob Landley · 11 years ago
  52. 5ebaea6 New toy: fallocate by Felix Janda · 11 years ago
  53. a817a02 Replace users of xexec(toys.optargs) with xexec_optargs(0) to avoid free/reuse bug during argument parsing. by Rob Landley · 11 years ago
  54. 7275667 Add timeout, factoring out common code from sleep. by Rob Landley · 11 years ago
  55. 19ee0eb Eject cleanups. by Rob Landley · 11 years ago
  56. 4ae257e Eject, by Kyungwan Han. by Rob Landley · 11 years ago
  57. a2168e7 add paramtype in to the list of tags by Isaac Dunham · 11 years ago
  58. c810f9f This inlines CRC64, and nothing more. by Isaac Dunham · 11 years ago
  59. 7bb5221 modinfo: support -b basedir and -k kernel.release, fix two bugs by Isaac Dunham · 11 years ago
  60. 10217d3 Modinfo cleanups. by Rob Landley · 11 years ago
  61. 9d5456c Patch that assumes that the presence of the string ".ko" indicates by Isaac Dunham · 11 years ago
  62. 50b2625 Add pivot_root. by Rob Landley · 11 years ago
  63. 5b25105 Upgrade modinfo to support multiple modules, and add tests, from Isaac Dunham. by Rob Landley · 11 years ago
  64. 40cc416 Move stat from pending to other, default y. by Rob Landley · 11 years ago
  65. 0ae7180 Tighten up lsusb, default to "y". by Rob Landley · 11 years ago
  66. bd7a7fe Attached is a pretty simple implementation of lsub. It doesn't implement any of the flags/options, but does the raw output. by Andre Renaud · 11 years ago
  67. b4a86ac Add firmware field to modinfo output. by idunham · 11 years ago
  68. 4cf2a1c Isaac Dunham pointed out that the kernel treats - and _ as identical in module names, so modinfo should too. Made it use mmap() while I was there, and some cosmetic refactoring. by Rob Landley · 11 years ago
  69. 36ffc5a Move guts of help command into show_help() in lib/help.c, with config TOYBOX_HELP controlling infrastructure. by Rob Landley · 12 years ago
  70. 33cdec5 Move mdev into the pending directory, since it's not done yet. by Rob Landley · 12 years ago
  71. 5383200 Add readahead. by Rob Landley · 12 years ago
  72. dd009d6 Move some unfinished commands to the "pending" directory. by Rob Landley · 12 years ago
  73. 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 · 12 years ago
  74. 3a99aef Switch readlink on by default, and fill out readlink.test. by Rob Landley · 12 years ago
  75. 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 · 12 years ago
  76. 41ed979 Use basename() where appropriate. by Rob Landley · 12 years ago
  77. 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 · 12 years ago
  78. ef2af2e Add losetup. (Who knows, it might even work.) by Rob Landley · 12 years ago
  79. de08aef Fix tac to handle the "abc\ndef" case properly by Elie De Brauwer · 12 years ago
  80. 7d01b31 Refactoring broke rev by Elie De Brauwer · 12 years ago
  81. 93504e6 Minor cleanups. by Rob Landley · 12 years ago
  82. fadbd60 Adding implementation of rev including tests by Elie De Brauwer · 12 years ago
  83. d4d5119 Simplify tac, the newline checking is already done in the get_line() function by Elie De Brauwer · 12 years ago
  84. 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
  85. 5434415 Use sched_{set,get}affinity directly so musl doesn't have to provide wrappers. by Rob Landley · 12 years ago
  86. 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
  87. a03f3e1 login: Avoid gcc to drop exit condition because of "always false condition". by Jonathan Clairembault · 12 years ago
  88. fe91e68 Remove readlink -m for being poorly defined ("readlink -m /dev/null/and/more" answers what question, exactly?), rewrite xabspath() to work right and not depend on realpath, fix subtle longstanding bug in llist_traverse(). by Rob Landley · 12 years ago
  89. bd2e227 Update readlink so -f works. Add -menq while there. by Rob Landley · 12 years ago
  90. 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
  91. 20f070c Add vconfig.c - Creates virtual ethernet devices. by Kyungwan Han · 12 years ago
  92. ab1bdc6 Add md5sum in lsb, combine sha1sum (mostly shared infrastructure). Downside: current infrastructure can't give them different help text. Hmmm... by Rob Landley · 12 years ago
  93. b7a3c6b Simplify sha1sum a little. by Rob Landley · 12 years ago
  94. c0e56ed New build infrastructure to generate FLAG_ macros and TT alias, #define 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. by Rob Landley · 12 years ago
  95. a54733f Fix catv to display byte 255 correctly. (It's both M- and ^?.) by Rob Landley · 12 years ago
  96. 3514b03 Clean up sha1sum, make it use global union properly. by Rob Landley · 12 years ago
  97. 787eac5 Add switch_root and fix infrastructure to understand name "switch_root". by Rob Landley · 12 years ago
  98. f91b7c8 Regularize command headers, update links to standards documents. by Rob Landley · 12 years ago
  99. 58b7d96 Toysh is our posix sh, so move from "other" to "posix" and use sh as the base command name. by Rob Landley · 12 years ago
  100. 3a9241a Move commands into "posix", "lsb", and "other" menus/directories. by Rob Landley · 12 years ago