aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2007-01-07xopen() wants 2 arguments unless you're creating a file, in which case youRob Landley
need 3. Doing varargs for this doesn't really appeal to me (bugs in waiting) so I made an xcreate() that takes 3 args, and had xopen() call it with 0 for the third argument. That way, if we feed O_CREAT to xopen() the permission 000 result should be easy to spot.
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.
2007-01-04Blah. The sed filter's not right, I'll try again later.Rob Landley
2006-12-31Remove more warnings.Rob Landley
2006-12-31Make some of gcc 4.1's dumber warnings go away.Rob Landley
2006-12-30Comment tweak.Rob Landley
2006-12-14Note the mailing list.Rob Landley
2006-11-26Teach clean and distclean to zap more files.Rob Landley
2006-11-26Add bloat-o-meter, make bloatcheck, and scripts/showasm.Rob Landley
2006-11-26Trawling through the archives: a broken test, an unnecessary memset, and aRob Landley
unrolling a small memmove.
2006-11-26More whitespace/cowbell. (And change comment style to //.)Rob Landley
2006-11-26Reduce flag duplication and make kconfig use HOST_CC.Rob Landley
2006-11-25Add my old micro-bunzip library. Needs some cleanup...Rob Landley
2006-11-25Leftover from when I cleaned this up for another project.Rob Landley
2006-11-25Add cat -v.Rob Landley
2006-11-25Add oneit.Rob Landley
2006-11-25Fix a warning.Rob Landley
2006-11-25More work on option parsing. "df -t tmpfs" actually seems to work now.Rob Landley
2006-11-25Add another warning check and a missing dependency.Rob Landley
2006-11-25I got the mercurial web browser thingy set up, note it on the web page.Rob Landley
2006-11-24Fix a half-dozen bugs in argument parsing. More seems to work than not now.Rob Landley
2006-11-19Allocate a more sane amount of memory.Rob Landley
2006-11-19Fix thinko (inverted test).Rob Landley
2006-11-19Add one if() that has lots of whitespace fallout.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-09Web site updates, and a design document.Rob Landley
2006-11-05Redo the index page (flesh it out about halfway), and a couple tweaks toRob Landley
the license page.
2006-11-04The web page should be in the repository, and while I'm at it let's see if IRob Landley
can commit a file that lives under a symlink.
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-02Better dependencies, and feed the linker --gc-sections. (Which is not anRob Landley
substitute for building just the stuff we need, but is easy to do for now.)
2006-11-02Added tag 0.0.1 for changeset 8f8a8ac59c14Rob Landley
2006-11-02Thinko: the Config.in for the toys should be in ./toys, not ./lib.Rob Landley
2006-11-02Add xabspath(), is_file_type(), which_in_path(), and find_in_path().Rob Landley
2006-11-01Linked list functions, forgot to add this to the repository.Rob Landley
2006-11-01Make the config generate gen_config.h with CFG_ and USE() macros.Rob Landley
Add distclean. Make clean have double colons so the kconfig makefile's clean matches.
2006-11-01Add a hello world applet, partly as an example and partly for testing purposes.Rob Landley
2006-11-01The darn thing accidentally created a branch. I had to copy a half-dozenRob Landley
files to temporary locations to get them out of the way of the merge, and the next checkin will be putting them _back_. This commit is entirely to humor mercurial, and if I could figure out how to avoid getting it in this weird state, I would.
2006-11-01The Config files don't need the CONFIG_ prefix.landley
2006-10-31Add menuconfig, plus some basic Config info, lots of which is just futurelandley
plans for toysh. Nothing's currently _using_ this config info, but at least it's being generated now.
2006-10-30Closer support for "pedantic" option for SUSv3. (Ok, it's %ld instead of the0.0.1landley
%d the spec says, but same output. And you can't actually select it until I get menuconfig in. But hey...)
2006-10-30Add reread(), readall(), and xread() on the bus ride in to work...landley
2006-10-30Implement df. Add -Wall to build and fix up warnings. Add copyright notices.landley
Add error_msg() and itoa() to library. Remove argc from globals (since argv is null terminated), add optflags to globals.
2006-10-26Rest of thinko fix.landley
2006-10-26Thinko fix.landley
2006-10-25Add xmsprintf(), xgetcwd(), xgetcwd(), find_in_path().landley
2006-10-18Next drop of toysh, plus more infratructure.landley
2006-10-05Infrastructure, first drop of toy shell, and a bit of work on df.landley
2006-09-28Next snapshot. Tries to grab something out of lib in order to build, I havelandley
an empty "blah.c" in there to make it happy but I'm not checking that in.
2006-09-27Starting a new project. Just a bit past the "hello world" stage...landley