- 34b91a9 Break out lib/pending.h from lib/lib.h. by Rob Landley · 11 years ago
- 10bdaa4 Tweak terminal_size to never set either to 0, and return true/false whether it could determine at least one coordinate. by Rob Landley · 11 years ago
- d0f7935 Prep work for useradd by Ashwini Sharma. by Rob Landley · 11 years ago
- cd0b70e Ah, that's why commit 1057 was skipped last pull: it was unfinished. Oops. (Fix it.) by Rob Landley · 11 years ago
- 5f57bcc Redo tail closer to the original design. Add more tests for large data sets. (Still no -f support yet.) by Rob Landley · 11 years ago
- 12c8814 Ashwini Sharma submitted route.c, adding it to pending. by Rob Landley · 11 years ago
- 8fdcfdb Introduce libbuf analogous to toybuf but for use by lib/*.c. Change readfile() semantics to be able to read into an existing buffer, or malloc its own if that's NULL. by Rob Landley · 11 years ago
- f538f42 Remove itoa/utoa, let libc do this with sprintf. by Rob Landley · 11 years ago
- 42adb7a Allow getmountlist to read fstab too. by Rob Landley · 11 years ago
- dccfb2a syslogd: cleanup by Felix Janda · 11 years ago
- 100fb23 Remove files du no longer needs. by Rob Landley · 11 years ago
- e49fe14 Add daemonize function to lib for klogd and syslogd by Felix Janda · 11 years ago
- 1aa7511 Forgot to check in xfdopen(). My bad. by Rob Landley · 11 years ago
- 7275667 Add timeout, factoring out common code from sleep. by Rob Landley · 11 years ago
- d390493 Split lib/xwrap.c from lib/lib.c by Rob Landley · 11 years ago
- e999ca0 add grep by Strake · 11 years ago
- 5583030 Add xexit() and make error_exit() use it. by Rob Landley · 11 years ago
- 5a26a86 Stat cleanup. by Rob Landley · 11 years ago
- 085f236 Add peek/poke to header file. by Rob Landley · 11 years ago
- 078d31c Convert getmountlist() to xgetmountlist(). by Rob Landley · 12 years ago
- 5a221e6 Add library function for the file permission formatting in ls and stat by Felix Janda · 12 years ago
- f015344 Add posix headers to toynet.h, move xioctl() to lib.c, introduce lib/net.c and move xsocket() to it. by Rob Landley · 12 years ago
- be93c91 More ifconfig cleanup. by Rob Landley · 12 years ago
- 36ffc5a Move guts of help command into show_help() in lib/help.c, with config TOYBOX_HELP controlling infrastructure. by Rob Landley · 12 years ago
- e5f3a0b Remove unused min/max macros. by Rob Landley · 12 years ago
- 090c5c6 Make dirtree_handle_callback() start with dirtree_ like the rest of the dirtree functions. by Rob Landley · 12 years ago
- ca4035b Extend killall with support for -v and -i by Elie De Brauwer · 12 years ago
- 7c6209d Adding -s (single shot) and -o (omit pids) options to pidof by Elie De Brauwer · 12 years ago
- 3162c27 Have dirtree_add_node() set parent so error message can provide full path. by Rob Landley · 12 years ago
- 4ddc73b Remove unused structure definition. by Rob Landley · 12 years ago
- 939fa74 Add expand command as described in POSIX-2008. Erratum: Do not handle backspace. by Jonathan Clairembault · 12 years ago
- fe91e68 Remove readlink -m for being poorly defined ("readlink -m /dev/null/and/more" answers what question, exactly?), rewrite xabspath() to work right and not depend on realpath, fix subtle longstanding bug in llist_traverse(). by Rob Landley · 12 years ago
- bd2e227 Update readlink so -f works. Add -menq while there. by Rob Landley · 12 years ago
- 734b530 Add cut from Jason Kyungwan Han. by Rob Landley · 12 years ago
- 7aa651a Reindent to two spaces per level. Remove vi: directives that haven't worked right in years (ubuntu broke its' vim implementation). Remove trailing spaces. Add/remove blank lines. Re-wordwrap in places. Update documentation with new coding style. by Rob Landley · 12 years ago
- 1a0eedf Add du command. by Ashwini Kumar · 12 years ago
- c52db60 Add signal handler to clean up tempfile. by Rob Landley · 12 years ago
- 6ba38c2 Use "_password" instead of "_passwd" for names in lib/password.c. by Rob Landley · 12 years ago
- 2c917f5 Add passwd by Kyungwan Han. by Rob Landley · 12 years ago
- 9e2b6db Genericize llist code a bit: rename llist_free() to llist_traverse(), and no longer accept NULL as a synonym for free. by Rob Landley · 12 years ago
- 2037b83 New infrastructure for od (oops). by Rob Landley · 12 years ago
- 78aaef2 Unify chown and chgrp, add support for -hHLP flags. by Rob Landley · 12 years ago
- 6ec2178 Add dirtree_parentfd() by Rob Landley · 12 years ago
- 4af1e1d Implement DIRTREE_SYMFOLLOW and ls -cSHL. by Rob Landley · 12 years ago
- 67a069d Update chmod to work with new dirtree, and fix bugs in string_to_mode(). by Rob Landley · 12 years ago
- 38d3cfb Changed my mind about the design again, now callback is dirtree_opennode() and recursion choice is how caller interprets flags. by Rob Landley · 12 years ago
- 4fa1b32 Factor out dirtree_comeagain() callback, setting up depth-first search with open filehandle in node->extra. by Rob Landley · 12 years ago
- eec4637 Add xrealpath() at suggestion of Ashish Briggers. by Rob Landley · 12 years ago
- 8c4ae8a dirtree logic cleanup: switch DIRTREE_NORECURSE and DIRTREE_NOSAVE to DIRTREE_RECURSE and DIRTREE_SAVE. by Rob Landley · 12 years ago
- eb7ea22 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.) by Rob Landley · 13 years ago
- 05744b3 Add string to mode_t parser by Daniel Walter · 13 years ago
- 2c48247 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. by Rob Landley · 13 years ago
- f793d53 Upgrade yesno() and make cp -i use it. by Rob Landley · 13 years ago
- 2dd50ad Factor out common code between killall/kill and move it to lib/lib.c, plus cleanups on kill.c. by Rob Landley · 13 years ago
- ebcf0be And again, I forgot to check in a file. Oops. by Rob Landley · 13 years ago
- ff9ee8f Add killall by Andreas Heck, and factor out common pid code to lib.h. by Rob Landley · 13 years ago
- 26e7b5e Quick and dirty terminal_size() and yesno() functions, both of which need to be improved. by Rob Landley · 13 years ago
- f01503d Commit 415 needs the other two files. (Oops.) by Rob Landley · 13 years ago
- ad63f4b Forgot to check in loopfiles_rw changes needed by truncate. by Rob Landley · 13 years ago
- e0377fb Add TOYBOX_SUID. by Rob Landley · 15 years ago
- 1e01cd1 Correct return types of xstrdup() and xstrndup() by Rob Landley · 15 years ago
- 5247671 Add mkswap. by Rob Landley · 16 years ago
- b15b8fa Add -N, -I, -L, and -P options to cksum. by Rob Landley · 16 years ago
- 7e849c5 Check in crc_init needed by cksum. (Oops.) by Rob Landley · 16 years ago
- bdf037f Upgrade patch to detect hunks that start after a false start. by Rob Landley · 16 years ago
- e824ed1 Tweak from Roberto Foglietta. by Rob Landley · 16 years ago
- 2bfaaf2 Add "tee" command. by Rob Landley · 16 years ago
- 988abb3 Update mdev to work around the newest sysfs api breakage in the 2.6.25 kernel. by Rob Landley · 17 years ago
- 3fc4e0f Teach get_rawline() to continue until a configurable char, and xstrndup() by Rob Landley · 17 years ago
- 7f184fa Make cp pass most of its test suite. Still need to add symlink support. by Rob Landley · 17 years ago
- 6e6871c Add first pass at cp, totally untested, unlikely to work yet. :) by Rob Landley · 17 years ago
- 6ef04ef Move dlist_add() to lib/llist.c by Rob Landley · 17 years ago
- 3548341 Make patch's file add actually work, including directory creating and by Rob Landley · 17 years ago
- e745d8e Upgrade patch to understand creating and deleting files. by Rob Landley · 17 years ago
- 42ecbab Patch command. by Rob Landley · 17 years ago
- bc07865 Start of "patch" support. Writes to stdout at the moment. by Rob Landley · 17 years ago
- 7634b55 Add loopfiles() function, make catv use it. by Rob Landley · 17 years ago
- e15850a Replace strlcpy() with xstrcpy(), which exits if the string won't fit. by Rob Landley · 17 years ago
- efa93b9 Add noreturn mark to [p]error_exit(), suggested by Charlie Shepherd. by Rob Landley · 17 years ago
- d06c58d Promote help to global config option, teach error_exit() to output usage message when called by Rob Landley · 17 years ago
- 103b7e0 Break out dirtree.c and let it call a function instead of returning the data. by Rob Landley · 17 years ago
- 9303e2f More klibc fixes from Maximilian Attems, strlcpy() this time. by Rob Landley · 17 years ago
- 5084fea Add xputs() to detect EOF on writes. by Rob Landley · 17 years ago
- 18d43ff Work around uClibc weirdness. by Rob Landley · 17 years ago
- 0c93f6c Add readlink, xreadlink(), and change xrealloc() to not fight the stupid by Rob Landley · 18 years ago
- f575716 Add atolx() which understands extensions for kilobytes and megabytes and such. by Rob Landley · 18 years ago
- 720fc26 Add parent pointer to dirtree, more work on mke2fs (populate dirtree, count by Rob Landley · 18 years ago
- d25f7e4 Add xstat(), read_dirtree(), and read_dirtree_node(). by Rob Landley · 18 years ago
- e2580db More random progress on mke2fs. Nothing to see yet. by Rob Landley · 18 years ago
- 24d1d45 Add "echo". Has -n and -e (but not \0123 yet). by Rob Landley · 18 years ago
- 6000f13 In bunzip replace setjmp/longjmp handling with error_exit(), replace string by Rob Landley · 18 years ago
- 9016377 Add fdprintf(). Remove reread() and rewrite() which handle -EINTR, which by Rob Landley · 18 years ago
- 055cfcb Add start of mke2fs/gene2fs, and some other stuff I've been working on. by Rob Landley · 18 years ago
- 3388f4c xread() and xwrite() should take void *, not char *. by Rob Landley · 18 years ago
- d3e9d64 Add xaccess() by Rob Landley · 18 years ago
- f3e452a Add rewrite(), writeall(),and xwrite() to match the read versions. by Rob Landley · 18 years ago
- 1322beb xopen() wants 2 arguments unless you're creating a file, in which case you by Rob Landley · 18 years ago
- 1521a9e Add cat -v. by Rob Landley · 18 years ago
- 8324b89 New option parsing infrastructure (doesn't use getopt). Hook it up to by Rob Landley · 18 years ago
- 0a04b3e Implement which. Add hello world to menuconfig. Wrap the various applet main by Rob Landley · 18 years ago