aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2007-12-20More random unfinished code documentation.Rob Landley
2007-12-20Typo spotted by Adrian Davey.Rob Landley
2007-12-18Patch should be working now, change config default...Rob Landley
2007-12-18Fluff out code.html a bit more.Rob Landley
2007-12-18Patch command.Rob Landley
2007-12-17minicom.sh should check for a char device, not a file.Rob Landley
2007-12-16A couple more readlink tests.Rob Landley
2007-12-16Delete testdir after use.Rob Landley
2007-12-16Tweak testing.sh so VERBOSE=1 is less noisy.Rob Landley
2007-12-16Add a wrapper to run tests out of scripts/test. With no arguments, runs allRob Landley
*.test files. Arguments are names of commands to test. When environment variable "OLD" is set, tests commands in $PATH rather than new toybox versions.
2007-12-16Script to use stty with netcat -f to talk to a serial port.Rob Landley
2007-12-15Basic tests for readlink.Rob Landley
2007-12-15Start of "patch" support. Writes to stdout at the moment.Rob Landley
2007-12-13Update web pages.Rob Landley
2007-12-12Set the executable bit in license.html so the server side #includes get parsed.Rob Landley
2007-12-11Update links and add some more spec comments.Rob Landley
2007-12-09Changeset 186 assumed that toys.exitval defaults to 0. Actually change theRob Landley
default and have [p]error_exit() always return nonzero anyway.
2007-12-09Add some more .PHONY targets.Rob Landley
2007-12-09Add -c option to oneit, to specify console other than /dev/tty0.Rob Landley
2007-12-03Add comments about SUSv3 specs (or lack thereof).Rob Landley
2007-12-03Other chroots fall back to "/bin/sh -i", so add the -i.Rob Landley
2007-12-03Minor cleanups to sha1sum.Rob Landley
2007-12-03Add chroot.Rob Landley
2007-12-03Netcat needs this to build.Rob Landley
2007-12-03Add first pass at netcat. Base applet, -f, and -w implemented.Rob Landley
2007-11-30Minor cleanups/tweaks to touch.Rob Landley
2007-11-29Add sha1sum. (No -c mode yet.) Slight tweaks to loopfiles() too.Rob Landley
2007-11-29Change command main() functions to return void, and exit(toys.exitval) fromRob Landley
the toybox infrastructure instead. Eliminates a return call from each command.
2007-11-29Add loopfiles() function, make catv use it.Rob Landley
2007-11-27Add a comment about a case that made me stop and think.Rob Landley
2007-11-25Rebuild toybox when a header file changesCharlie Shepherd
2007-11-27Patch from Charlie Shepherd: remove extra \n from error_exit() arguments.Rob Landley
2007-11-27Add comment, and whitespace changes.Rob Landley
2007-11-23Add kconfig/conf to .hgignoreCharlie Shepherd
2007-11-23Add tty appletCharlie Shepherd
2007-11-27Add comment and very minor tweak.Rob Landley
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-24Re-roll loop, making code smaller. Also localize all the crypto informationRob Landley
into a struct that can be blanked in finalize (no more zeroing local variables).
2007-11-24Untangle algorithm: use uint64_t for count, move union into struct, use structRob Landley
more consistently, simplify macros a bit, redo finalization. Also toybox code is gplv2 so remove confusing output to the contrarary (in a main() that's going to get yanked soon anyway, but just to be clear...)
2007-11-24More cleanup: consistent indents, uint32_t, rename functions and structs,Rob Landley
argument order, etc. Use "this" instead of "context" to annoy the c++ guys.
2007-11-24Whitespace change: 4 spaces become one tab.Rob Landley
2007-11-24Minimal changes to make it actually work on an x86-64 host.Rob Landley
2007-11-24Start with public domain SHA-1 in C by Steve Reid <steve@edmweb.com>Rob Landley
http://www.mirrors.wiretapped.net/security/cryptography/hashes/sha1/sha1.c
2007-11-20Implement dmesg.Rob Landley
2007-11-19Tighten up error handling, add a umask() call so -m 123 actually works.Rob Landley
2007-11-19Replace strlcpy() with xstrcpy(), which exits if the string won't fit.Rob Landley
2007-11-15Add noreturn mark to [p]error_exit(), suggested by Charlie Shepherd.Rob Landley
2007-11-15Zap a warning.Rob Landley
2007-11-10Fix error messageCharlie Shepherd