oldnews.html 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139
  1. <html><head><title>toybox: old news</title>
  2. <!--#include file="header.html" -->
  3. <h2>Old News</h2>
  4. <p>This project <a href=http://lists.busybox.net/pipermail/busybox/2006-September/024794.html>started in 2006</a>, got mothballed in 2009
  5. <a href=http://landley.net/notes-2009.html#18-06-2009>for</a>
  6. <a href=http://landley.net/notes-2011.html#31-03-2011>various</a>
  7. <a href=http://landley.net/notes-2011.html#08-06-2011>reasons</a>
  8. (during which time I
  9. <a href=http://lists.busybox.net/pipermail/busybox/2010-March/071783.html>contributed</a>
  10. some toybox code and design ideas to busybox</a> but retained the copyrights to
  11. my work), then <a href=http://landley.net/notes-2011.html#13-11-2011>relaunched</a>
  12. under a 2-clause BSD license in 2011.
  13. The following news entries predate that relaunch:</p>
  14. <hr>
  15. <p><b>December 1, 2009</b> - <a href=downloads/toybox-0.1.0.tar.bz2>toybox-0.1.0</a> is out.</p>
  16. <p>This release is a couple build fixes and another bugfix to patch.</p>
  17. <hr>
  18. <p><b>April 17, 2009</b> - Another bugfix release,
  19. <a href=downloads/toybox-0.0.9.2.tar.bz2>toybox-0.0.9.2</a>, off by one allocation error in patch.</p>
  20. <p>(Darn fiddly command, innit?)</p>
  21. <hr>
  22. <p><b>March 29, 2009</b> - Released
  23. <a href=downloads/toybox-0.0.9.1.tar.bz2>toybox 0.0.9.1</a> which is a bugfix
  24. release for issues with the patch command.</p>
  25. <p>The project is currently on hold while the developers learn Lua and
  26. decide whether or not to port the whole thing to that language.
  27. (Also note: the mailing list moved. See the links on the left. You'll
  28. have to resubscribe.)</p>
  29. <hr>
  30. <p><b>January 29, 2009</b> - Released
  31. <a href=downloads/toybox-0.0.9.tar.bz2>toybox 0.0.9.tar.bz2</a> which is a minor packaging
  32. fix for 0.0.8. (The previous release tarball contained a prebuilt x86-64
  33. kconfig/conf file, because the release script ran defconfig to
  34. pregenerate help.h, and didn't run make clean afterwards.) The actual source
  35. code is identical to the previous release.</p>
  36. <hr>
  37. <p><b>January 20, 2009</b> - <a href=downloads/toybox-0.0.8.tar.bz2>toybox 0.0.8</a>
  38. adds the uname, cksum, and mkswapfs commands.</p>
  39. <p>This uname implementation is cross compile friendly: when built as a 32 bit
  40. binary on an x86_64 host, it reports "i686" to confuse autoconf less.</p>
  41. <p>This cksum has several extra command line options which can be used to
  42. produce different cksum variants based on the same crc32 algorithm. For
  43. example, the broadcom "trx" image packaging uses a little endian crc,
  44. pre-inverted instead of post-inverted, and does not include the length.
  45. (Without these arguments, it produces the normal SUSv4 cksum output.)</p>
  46. <p>It also upgrades netcat with a server mode (-l option) and fixes several
  47. netcat bugs. It also fixed multiple bugs in "patch", works around a
  48. reiserfs bug in cp, and oneit can reboot on exit more reliably.</p>
  49. <p><b>November 12, 2008</b> -
  50. <a href=downloads/toybox-0.0.7.tar.bz2>toybox 0.0.7</a>
  51. adds sort and tee commands, upgrades the internal option parsing logic and the
  52. test suite, and numerous bugfixes (bunzip, chroot, cat, patch).</p>
  53. <p><b>May 26, 2008</b> - <a href=downloads/toybox-0.0.6.tar.bz2>toybox 0.0.6</a>
  54. adds cat, rmdir, and seq. Bugfixes to cp and a new -v option. Updates mdev to
  55. work with the 2.6.25 kernel. Updates patch to knows that a file dated
  56. 1969-12-31 means it doesn't exist, and to fail if a file it needs to create
  57. already exists. Command line option parsing can now handle things like "echo
  58. -nex" vs "echo -ne". Several updates to the test suite (run scripts/test.sh),
  59. and some build fixes.</p>
  60. <p>
  61. <hr>
  62. <p><b>March 29, 2008</b> -
  63. Time to release <a href=downloads/toybox-0.0.5.tar.bz2>toybox 0.0.5</a>, with
  64. new commands cp and chvt and several bugfixes.</p>
  65. <p>More makefile targets: "make test" runs the test suite (which needs more test
  66. scripts), and make install/install_flat/uninstall/uninstall_flat calls
  67. make/install.sh (with options --long --symlink --force --uninstall depending
  68. on the context).</p>
  69. <p>Most of the work has been behind the scenes, namely a significant rewrite of
  70. the build logic so adding each new command consists of adding a single C file to
  71. the "toys" directory, eliminating the need to touch any other files.
  72. There are specially formatted comments at the top of the C file to generate
  73. the other files, see toys/hello.c for an example. (See generated/README.txt
  74. and <a href=code.html>code.html</a> for details.)</p>
  75. <p><b>January 2, 2008</b> - And <a href=downloads/toybox-0.0.4.tar.bz2>toybox-0.0.4.tar.bz2</a> is out.
  76. The new applets this time around include basename, chroot, dirname, dmesg,
  77. help, mkfifo, netcat, patch, sha1sum, touch, and tty.</p>
  78. <p>Note that this "touch" includes -l to set the length, which can truncate
  79. a file or create a commpletely sparse file, good for filesystem images.</p>
  80. <p>Expect the next release in about 6 months.</p>
  81. <p><b>December 12, 2007</b> - Updated the list of implemented applications,
  82. put up a <a href=todo.txt>todo list</a> and <a href=code.html>infrastructure
  83. documentation</a>. Expect another release towards the end of the month.</p>
  84. <p><b>June 18, 2007</b> - Put out
  85. <a href=downloads/toybox-0.0.3.tar.bz2>toybox-0.0.3.tar.bz2</a> since it's
  86. been too long since I did something like that. This one implements
  87. catv, count, df, echo, false, oneit, pwd, sleep, sync, toysh, true, which,
  88. and yes (which is what "make defconfig" enables). There are several other
  89. commands not enabled by defconfig, because they don't really work yet.</p>
  90. <p>Most of the general infrastructure's there now, although lots of tweaking
  91. and optimizing is still needed. The test suite is skeletal and not entirely
  92. checked in yet, but I'm working on that.</p>
  93. <p>I don't have nearly as much time to work on this as I'd like, but I'm making
  94. a little progress.</p>
  95. <p><b>January 31, 2007</b> -
  96. Toybox <a href=downloads/toybox-0.0.2.tar.bz2>0.0.2 release</a>.
  97. Implements count, yes, pwd, echo, bzcat, catv, oneit, and an unfinished
  98. skeleton of mke2fs. Adds argument parsing logic and bunzip code to library.
  99. Now configured with menuconfig. Adds "make baseline" and "make bloatcheck"
  100. using Matt Mackall's bloat-o-meter, and scripts/showasm.</p>
  101. <p>Screwing up the web page a bit, adding an index bar along the side
  102. which doesn't properly connect up to anything yet. (Busy implementing
  103. mke2fs and gene2fs.)</p>
  104. <p><b>October 30, 2006</b> -
  105. Toybox <a href=downloads/toybox-0.0.1.tar.bz2>0.0.1 release</a>. Implements
  106. df, a skeletal toysh, and some library functions. Proof of concept, really.</p>
  107. <p><b>September 7, 2006</b> -
  108. Project launched, first commit to mercurial archive.</p>
  109. <!--#include file="footer.html" -->