aboutsummaryrefslogtreecommitdiff
path: root/toys/Config.in
AgeCommit message (Collapse)Author
2008-01-19Zap toys/Config.in and instead create generated/Config.in from contents ofRob Landley
toys/*.c. Move relevant info into comment at the top of each toys/*.c. Also convert more of Makefile into a thin wrapper around shell scripts that actually do the work. (Makefile is only still there for the user interface.)
2008-01-10Very early stub of sed, does nothing yet.Rob Landley
2008-01-06Add chvt from David Anders.Rob Landley
2008-01-05A bit more documentation on Patch.Rob Landley
2008-01-05Update help text a bit.Rob Landley
2007-12-31Fix patch to use @@ values and match EOF when fewer trailing than startingRob Landley
context lines.
2007-12-20Typo spotted by Adrian Davey.Rob Landley
2007-12-18Patch should be working now, change config default...Rob Landley
2007-12-15Start of "patch" support. Writes to stdout at the moment.Rob Landley
2007-12-09Add -c option to oneit, to specify console other than /dev/tty0.Rob Landley
2007-12-03Add chroot.Rob Landley
2007-12-03Add first pass at netcat. Base applet, -f, and -w implemented.Rob Landley
2007-11-29Add sha1sum. (No -c mode yet.) Slight tweaks to loopfiles() too.Rob Landley
2007-11-23Add tty appletCharlie Shepherd
2007-11-27Remove a few bytes from basename and add 'em back (and more) in the help string.Rob Landley
2007-11-27Patch from Charlie Shepherd to add basename and dirname. (Fixed up to apply.)Rob Landley
2007-11-20Implement dmesg.Rob Landley
2007-11-10Add an option to let touch extend or truncate a file and rename the err ↵Charlie Shepherd
label to time_error to reduce confusion.
2007-11-10Fix typo in toysh tty description.Charlie Shepherd
2007-11-07Add initial mkfifo implementationCharlie Shepherd
2007-10-31Patch from Charlie Shepherd: Implement touch, set the default in Config.in toRob Landley
y, and remove the length argument (and all talk of changing the length of files).
2007-10-11Promote help to global config option, teach error_exit() to output usage ↵Rob Landley
message when called from get_optflags().
2007-09-05Missing config dependency: The mdev config file should depend on mdev.Rob Landley
2007-08-29Add "help" command. (Building help/help.h requires python, but I'll shipRob Landley
that file with release versions.)
2007-06-18Fix READLINK_F dependency.Rob Landley
2007-06-18Change defaults of working commands to yes, so "make defconfig" is moreRob Landley
useful than "make allyesconfig".
2007-05-17Add sleep.Rob Landley
2007-04-30Add true and false.Rob Landley
2007-04-29Add readlink, xreadlink(), and change xrealloc() to not fight the stupidRob Landley
compiler so much.
2007-04-23Add sync and an incomplete version of mdev.Rob Landley
2007-02-13MacOS X has a defective sed with no -r.Rob Landley
2007-01-20Add "yes" command.Rob Landley
2007-01-20Add "echo". Has -n and -e (but not \0123 yet).Rob Landley
2007-01-18Add count command.Rob Landley
2007-01-07Two unrelated additions I'm working on cross over in this file. In theory IRob Landley
can use mercurial branches to keep this sort of thing separate, but at the moment I'm just going to check in some dangling config entries that don't control anything yet.
2006-11-25Add cat -v.Rob Landley
2006-11-25Add oneit.Rob Landley
2006-11-19New option parsing infrastructure (doesn't use getopt). Hook it up toRob Landley
existing applets. Still a bit buggy, but bits of it work.
2006-11-04Add pwd. Consolidate toy list information under toylist.h.Rob Landley
2006-11-03Implement which. Add hello world to menuconfig. Wrap the various applet mainRob Landley
functions in main.c with USE() macros so --gc-sections can strip them.
2006-11-02Thinko: the Config.in for the toys should be in ./toys, not ./lib.Rob Landley