1. 52dea12 The readme, a text file, has an HTML close paragraph tag. by Rob Landley · 10 years ago
  2. 0cf6a2d Option parsing for nohup needs to stop at first nonoption argument. Minor cleanups. by Rob Landley · 10 years ago
  3. 2109b15 Cleanup pass on login by Rob Landley · 10 years ago
  4. eb3c443 Enable fallocate in defconfig. by Rob Landley · 10 years ago
  5. 59fa8b4 Cleanup pass on host.c by Rob Landley · 10 years ago
  6. 90b200c Move toys.toycount initialization _after_ zeroing toys, so help -a works again. by Rob Landley · 10 years ago
  7. ff2bc85 Promote strings. by Rob Landley · 10 years ago
  8. 11c3924 Cleanup strings. by Rob Landley · 10 years ago
  9. 8431692 Update toybox help to say how to install the static binary. by Rob Landley · 10 years ago
  10. b5f9780 pending/useradd: unbreak build by Isaac Dunham · 10 years ago
  11. ef377cf Promote rfkill. by Rob Landley · 10 years ago
  12. 8115fc1 Forgot to check in strstart(). by Rob Landley · 10 years ago
  13. e031a5e Cleanup pass on rfkill. by Rob Landley · 10 years ago
  14. 368e264 host needs -lresolv by Rob Landley · 10 years ago
  15. 89a62bf When locale is enabled, sprintf("%.123s", str) is counting characters, not bytes, so we can't globally enable locale without opening stack/heap smashing vulnerabilities. Make commands individually request setlocale() using TOYFLAGS instead. by Rob Landley · 10 years ago
  16. c421b70 Warning fix from Rich Felker. by Rob Landley · 10 years ago
  17. e266735 Add host by Rich Felker. by Rob Landley · 10 years ago
  18. 298fcd9 Isaac Dunham also reported that some diff implementations can't handle nonseekable input, so write to a temporary file instead of <(command). by Rob Landley · 10 years ago
  19. 0fe882b Isaac Dunham pointed out that busybox diff only implements unified diffs, and sent a patch to convert bloatcheck to use that. I tweaked it a bit. by Rob Landley · 10 years ago
  20. 471c4d2 Replace large parenthetical in bloatcheck with a function. by Rob Landley · 10 years ago
  21. d0c0422 Minor tweaks to code style section. by Rob Landley · 10 years ago
  22. 2682551 Make md5sum/sha1sum -b flag be "brief" output (just the hash). by Rob Landley · 10 years ago
  23. 44e68a1 mount: start on option parsing, implement loopback and bind mount autodetection. by Rob Landley · 10 years ago
  24. 314f19e Help text should have a blank line after usage: lines, and a couple other whitespace tweaks. by Rob Landley · 10 years ago
  25. 8b3b9aa The tests for link and du are attached. by Isaac Dunham · 10 years ago
  26. 670626a cpio: archive more files by Isaac Dunham · 10 years ago
  27. c20fb90 iconv: some fixes by Felix Janda · 10 years ago
  28. f71abed Promote partprobe. by Rob Landley · 10 years ago
  29. 4d22a09 Cleanup partprobe. by Rob Landley · 10 years ago
  30. d8872c4 Introduce xfork() and make commands use it, and make some WEXITSTATUS() use WIFEXITED() and WTERMSIG()+127. by Rob Landley · 10 years ago
  31. b0d97a0 killall5 - kill all the processes not in its session. by Ashwini Sharma · 10 years ago
  32. 9f1a00a makedevs - making devices/nodes in a range. Supports reading the tabled entry from file. by Ashwini Sharma · 10 years ago
  33. 877884d strings - print the strings in the file. by Ashwini Sharma · 10 years ago
  34. 414c0cf First stab at mount, very incomplete. by Rob Landley · 10 years ago
  35. c6fcf1d Make "losetup /dev/loop0 filename" work. by Rob Landley · 10 years ago
  36. dc64025 Switch mtab_list to doubly linked so we can traverse in either order. Convert umount and df. Add dlist_terminate() to break lists for traversal in either direction. by Rob Landley · 10 years ago
  37. 55e9f35 Add mount options to data getmountlist collects. by Rob Landley · 10 years ago
  38. 369a4e0 Brush the dust off toysh. by Rob Landley · 10 years ago
  39. ddbaa71 Isaac Dunham suggested xprintf() should call fflush() instead of ferror(), and posix-2008 doesn't say if fflush() covers ferror() (or can return success when the stream's error state is set), so call both. by Rob Landley · 10 years ago
  40. 7cb7cca I have attached a patch adding a program that allows re-reading the partition table. This is often used on embedded systems booting from SD/USB devices that need to resize partitions on first boot. by Bertold Van den Bergh · 10 years ago
  41. 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
  42. 80a438d logname and whoami are the same as id -un, so merge them. by Isaac Dunham · 10 years ago
  43. 67ba229 Bugfix from Isaac Dunham (new pci database has # comments in it) and some minor cleanups I had in my tree already. by Rob Landley · 10 years ago
  44. f9c3fc8 Pending commands should default n by Rob Landley · 10 years ago
  45. 5e936d6 Single-user login. by Ashwini Sharma · 10 years ago
  46. 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
  47. 7dfee8e Remove debug detritus I didn't mean to to check in, and treat an "this variable can never actually be used uninitialized but gcc's warning generator can't tell and fails spamwards" warning. by Rob Landley · 10 years ago
  48. 6c54928 Pass the same $CFLAGS to the library probe as the final build, to work with broken build environments that provide different libraries for --static and dynamic builds. by Rob Landley · 10 years ago
  49. a17c5f2 patch from ashwini sharma: treat 0 length read at the start of password read as EOF. by Rob Landley · 10 years ago
  50. 984f90c rfkill - enable/disable the radio devices by Ashwini Sharma · 10 years ago
  51. 6958429 inotifyd - watch for filesystem events. by Ashwini Sharma · 10 years ago
  52. a76175c Ashwini Sharma pointed out I screwed up last.c. by Rob Landley · 10 years ago
  53. 0369ba5 date: add -ds, document +FORMAT escapes. by Rob Landley · 10 years ago
  54. 002a11e Update docs for example and pending directories. by Rob Landley · 10 years ago
  55. f8e940c Convert bootchartd to generic_signal(). by Rob Landley · 10 years ago
  56. 755e040 Make telnet use generic_signal(), minor in-passing cleanups. by Rob Landley · 10 years ago
  57. bf30fe9 Make telnetd use generic_signal(), inline kill_session(), close race window where a SIGCHLD could get lost. by Rob Landley · 10 years ago
  58. 1bc5224 Add generic_signal() handler, which sets toys.signal and writes byte to toys.signalfd if set. by Rob Landley · 10 years ago
  59. 9b4158c First pass init cleanup: use sigatexit() to set multiple signal handlers, rename set_sane_term() to reset_term() and have it take the fd it works on as an argument, some whitespace and help text tweaks. by Rob Landley · 10 years ago
  60. dce76e0 Make fsck.c use common list free function, collate cleanup code and move inline. by Rob Landley · 10 years ago
  61. 7a6b822 Make last use common llist free function, minor cleanups. by Rob Landley · 10 years ago
  62. e604d53 Add free functions for predefined llist types. by Rob Landley · 10 years ago
  63. 95d2ce8 dhcp client had a segfault, when DHCP message contained 'pad' option. by Ashwini Sharma · 10 years ago
  64. b06b0fe lspci text output: add -i, allow -n when disabled by Isaac Dunham · 10 years ago
  65. 098ff07 Cleanup pass on bootchartd. by Rob Landley · 10 years ago
  66. ca73392 Fluff out the coding style section, but the result was a bit big for the start of code.html, so move it to design.html. by Rob Landley · 10 years ago
  67. 3fdbdac Quick cleanup pass on ps. by Rob Landley · 10 years ago
  68. fd71bca Cleanup pass on lspci by Rob Landley · 10 years ago
  69. 3be2e3e Teach singleconfig to switch on sub-options of commands it's building. by Rob Landley · 10 years ago
  70. e9b7fcf bootchartd by Bilal Qureshi. by Rob Landley · 10 years ago
  71. afe951b Here's a quick cleanup of md5sum. Executive summary: smaller and faster. by Daniel Verkamp · 10 years ago
  72. 97641f4 Promote sysctl from pending to other, default y. by Rob Landley · 10 years ago
  73. 08f2d7d More sysctl cleanup: fix error message on nonexistent key, write path, and -p. by Rob Landley · 10 years ago
  74. e973d23 Cleanup pass on sysctl. by Rob Landley · 10 years ago
  75. f272df9 First cleanup pass on sysctl. by Rob Landley · 10 years ago
  76. 97c2c1e Add sysctl by Bilal Qureshi. by Rob Landley · 10 years ago
  77. 7e90d22 Add arp from Sandeep Sharma and Kyungwan Han. by Rob Landley · 10 years ago
  78. 5369517 sizeof("string") treats it as a char array _including_ the null terminator, so strncmp(dest, "string", sizeof("string")) is just strcpy. by Rob Landley · 10 years ago
  79. 6ef8ce4 Initial cleanup of last: mostly whitespace, move no record test to start of loop, don't bother to stat an empty file to report when an empty log was created (just report current time). by Rob Landley · 10 years ago
  80. 3a41541 Catch duplicate command name (which breaks the build already, but doesn't identify the culprit). by Rob Landley · 10 years ago
  81. 48c172b Switch human_readable() to just outputing decimal kilo/mega/gigabytes, make du use it, move it from lib/pending.c to lib.c. by Rob Landley · 10 years ago
  82. 30e28cf Use compiler built-in macros to determine if argument parsing can use double or float for FLOAT arguments. (I.E. whether double fits in a long's memory.) Check in a way that the macros not being defined just gives us the shorter one. by Rob Landley · 10 years ago
  83. 4c2bd62 Fix bug reported by Ashwini Sharma: rebound has to be at the end or toy_init() doesn't zero the rest of the struct. by Rob Landley · 10 years ago
  84. 26b2188 In function readfile(), the buffer buf is free'd when readall() fails. This free can cause a crash, if the buffer passed by user of function is not malloc'ed one. by Ashwini Sharma · 10 years ago
  85. a547cf1 Attached is the patch for lsattr and chattr implementation. by Ashwini Sharma · 10 years ago
  86. c54fdc9 Teach cpio to set uid/gid and timestamp. (Timestamp has year 2100 problem.) by Rob Landley · 10 years ago
  87. 7bcaf03 fold cleanup: whitespace and curly brackets. by Rob Landley · 10 years ago
  88. d9403ab Cosmetic tweak: spell out "Linux Standard Base" in menuconfig. by Rob Landley · 10 years ago
  89. 5f6ec72 Fix od bug reported by Samuel Holland ("od -v -b" was appending default output type even though an output type was specified). by Rob Landley · 10 years ago
  90. 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
  91. 5fe77cf As long as uClibc's still around and requires you to jump through hoops to get iconv(), probe and build defconfig without it if it's not there. by Rob Landley · 10 years ago
  92. 3297e87 usage: is lower case (the help generator looks for that, might as well be consistent). by Rob Landley · 10 years ago
  93. 08e18fb Release announcement for 0.4.8. by Rob Landley · 10 years ago
  94. fd63a89 Added tag 0.4.8 for changeset 8556669d3928 by Rob Landley · 10 years ago
  95. aac4222 This version of fold fixes major bugs (infinite loop, overflow) and adds an option for un/refolding text. by Samuel Holland · 10 years ago
  96. 6c64f5f Revert lots of half-finished local debris I didn't mean to check in with Isaac's roadmap update. by Rob Landley · 10 years ago
  97. 76e1cb3 Probe for the existence of FIFREEZE and make fsfreeze depend on it. by Rob Landley · 10 years ago
  98. 15027d6 Probes for O_NOFOLLOW that compile and run something aren't compatible with cross compiling, so just #define it to 0 if it's not in fcntl.h where posix-2008 says. by Rob Landley · 10 years ago
  99. dd61393 A tool to reset the terminal. by Ashwini Sharma · 10 years ago
  100. 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 · 10 years ago