log

age author description
Wed, 13 Mar 2013 00:34:56 -0500 Rob Landley A couple quick fixes to find so I can try it out.
Wed, 13 Mar 2013 00:27:40 -0500 Rob Landley Find by Gurang Shastri.
Mon, 11 Mar 2013 22:23:46 -0500 Rob Landley Compile time probe to fish O_NOFOLLOW out of linux headers when fcntl doesn't conform to posix-2008. 0.4.4
Sat, 09 Mar 2013 12:01:36 -0600 Rob Landley O_NOFOLLOW is specified by posix-2008 and varies by target, don't try to supply them for broken headers.
Tue, 05 Mar 2013 03:06:42 -0600 Rob Landley Call stat "stat" instead of "st" in menuconfig. Use xmalloc() instead of malloc.
Tue, 05 Mar 2013 02:48:12 -0600 Rob Landley Fix whitespace in submitted stat command.
Tue, 05 Mar 2013 02:33:12 -0600 Rob Landley Fix another allyesconfig build break in the pending directory.
Sun, 24 Feb 2013 13:48:15 -0600 Rob Landley Sed's still just a stub, but clean it up enough so it at least compiles.
Sun, 24 Feb 2013 12:51:40 -0600 Rob Landley Add readahead.
Sun, 24 Feb 2013 11:11:02 -0600 Rob Landley Comment updates and a policy statement about avoiding #define GNU_dammit
Sat, 23 Feb 2013 18:32:08 -0600 Rob Landley Accumulated web page changes. (Release announcement for previous release, roadmap updates, etc.)
Fri, 22 Feb 2013 12:03:17 -0600 Rob Landley Fix a warning when debug code enabled.
Fri, 22 Feb 2013 11:22:01 -0600 Rob Landley Move some unfinished commands to the "pending" directory.
Sun, 10 Feb 2013 18:04:15 -0600 Rob Landley Implement cp -s option.
Mon, 04 Feb 2013 22:33:27 -0600 Rob Landley Tweak cmp test to be a little more deterministic.
Mon, 04 Feb 2013 08:07:32 -0600 Rob Landley 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.
Sun, 03 Feb 2013 17:04:36 -0600 Rob Landley 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.
Thu, 31 Jan 2013 04:13:07 -0600 Rob Landley Fix -in behavior: descend into existing directory without prompting, show full path in error messages, actually overwrite when answering yes to -i.
Thu, 31 Jan 2013 04:05:56 -0600 Rob Landley Wrong closing tag in roadmap.html.
Thu, 31 Jan 2013 04:05:02 -0600 Rob Landley 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.
Thu, 31 Jan 2013 01:56:57 -0600 Rob Landley Add time command (that only does posix mode).
Fri, 18 Jan 2013 06:52:52 -0600 Rob Landley Added tag 0.4.3 for changeset f8f5ddb6b69a
Fri, 18 Jan 2013 06:03:00 -0600 Rob Landley Adjust umask(0) for cp -p so mknod doesn't have to try to fchmodat() without the unsupported symlink nofollow flag. 0.4.3
Thu, 17 Jan 2013 23:18:03 -0600 Rob Landley Switch readlink on by default, and fill out readlink.test.
Thu, 17 Jan 2013 23:16:38 -0600 Rob Landley Fix xabspath() resolving symlink after .., and properly detecting failure for last entry after nondir.
Wed, 16 Jan 2013 06:57:44 -0600 Rob Landley 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).
Tue, 15 Jan 2013 12:33:46 -0600 Rob Landley Work around more random uClibc-specific breakage.
Mon, 14 Jan 2013 05:25:19 -0600 Rob Landley 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_?)
Sun, 13 Jan 2013 13:48:25 -0600 Rob Landley Revert some debug code accidentally checked in at commit 715.
Sat, 12 Jan 2013 01:40:16 -0600 Rob Landley 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).