Age | Commit message (Collapse) | Author | |
---|---|---|---|
2007-01-31 | I forgot to add count.c a while ago. (Memo to self: grab snapshots and build0.0.2 | Rob Landley | |
out of directory more often, to make sure I've checked in all the files...) | |||
2007-01-31 | This creates an almost valid empty ext2 filesystem, except for a few superblock | Rob Landley | |
fields (blank free_blocks and free_inodes), and no root directory. (And technically, no lost+found either.) | |||
2007-01-29 | mke2fs: Stopping for dinner. It compiles. | Rob Landley | |
2007-01-28 | More work on mke2fs. | Rob Landley | |
2007-01-27 | Move superblock initialization to a function. Trim unused padding from | Rob Landley | |
superblock. | |||
2007-01-27 | One more field, minor shrinking, and start on block groups. | Rob Landley | |
2007-01-26 | Filling out most of the ext2 superblock correctly now. | Rob Landley | |
2007-01-25 | Update args.c to implement numeric arguments. | Rob Landley | |
2007-01-23 | More work on mke2fs. | Rob Landley | |
2007-01-23 | More random progress on mke2fs. Nothing to see yet. | Rob Landley | |
2007-01-20 | Add "yes" command. | Rob Landley | |
2007-01-20 | Teach pwd to detect write errors. | Rob Landley | |
2007-01-20 | Comment and whitespace cleanups | Rob Landley | |
2007-01-20 | Helps to "hg add" echo.c. Also, implement \0123 escapes for -e. | Rob Landley | |
2007-01-20 | Add "echo". Has -n and -e (but not \0123 yet). | Rob Landley | |
2007-01-18 | Add count command. | Rob Landley | |
2007-01-18 | In bunzip replace setjmp/longjmp handling with error_exit(), replace string | Rob Landley | |
based handling of a 6-byte header with with two 24-bit integer reads. Use xmalloc() and xzalloc(). | |||
2007-01-18 | Add fdprintf(). Remove reread() and rewrite() which handle -EINTR, which | Rob Landley | |
shouldn't be a problem if we register signal handlers with sigaction(SA_RESTART) Straighten out count and len (I generally consistently use "count" for the current progress and "len" for the total, but this time I got them backwards for some reason and don't want to confuse myself in future.) | |||
2007-01-16 | Add a quick and dirt bzcat (stdin to stdout only for the moment) to test | Rob Landley | |
out the bunzip2 library. | |||
2007-01-14 | Add start of mke2fs/gene2fs, and some other stuff I've been working on. | Rob Landley | |
2007-01-07 | xopen() wants 2 arguments unless you're creating a file, in which case you | Rob 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-07 | Two unrelated additions I'm working on cross over in this file. In theory I | Rob 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-25 | Add cat -v. | Rob Landley | |
2006-11-25 | Add oneit. | Rob Landley | |
2006-11-25 | Fix a warning. | Rob Landley | |
2006-11-25 | More work on option parsing. "df -t tmpfs" actually seems to work now. | Rob Landley | |
2006-11-19 | Fix thinko (inverted test). | Rob Landley | |
2006-11-19 | New option parsing infrastructure (doesn't use getopt). Hook it up to | Rob Landley | |
existing applets. Still a bit buggy, but bits of it work. | |||
2006-11-04 | Add pwd. Consolidate toy list information under toylist.h. | Rob Landley | |
2006-11-03 | Implement which. Add hello world to menuconfig. Wrap the various applet main | Rob Landley | |
functions in main.c with USE() macros so --gc-sections can strip them. | |||
2006-11-02 | Thinko: the Config.in for the toys should be in ./toys, not ./lib. | Rob Landley | |
2006-11-01 | Add a hello world applet, partly as an example and partly for testing purposes. | Rob Landley | |
2006-10-30 | Closer support for "pedantic" option for SUSv3. (Ok, it's %ld instead of the0.0.1 | landley | |
%d the spec says, but same output. And you can't actually select it until I get menuconfig in. But hey...) | |||
2006-10-30 | Implement 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-18 | Next drop of toysh, plus more infratructure. | landley | |
2006-10-05 | Infrastructure, first drop of toy shell, and a bit of work on df. | landley | |
2006-09-28 | Next snapshot. Tries to grab something out of lib in order to build, I have | landley | |
an empty "blah.c" in there to make it happy but I'm not checking that in. | |||
2006-09-27 | Starting a new project. Just a bit past the "hello world" stage... | landley | |