Age | Commit message (Collapse) | Author | |
---|---|---|---|
2007-01-31 | Add "make defconfig". Modify global options to start with CONFIG_TOYBOX_. | Rob Landley | |
2007-01-31 | Add make install_flat. | Rob Landley | |
2007-01-31 | Small cleanup to prepare for cross-compile friendly make install. | Rob Landley | |
2007-01-31 | Added tag 0.0.2 for changeset d2e38cb0b1cd | Rob Landley | |
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 | Move download->downloads (be consistent) and add a skeletal index bar along | Rob Landley | |
the left (copied from firmware linux, half the tabs go nowhere). | |||
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-25 | The fdlength() ioctl apparently doesn't work on files (and the lseek trick | Rob Landley | |
doesn't work on some devices, and we can't always tell _when_ it failed), so go to the binary search for now. | |||
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-20 | Merge a memset with an existing loop, tweak comments. | Rob Landley | |
2007-01-19 | Merge two similar loops and expand a comment. | Rob Landley | |
2007-01-19 | Another suggestion from Manuel: Grab 2 bits instead of 1 inside a loop. Saves | Rob Landley | |
4 bytes and reduces running time by one half of one percent. | |||
2007-01-18 | Add count command. | Rob Landley | |
2007-01-18 | Save 4 bytes of stack space. | 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-18 | More optimizations originally suggested by Manuel Nova: Use a sentinel value | Rob Landley | |
for limit[] to move a test out of a loop. Unroll a single-bit get_bits() to avoid a function call in the common case on a hot path. And one more application of the old "two tests in one via typecasting and/or math" trick. | |||
2007-01-17 | Minor cleanups. | Rob Landley | |
2007-01-17 | Turn a memmove into a while(), reducing running time by 3.5% in my tests. | Rob Landley | |
2007-01-17 | Another application of Manuel Nova's "math instead of ifs" trick. Saves 17b. | Rob Landley | |
2007-01-17 | Minor optimization the compiler already does for us (according to bloatcheck), | Rob Landley | |
but it looks cleaner. | |||
2007-01-17 | Fix off by one error in a test. | Rob Landley | |
2007-01-17 | Comment and whitespace changes. | Rob Landley | |
2007-01-16 | Memmove is 11 bytes shorter than the unrolled loop, and Manuel Nova pointed | Rob Landley | |
out how to turn an if/else into a multiply and subtract (saving 2 bytes). | |||
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-08 | xread() and xwrite() should take void *, not char *. | Rob Landley | |
2007-01-08 | Add xaccess() | Rob Landley | |
2007-01-08 | Add rewrite(), writeall(),and xwrite() to match the read versions. | 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. | |||
2007-01-04 | Blah. The sed filter's not right, I'll try again later. | Rob Landley | |
2006-12-31 | Remove more warnings. | Rob Landley | |
2006-12-31 | Make some of gcc 4.1's dumber warnings go away. | Rob Landley | |
2006-12-30 | Comment tweak. | Rob Landley | |
2006-12-14 | Note the mailing list. | Rob Landley | |
2006-11-26 | Teach clean and distclean to zap more files. | Rob Landley | |
2006-11-26 | Add bloat-o-meter, make bloatcheck, and scripts/showasm. | Rob Landley | |