Age | Commit message (Expand) | Author |
2007-02-19 | Calculate block and inode usage in group table and bitmaps. | Rob Landley |
2007-02-18 | Precalculate block and inode usage given a starting file tree. This compiles, | Rob Landley |
2007-02-18 | An old test suite wrapper I wrote, cleaned up a bit and checked for copyrights. | Rob Landley |
2007-02-16 | Add atolx() which understands extensions for kilobytes and megabytes and such. | Rob Landley |
2007-02-14 | Calculate st_nlink for each node, via a small but n^2 algorithm. | Rob Landley |
2007-02-13 | MacOS X has a defective sed with no -r. | Rob Landley |
2007-02-12 | More work on mke2fs.c. Random in-progress snapshot... | Rob Landley |
2007-02-12 | Make kconfig build on MacOS X. (Because it's there.) | Rob Landley |
2007-02-04 | Add parent pointer to dirtree, more work on mke2fs (populate dirtree, count | Rob Landley |
2007-02-04 | Rename functions.c to lib.c. (Easier name to remember.) | Rob Landley |
2007-02-03 | Add xstat(), read_dirtree(), and read_dirtree_node(). | Rob Landley |
2007-02-03 | Teach build to build only the toys/*.c selected in .config, and teach | Rob Landley |
2007-02-02 | Trim a redundant definition that confuses older compilers. (Regression testing | Rob Landley |
2007-02-01 | Toybox option parsing must stop at the first non-option argument. | Rob Landley |
2007-01-31 | Missing comma, and slight simplification in defconfig sed invocation. | Rob Landley |
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 |
2007-01-31 | Move download->downloads (be consistent) and add a skeletal index bar along | Rob Landley |
2007-01-31 | This creates an almost valid empty ext2 filesystem, except for a few superblock | Rob Landley |
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 |
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 |
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 |
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 |
2007-01-18 | Add fdprintf(). Remove reread() and rewrite() which handle -EINTR, which | Rob Landley |
2007-01-18 | More optimizations originally suggested by Manuel Nova: Use a sentinel value | Rob Landley |
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 |
2007-01-17 | Fix off by one error in a test. | Rob Landley |
2007-01-17 | Comment and whitespace changes. | Rob Landley |