aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2012-07-23Workaround longstanding glibc/ld bug, ala ↵0.4.0Rob Landley
http://sources.redhat.com/bugzilla/show_bug.cgi?id=3400, which prevents "./toybox | wc" from producing any output when toybox was statically linked.
2012-07-21More web page roadmap/status update stuff.Rob Landley
2012-07-21Make chmod +w respect umask, implement +s and +t, fix ls to show ↵Rob Landley
suid/sgid/stid without x bit.
2012-07-21Use "_password" instead of "_passwd" for names in lib/password.c.Rob Landley
2012-07-21Add date -r, make -u work even when /etc/localtime set, and lots of ↵Rob Landley
cleanup/refactoring.
2012-07-21Add status.html and script to calculate it from roadmap info.Rob Landley
2012-07-20taskset.c now also support executing new commands with a given cpu affinity maskElie De Brauwer
2012-07-20toys/login.c: make use of the read_passwd function offered by the passwd ↵Elie De Brauwer
library.
2012-07-18Trivial cleanups.Rob Landley
2012-07-18Cleanup of w command.Rob Landley
2012-07-18Add w command by Gaurang Shastri.Rob Landley
2012-07-18Only add / in dirtree_path if it hasn't already got one, spotted by Ashwini ↵Rob Landley
Sharma.
2012-07-17Largely cosmetic code cleanups.Rob Landley
2012-07-15Adding initial implementation of tasksetElie De Brauwer
2012-07-17Add passwd by Kyungwan Han.Rob Landley
2012-07-15Add documentation for lib/llist.c and lib/dirtree.c.Rob Landley
2012-07-15Genericize llist code a bit: rename llist_free() to llist_traverse(), and no ↵Rob Landley
longer accept NULL as a synonym for free.
2012-07-15New infrastructure for od (oops).Rob Landley
2012-07-14Fill out od -c and -f.Rob Landley
2012-07-11Complete rewrite of od, mostly working. (Need to finish -c and -f.)Rob Landley
2012-07-09Add modinfo by Andre Renaud.Rob Landley
2012-07-05- Do not abort testing after running the sort testsElie De Brauwer
- Add tail testcases for input not ending on a newline - Fix condition where input coming from stdin does not have a trailing newline
2012-07-05Put cmp.c EOF notice on stderrElie De Brauwer
2012-07-05Add LSB link to the template, for reference.Rob Landley
2012-07-01A note on error messages and internationalization.Rob Landley
2012-06-30Add NOP b (byte) suffix to atolx() since od needs it.Rob Landley
2012-06-26Minor cleanups and refactoring. Make FLAG macros closer to what should ↵Rob Landley
eventually be generated for us by the build infrastructure.
2012-06-26Longer usage line and combine ascii[] into a single string.Rob Landley
2012-06-26Some refactoring, shouldn't affect the generated code.Rob Landley
2012-06-26First drop of od, from Andre Renaud.Rob Landley
2012-06-25Update news page for the past two releases.Rob Landley
2012-06-25Added tag 0.3.1 for changeset 8bee9c27c219Rob Landley
2012-06-25Added tag 0.3.0 for changeset d8566c3321f0Rob Landley
2012-06-24Unify chown and chgrp, add support for -hHLP flags.0.3.1Rob Landley
2012-06-24Work around a Bash bug that removes "." from the $PATH when you're root. ↵Rob Landley
(The FSF believes it knows better than you, and won't let you do things, in the name of Freedom.)
2012-06-23Add chgrp test.Rob Landley
2012-06-22Minor code refactoring.Rob Landley
2012-06-18Replace CCFLAGS with description of how to add flags to HOSTCC.Rob Landley
2012-06-18Add date command by Andre Renaud.Rob Landley
2012-06-16Add dirtree_parentfd()Rob Landley
2012-06-16More header fiddling: crypt.h is silly, SUSv4 requires crypt() to be ↵Rob Landley
prototyped in unistd.h. The fact glibc refuses to do so without a wacky #define is a glibc bug, treat it as such.
2012-06-14A few more links for the index.Rob Landley
2012-06-14Cosmetic tweak to command preamble.Rob Landley
2012-06-13Fix an embarassing bug causing ls -l to segfault on 32 bit targets.Rob Landley
2012-06-12Delete wrappers converted to commands.Rob Landley
2012-06-11Multiplexer needs stayroot flag for suid handling.0.3.0Rob Landley
2012-06-10The linux from scratch build wants -v on chmod.Rob Landley
2012-06-09Implement DIRTREE_SYMFOLLOW and ls -cSHL.Rob Landley
2012-06-09Feeding -1 to xdup() isn't an error.Rob Landley
2012-06-09Add ls -kqsunort, and fix -F @symlink.Rob Landley