Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Add this in0_42 | Erik Andersen | 2000-02-11 | 1 | -0/+15 |
| | | | | -Erik | ||||
* | Updates | Erik Andersen | 2000-02-11 | 24 | -414/+483 |
| | | | | -Erik | ||||
* | + memory allocation/deallocation is less tolerant of evil. | John Beppu | 2000-02-11 | 2 | -4/+42 |
| | |||||
* | fsck_minix.c lost fat. | John Beppu | 2000-02-11 | 1 | -0/+2 |
| | |||||
* | reduced .bss size by dynmaically allocating a certain large | John Beppu | 2000-02-11 | 2 | -4/+46 |
| | | | | | | | | | | array instead of letting it be static. objdump -t busybox \ | grep .bss \ | sed 's/^.*\.bss //' \ | grep -v ABS \ #| perl -e 'while(<>) { @x = split; @y = reverse split(//, $x[0]); for ($i=0; $i<@y; $i++) { $s += $y[$i] * (16 ** $i); if ($y[$i] && $i > 2) { print "> $y[$i] * 16 ** $i $x[1]\n"; } } } print "$s\n";' | ||||
* | Fixed a bug, | Erik Andersen | 2000-02-10 | 1 | -1/+1 |
| | | | | -Erik | ||||
* | More minor touchups. | Erik Andersen | 2000-02-10 | 5 | -262/+258 |
| | | | | -Erik | ||||
* | Fix stupid typos -- thanks to Taketoshi Sano <kgh12351@nifty.ne.jp> | Erik Andersen | 2000-02-09 | 2 | -4/+4 |
| | | | | | for noticing these bugs. -Erik | ||||
* | Fix a possible /linuxrc crash. | Erik Andersen | 2000-02-09 | 2 | -2/+4 |
| | | | | -Erik | ||||
* | Update the sample inittab to add the "ctrlaltdel" action. | Erik Andersen | 2000-02-09 | 3 | -6/+14 |
| | | | | | Note a bug in busybox init that I need to fix. -Erik | ||||
* | Fixed the init problem where it wouldn't unmount filesystems | Erik Andersen | 2000-02-09 | 13 | -354/+457 |
| | | | | | on reboot. Also fixed swapoff -a so it works. -Erik | ||||
* | Some formatting updates (ran the code through indent) | Erik Andersen | 2000-02-08 | 163 | -27364/+27866 |
| | | | | -Erik | ||||
* | mkdir -p had gotten broken. Fixed now. | Erik Andersen | 2000-02-08 | 1 | -1/+2 |
| | | | | -Erik | ||||
* | Forgot a semicolon. | Erik Andersen | 2000-02-07 | 1 | -1/+1 |
| | | | | -Erik | ||||
* | device_open is common code -- moved into utility.c | Erik Andersen | 2000-02-07 | 6 | -76/+25 |
| | | | | -Erik | ||||
* | Forgot cp and mv are now cp_mv | Erik Andersen | 2000-02-07 | 1 | -2/+1 |
| | | | | -Erik | ||||
* | Remove the now obsolete test. Tests now | Erik Andersen | 2000-02-07 | 1 | -148/+0 |
| | | | | | live in the tests directory. -Erik | ||||
* | A few minor updates. ;-) | Erik Andersen | 2000-02-07 | 76 | -1030/+1856 |
| | | | | | | Seriously though, read the Changelog for busybox 0.42, which this is about to become... -Erik | ||||
* | made more robust and commented my code. | John Beppu | 2000-01-30 | 2 | -68/+108 |
| | |||||
* | nslookup -- a work in progress... | John Beppu | 2000-01-29 | 6 | -0/+344 |
| | |||||
* | Clear up some ambiguity with old style assignments. | Erik Andersen | 2000-01-29 | 11 | -24/+24 |
| | | | | -Erik | ||||
* | Minor change. init now uses dup2. | Erik Andersen | 2000-01-29 | 4 | -10/+18 |
| | | | | -Erik | ||||
* | copy fixes to simplify link copying and always do the right thing. | Erik Andersen | 2000-01-29 | 3 | -26/+16 |
| | | | | | | ping could segfault because I'm an idiot, and tried to put a value in where I hadn't allocated storage. choke. -Erik | ||||
* | Forgot some debugging noise. | Erik Andersen | 2000-01-27 | 1 | -1/+1 |
| | | | | -Erik | ||||
* | copyFile could call chmod on a symlink, changing the perms | Erik Andersen | 2000-01-27 | 4 | -15/+21 |
| | | | | | of the pointed to file. Minor fix to tar for directory handling. -Erik | ||||
* | Fixed ls formatting for 8 char user names. | Erik Andersen | 2000-01-27 | 5 | -2/+5 |
| | | | | -Erik | ||||
* | Shuffle location of generic code into utility.c | Erik Andersen | 2000-01-26 | 4 | -143/+71 |
| | | | | -Erik | ||||
* | mount and umount could leak loop device allocations causing the system to | Erik Andersen | 2000-01-26 | 11 | -264/+266 |
| | | | | | quickly run out. Also disable init's SIGHUP handler during shutdown. -Erik | ||||
* | Some busybox updates. See the changelog for details if you care. | Erik Andersen | 2000-01-25 | 18 | -231/+965 |
| | | | | -Erik | ||||
* | put #if's around the lchown, because | John Beppu | 2000-01-24 | 1 | -1/+7 |
| | | | | older glibc versions don't have it. | ||||
* | * added (and documented) "-n" option for head - | Erik Andersen | 2000-01-23 | 21 | -107/+112 |
| | | | | | | | contributed Friedrich Vedder <fwv@myrtle.lahn.de> * Cleanup for a number of usage messages -- also contributed Friedrich Vedder <fwv@myrtle.lahn.de> -Erik | ||||
* | Making note of my changes | John Beppu | 2000-01-23 | 1 | -0/+2 |
| | |||||
* | Went ahead and fixed bug #301 (chown not working on symlinks) | John Beppu | 2000-01-23 | 1 | -1/+1 |
| | | | | | | | in fileAction(), I changed the chown() to lchown(); Hopefully, that doesn't break anything. (I don't think it does). nested ?:?:?: madness in chmod_chown_chgrp.c | ||||
* | Fix a bug where tar could change perms and ownership of dirs pointed | Erik Andersen | 2000-01-23 | 5 | -26/+47 |
| | | | | | to by symlink within a tarball. -Erik | ||||
* | Some busybox updates. You no longer _have_ to put a "-" in front of tar | Erik Andersen | 2000-01-23 | 11 | -255/+364 |
| | | | | | | | options, logger is better behaved and has a "-t" option now. init now supports the kernel chroot patch, so you can chroot to a new device and umount the old root. -Erik | ||||
* | Better way to check for namespace aliasing. | Erik Andersen | 2000-01-22 | 2 | -2/+2 |
| | | | | -Erik | ||||
* | Tell what I did | Erik Andersen | 2000-01-20 | 1 | -0/+4 |
| | | | | -Erik | ||||
* | Fix a namespace aliasing problem wereby du and dutmp, or | Erik Andersen | 2000-01-20 | 2 | -2/+2 |
| | | | | | | rm and rmmod symlinks would be created when only du or rm was included. -Erik | ||||
* | foreach (@busybox_command) { | John Beppu | 2000-01-19 | 1 | -7/+428 |
| | | | | | put_help_message_in_busybox_pod($_); } | ||||
* | added a little more content. | John Beppu | 2000-01-19 | 1 | -14/+37 |
| | |||||
* | Bug fix. grep wasn't printing file names they way it was supposed to. | Erik Andersen | 2000-01-19 | 3 | -6/+14 |
| | | | | -Erik | ||||
* | fleshed out a bit more... just wanted to put the current | John Beppu | 2000-01-18 | 1 | -3/+156 |
| | | | | changes under version control. | ||||
* | the beginnings of a proper man page for busybox. | John Beppu | 2000-01-18 | 1 | -0/+36 |
| | |||||
* | tar creation support is now optional. | Erik Andersen | 2000-01-16 | 6 | -182/+262 |
| | | | | -Erik | ||||
* | Ready for release0_41 | Erik Andersen | 2000-01-15 | 1 | -1/+1 |
| | |||||
* | Sync up busybox with the latest and greatest. This is not stuff for | Erik Andersen | 2000-01-15 | 25 | -93/+907 |
| | | | | | the Embedix release. -Erik | ||||
* | * Added -o loop option for mount, and support in umount for loop | Erik Andersen | 2000-01-13 | 6 | -44/+392 |
| | | | | | | | devices. Support is toggled by MOUNT_LOOP feature -- Ben Collins <bcollins@debian.org> -Erik | ||||
* | Bug fixes. | Erik Andersen | 2000-01-13 | 19 | -145/+166 |
| | | | | -Erik | ||||
* | Fix a logger bug. | Erik Andersen | 2000-01-09 | 3 | -2/+5 |
| | | | | -Erik | ||||
* | Possible fixes... | Erik Andersen | 2000-01-08 | 2 | -34/+68 |
| | | | | -Erik |