log

age author description
Fri, 01 Jun 2012 17:59:11 -0500 Rob Landley Convert another realpath use to xrealpath().
Fri, 01 Jun 2012 13:51:22 -0500 Rob Landley Convert mktemp to use xrealpath, and general clean up while there.
Fri, 01 Jun 2012 13:50:41 -0500 Rob Landley Add xrealpath() at suggestion of Ashish Briggers.
Thu, 31 May 2012 21:22:10 -0500 Rob Landley Implement -C and -x for ls.
Thu, 31 May 2012 21:17:11 -0500 Rob Landley cp doesn't really need the optstring + logic. Still needs to be updated for new dirtree, though.
Sun, 27 May 2012 00:56:17 -0500 Rob Landley Update chgrp so -R works, tweaking DIRTREE_COMEAGAIN design along the way.
Wed, 23 May 2012 21:54:16 -0500 Rob Landley Probe available libraries to link --as-needed, avoiding "unknown libarary" errors.
Sun, 20 May 2012 15:00:19 -0500 Rob Landley dirtree logic cleanup: switch DIRTREE_NORECURSE and DIRTREE_NOSAVE to DIRTREE_RECURSE and DIRTREE_SAVE.
Sun, 20 May 2012 14:58:39 -0500 Rob Landley Silence pointless warnings.
Wed, 16 May 2012 21:11:43 -0500 Rob Landley First pass at a complete rewrite of string_to_mode(). (It compiled!)
Wed, 09 May 2012 06:39:01 -0500 Rob Landley Remove strndupa() gnu-ism at Georgi's suggestion, and adjust mdev to compile with new dirtree. (No idea if it works, this command was never finished and needs a lot more work.)
Wed, 09 May 2012 06:11:23 -0500 Rob Landley Whitespace (tabs vs spaces) cleanup.
Tue, 01 May 2012 11:45:45 +0200 Elie De Brauwer Addition of mktemp
Sat, 28 Apr 2012 01:22:50 -0500 Rob Landley Georgi pointed out that some overly-pedantic C libraries require you to include both "string.h" and "strings.h". (Most don't.)
Thu, 26 Apr 2012 19:59:38 -0500 Rob Landley Simplify/unify listfiles recursion: populate directory node (and detect top of tree) at start of function rather than end (and redundantly in main). Move title printing down next to total printing.
Tue, 24 Apr 2012 23:09:27 +0200 Elie De Brauwer Adding initial version of login.c
Tue, 24 Apr 2012 20:44:09 -0500 Rob Landley Make -d work in ls.
Tue, 24 Apr 2012 05:48:03 -0500 Rob Landley Require -R to recurse, but descend into directories listed on command line.
Sun, 22 Apr 2012 23:01:23 -0500 Rob Landley More work on ls. Now ls -lR sort of works-ish.
Sat, 14 Apr 2012 19:55:13 +0200 Elie De Brauwer Adding logname
Sat, 14 Apr 2012 22:34:34 -0500 Rob Landley Refactor uniq.c a bit.
Sat, 14 Apr 2012 22:31:53 -0500 Rob Landley Teach make.sh to create flag macros, but with the wrong names. Dunno how to make a translation macro or #ifdef guard to get the names right so they actually be _used_ yet...
Sat, 14 Apr 2012 22:30:41 -0500 Rob Landley Rewrite dirtree so we don't need readdir, scandir, and fts.h. Rewrite ls (from scratch) to use new dirtree infrastructure. (This breaks everything else that currently uses dirtree.)
Sat, 14 Apr 2012 21:43:24 -0500 Rob Landley Comment and whitespace changes.
Sat, 14 Apr 2012 21:41:19 -0500 Rob Landley Use FLAG_ macros for echo optflags.
Sat, 14 Apr 2012 21:27:00 -0500 Rob Landley Match uint64_t with PRIu64 to avoid warnings on 64 bit builds.
Wed, 11 Apr 2012 19:11:45 +0200 Elie De Brauwer toybuf usage enhancement, tabs to spaces, teminal height refresh
Sat, 07 Apr 2012 10:15:52 -0700 Kevin Chase Replace ?: gcc extension with standard code
Mon, 09 Apr 2012 13:31:44 +0200 Elie De Brauwer Adding vmstat
Mon, 02 Apr 2012 23:30:49 +0200 Elie De Brauwer Adding mountpoint
Thu, 22 Mar 2012 09:01:34 -0500 Ilya Kuzmich Implement comm.
Thu, 22 Mar 2012 09:00:59 -0500 Rob Landley The -s flag includes staying quiet about missing files.
Wed, 21 Mar 2012 17:49:14 -0500 Rob Landley Test the right variable in NULL guard, and add NOP "s" suffix.
Tue, 20 Mar 2012 11:10:54 -0500 Rob Landley Using /dev/tty for yesno() is wrong because yes 'n' | cp -ial needs to work.
Mon, 19 Mar 2012 20:56:18 -0500 Rob Landley Unwind gratuitous macros.
Mon, 19 Mar 2012 20:15:08 -0500 Rob Landley Have probe for unshare test for actual unshare() function in libc.
Mon, 19 Mar 2012 19:57:56 -0500 Daniel Walter Add string to mode_t parser
Mon, 19 Mar 2012 19:19:21 -0500 Rob Landley Remove "feature test macros", replace non-portable fdprintf() with standard fprintf().
Fri, 16 Mar 2012 06:42:08 -0500 Georgi Chorbadzhiyski Implement Apple and Android versions of getline(), getdelim(), and clearenv().
Fri, 16 Mar 2012 06:20:48 -0500 Rob Landley The linux header doesn't prototype unshare, and the glibc header introduced a regression in recent versions inexplicably crediting a linux feature to the FSF, so add the prototype ourselves.
Thu, 15 Mar 2012 20:49:11 -0500 Rob Landley Simplify nanosleep call.
Wed, 14 Mar 2012 22:04:06 -0500 Georgi Chorbadzhiyski Implement uniq.
Wed, 14 Mar 2012 21:02:19 -0500 Rob Landley Default new ch* commands to n until enough is implemented not to break aboriginal build.
Tue, 13 Mar 2012 21:05:12 -0500 Georgi Chorbadzhiyski New toys - chmod, chown, and chgrp.
Mon, 12 Mar 2012 23:00:28 -0500 Rob Landley Extensive semi-gratuitous refactoring: factor out common code, handle euid!=uid and egid!=gid cases. (Note: test suite requires root access, possibly container support.)
Mon, 12 Mar 2012 20:56:56 -0500 Rob Landley Tighten up the code a bit, and use actual process group id instead of what /etc/passwd says.
Mon, 12 Mar 2012 00:26:23 -0500 Rob Landley Yet another header for technical susv4 compliance.
Mon, 12 Mar 2012 00:25:40 -0500 Rob Landley Redo tail to use optargs and optionally support lseek. Add support to optargs and llist.c, plus add a test suite entry. Still no -f support though.
Sat, 10 Mar 2012 14:57:33 -0600 Georgi Chorbadzhiyski Fix nanosleep() usage.
Fri, 09 Mar 2012 20:33:16 -0600 Rob Landley Replace deprecated libc function with its totally renamed equivalent.
Fri, 09 Mar 2012 20:23:08 -0600 Rob Landley Work around glibc regression by including Linux header directly.
Fri, 09 Mar 2012 08:33:57 -0600 Rob Landley Add lib/portability.h description with explanation of SWAP() macros.
Thu, 08 Mar 2012 20:14:55 -0600 Rob Landley More stabs at getting #includes right, and moving off of deprecated functions.
Wed, 07 Mar 2012 20:05:36 -0600 Rob Landley Fix mkdir -p to accept paths that already exist, and detect path ending in a file.
Wed, 07 Mar 2012 19:04:50 -0600 Rob Landley Consolidate headers.
Wed, 07 Mar 2012 19:00:21 -0600 Rob Landley Silence a couple pointless warnings.
Tue, 06 Mar 2012 21:19:57 -0600 Rob Landley Cleanups: use perror_msg() and make mode a global.
Tue, 06 Mar 2012 20:58:13 -0600 Georgi Chorbadzhiyski Add mkfifo.
Tue, 06 Mar 2012 20:49:03 -0600 Rob Landley Web page updates.
Tue, 06 Mar 2012 20:48:27 -0600 Rob Landley Comment and whitespace tweaks.
Mon, 05 Mar 2012 23:15:50 -0600 Rob Landley mkdir cleanups: Let umask do its thing at the syscall level, have mode be a global to prepare for -m, use do_blah name loopfiles() usually calls, one less redundant mkdir() call, go ahead and modify writeable args instead of strdup(), return before restoring / so error message is better, use perror_msg().
Mon, 05 Mar 2012 22:19:36 -0600 Georgi Chorbadzhiyski Add mkdir.
Mon, 05 Mar 2012 20:48:35 -0600 Rob Landley Fix xargs -0 option.
Mon, 05 Mar 2012 00:25:32 +0100 Pere Orga whoami: fix toy description, no code changes
Sun, 04 Mar 2012 16:43:12 -0600 Rob Landley Add clear.
Sun, 04 Mar 2012 16:27:21 -0600 Rob Landley Add tac. (Shell wrapper is smaller, but all-in-one static binary is compelling use case.)
Sun, 04 Mar 2012 01:29:57 -0600 Rob Landley Minor optimization.
Sun, 04 Mar 2012 01:26:48 -0600 Georgi Chorbadzhiyski Add whoami.
Sun, 04 Mar 2012 01:24:06 -0600 Georgi Chorbadzhiyski Fix build on slackware-current.
Sun, 04 Mar 2012 00:50:44 -0600 Rob Landley Add longopt, refactor so only one instance of each loop, requre = as part of match, update exit code.
Sat, 03 Mar 2012 23:55:27 -0600 Georgi Chorbadzhiyski Implement printenv command.
Sat, 03 Mar 2012 23:45:01 -0600 Rob Landley Make floating point support depend on TOYBOX_FLOAT, make 0.1m work.
Sat, 03 Mar 2012 22:55:33 -0600 Georgi Chorbadzhiyski Add fraction and extension support to sleep.
Sat, 03 Mar 2012 18:17:49 -0600 Andre Renaud Add -A to ls
Sat, 03 Mar 2012 18:17:26 -0600 Rob Landley Added tag 0.2.1 for changeset 9bcc288a1c54
Sat, 03 Mar 2012 10:56:11 -0600 Rob Landley Fix from Georgi Chorbadzhiyski to make cross compiling more robust. 0.2.1
Fri, 02 Mar 2012 20:18:17 -0600 Rob Landley This uses floating point.
Fri, 02 Mar 2012 20:18:02 -0600 Rob Landley Add copyright notice, fluff out help text, use xexec().
Fri, 02 Mar 2012 08:33:01 -0600 Rob Landley Only show one normal difference (sans -l) and EOF message should go to stdout, not stderr.
Fri, 02 Mar 2012 08:27:50 -0600 Rob Landley Cleanup pass, and support unrecognized slash chars ala "echo -e \p".
Thu, 01 Mar 2012 21:36:20 -0600 Rob Landley Add -n, which kernel build needs.
Tue, 28 Feb 2012 06:34:35 -0600 Rob Landley Now that generated/Config.probed is its own file, add it to build dependencies.
Tue, 28 Feb 2012 06:34:09 -0600 Rob Landley Make documentation even fluffier.
Tue, 28 Feb 2012 00:29:52 -0600 Rob Landley Add "-" type to optargs and teach tail.c to use it. Tighten up help text, use xzalloc() and xputc() as appropriate.
Mon, 27 Feb 2012 21:56:49 -0600 Rob Landley Upgrade yesno() and make cp -i use it.
Sun, 26 Feb 2012 22:04:37 -0600 Rob Landley The aboriginal linux build needs ls -ditc and probably some more unimplemented options yet...
Sun, 26 Feb 2012 21:53:15 -0600 Rob Landley Web page tweaks. Remove background image (makes it hard ot read for some people), and use local roadmap instead of third party wiki.
Sun, 26 Feb 2012 21:52:07 -0600 Rob Landley Teach patch -p that consecutive /// counts as one path component.
Sun, 26 Feb 2012 16:11:25 -0600 Rob Landley Teach lib/args.c that " " this option must take a _separate_ argument, so "kill -stop" and "kill -s top" aren't the same thing. Make kill.c use it, and remove leftover debug printfs.
Sun, 26 Feb 2012 13:48:00 -0600 Rob Landley Factor out common code between killall/kill and move it to lib/lib.c, plus cleanups on kill.c.
Thu, 23 Feb 2012 22:08:27 -0500 Bryce Fricke Implemented -i for cp
Thu, 23 Feb 2012 21:03:18 -0600 Rob Landley Don't mix the the probed symbols with the command symbols.
Thu, 23 Feb 2012 20:56:10 -0600 Rob Landley Bugfix: use the right USE symbol.
Thu, 23 Feb 2012 11:51:13 -0800 Timothy Elliott Add tail.
Tue, 21 Feb 2012 21:39:20 -0600 Daniel Walter update id to be SUS compliant
Tue, 21 Feb 2012 21:27:10 -0600 Rob Landley Replace GPL python debug script with BSD shell script.
Tue, 21 Feb 2012 20:48:52 -0600 Andre Renaud Add in the -n support, and the 64-bit defines. Force ls to act as ls -1 if used in a pipe.
Tue, 21 Feb 2012 19:45:19 -0600 Daniel Walter Add new kill toy. Used to send signals to a process or a process group.
Sat, 18 Feb 2012 13:25:36 +0100 Elie De Brauwer Adding insmod and rmmod
Mon, 13 Feb 2012 19:58:48 +0100 Elie De Brauwer Adding mknod
Mon, 20 Feb 2012 23:15:32 -0600 Rob Landley Tighten up the source code in largely cosmetic ways.
Mon, 20 Feb 2012 20:20:12 -0600 Rob Landley Minor cleanups: lsmod should USE_LSMOD() instead of USE_FREE(), use consistent tab/space idents, and doesn't need a break after a function that exits.
Sat, 18 Feb 2012 09:44:53 +0100 Elie De Brauwer Adding lsmod
Sun, 19 Feb 2012 22:21:45 -0600 Rob Landley Set HOSTCC only if it isn't already set as an environment variable.
Sun, 19 Feb 2012 17:37:49 -0600 Rob Landley Minor tweaks.
Sat, 18 Feb 2012 15:33:27 +0100 Elie De Brauwer Adding swapon and swapoff
Sat, 18 Feb 2012 14:13:55 +0100 Elie De Brauwer mkswap helpstring and argument string
Sat, 18 Feb 2012 22:44:11 -0600 Rob Landley Nathan McSween convinced me compilers that inline memset() can optimize the bzero case pretty well.
Sat, 18 Feb 2012 18:54:30 -0600 Rob Landley Cleanups to killall.
Sat, 18 Feb 2012 18:53:57 -0600 Rob Landley And again, I forgot to check in a file. Oops.
Sat, 18 Feb 2012 18:09:14 -0600 Rob Landley Cleanups to pidof (including some global infrastructure shared with killall).
Sat, 18 Feb 2012 15:19:00 -0600 Rob Landley More ls updates from Andre Renaud: Add -R and initial support for listing files on the command line.
Sat, 18 Feb 2012 15:12:41 -0600 Rob Landley Add killall by Andreas Heck, and factor out common pid code to lib.h.
Sat, 18 Feb 2012 15:08:31 -0600 Rob Landley Add pidof by Andreas Heck.
Wed, 08 Feb 2012 22:47:36 -0800 Timothy Elliott Add tests for cmp.
Fri, 17 Feb 2012 12:06:12 -0600 Rob Landley Add V=1 support to make.
Fri, 17 Feb 2012 12:05:26 -0600 Rob Landley Sigh: moving a header to toys.h isn't very useful if I forget to check in toys.h.
Fri, 17 Feb 2012 05:27:37 -0600 Rob Landley Move realpath from loopfiles() to a for loop, so we don't get hung on read permission for file data when we just want to look at directory info.
Fri, 17 Feb 2012 04:47:16 -0600 Rob Landley Realpath, by Andre Renaud.
Fri, 17 Feb 2012 04:46:55 -0600 Rob Landley Move includes into toys.h, more xprintf()