log

age author description
Sat, 10 Nov 2012 18:24:14 -0600 Rob Landley On 32 bit platforms %ld doesn't match uint64_t, so do long long and %lld (rather than deal with verbose PRIu64 nonsense).
Sat, 10 Nov 2012 14:34:01 -0600 Rob Landley Fix reversed test: patch creates a file if /dev/null or dated the epoch _and_ first hunk being replaced is 0 lines at start of file, not one or the other.
Thu, 08 Nov 2012 15:03:03 -0600 Rob Landley Change df percentage calculation to match posix, spotted by Roy Tam.
Thu, 08 Nov 2012 11:19:07 -0600 Felix Janda wc -m only cares about counting characters. Attached is a try on implementing it and some test cases for it. The test cases are only for UTF-8 locales.
Sat, 03 Nov 2012 19:21:59 -0500 Rob Landley Make sha1sum and md5sum default to y.
Fri, 02 Nov 2012 09:50:09 -0500 Rob Landley Use stridx.
Thu, 01 Nov 2012 09:55:29 -0500 Kyungwan Han Add vconfig.c - Creates virtual ethernet devices.
Mon, 29 Oct 2012 16:55:08 -0500 Felix Janda attached are some simple tests for dirname and wc and a fix for a small typo in another test script.
Fri, 26 Oct 2012 21:15:31 -0500 Rob Landley Follow symlinks to get actual device name, getmountlist() reverses order for us now, detect stdout to full device.
Tue, 23 Oct 2012 16:28:14 -0500 Rob Landley Add md5sum in lsb, combine sha1sum (mostly shared infrastructure). Downside: current infrastructure can't give them different help text. Hmmm...
Sun, 21 Oct 2012 17:57:23 -0500 Rob Landley Put the commands at the start of menuconfig and the toybox library options at the end. (Aesthetic tweak.)
Tue, 16 Oct 2012 17:09:30 -0500 Rob Landley Update roadmap/status with new toolbox analysis based on android system/core git repo.
Mon, 08 Oct 2012 21:31:07 -0500 Rob Landley Doc tweak about test suite.
Mon, 08 Oct 2012 21:27:58 -0500 Rob Landley Simplify sha1sum a little.
Mon, 08 Oct 2012 21:24:19 -0500 Rob Landley Fix thinko for uname -m when i686 binary runs on x86_64 host.
Mon, 08 Oct 2012 00:02:30 -0500 Rob Landley 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.
Sun, 07 Oct 2012 23:53:25 -0500 Rob Landley Missing line in patch -l. Oops.
Sun, 07 Oct 2012 22:57:27 -0500 Rob Landley Test tweaks. Set +x on two scripts (so they can be run standalone), fix chgrp so it doesn't abort test all.
Sun, 07 Oct 2012 19:31:12 -0500 Rob Landley Fix thinko in xpidfile()
Sat, 06 Oct 2012 19:07:34 -0500 Rob Landley patch -l (loose match)
Sat, 06 Oct 2012 19:01:23 -0500 Rob Landley Trivial cleanup
Sat, 06 Oct 2012 01:54:24 -0500 Rob Landley Fix catv to display byte 255 correctly. (It's both M- and ^?.)
Fri, 05 Oct 2012 23:33:36 -0500 Rob Landley Cleanup mknod.
Mon, 17 Sep 2012 00:17:16 -0500 Rob Landley Clean up sha1sum, make it use global union properly.
Sun, 09 Sep 2012 18:44:12 -0500 Rob Landley gethostname: Tighten up error messages slightly, switch to default "y".
Sat, 08 Sep 2012 01:27:54 -0500 Rob Landley Add switch_root and fix infrastructure to understand name "switch_root".
Thu, 06 Sep 2012 19:49:40 -0500 Rob Landley I screwed up ls in commit 580. Oops. Fix it.
Thu, 06 Sep 2012 03:10:18 -0500 Rob Landley Posix compliance: wc shouldn't have trailing spaces (breaks aboriginal's mkinitr
Mon, 03 Sep 2012 21:25:46 -0500 Rob Landley Update status page.
Mon, 03 Sep 2012 21:24:46 -0500 Rob Landley mktemp broke kernel build, so new rules: if you don't specify anything, /tmp/tmp.* Specify a file, ./file. Specify -p dir then dir/tmp.*. Specify -p dir and file, dir/file. Also implement -q which lsb wants.