summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Add this in0_42Erik Andersen2000-02-111-0/+15
| | | | -Erik
* UpdatesErik Andersen2000-02-1124-414/+483
| | | | -Erik
* + memory allocation/deallocation is less tolerant of evil.John Beppu2000-02-112-4/+42
|
* fsck_minix.c lost fat.John Beppu2000-02-111-0/+2
|
* reduced .bss size by dynmaically allocating a certain largeJohn Beppu2000-02-112-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 Andersen2000-02-101-1/+1
| | | | -Erik
* More minor touchups.Erik Andersen2000-02-105-262/+258
| | | | -Erik
* Fix stupid typos -- thanks to Taketoshi Sano <kgh12351@nifty.ne.jp>Erik Andersen2000-02-092-4/+4
| | | | | for noticing these bugs. -Erik
* Fix a possible /linuxrc crash.Erik Andersen2000-02-092-2/+4
| | | | -Erik
* Update the sample inittab to add the "ctrlaltdel" action.Erik Andersen2000-02-093-6/+14
| | | | | Note a bug in busybox init that I need to fix. -Erik
* Fixed the init problem where it wouldn't unmount filesystemsErik Andersen2000-02-0913-354/+457
| | | | | on reboot. Also fixed swapoff -a so it works. -Erik
* Some formatting updates (ran the code through indent)Erik Andersen2000-02-08163-27364/+27866
| | | | -Erik
* mkdir -p had gotten broken. Fixed now.Erik Andersen2000-02-081-1/+2
| | | | -Erik
* Forgot a semicolon.Erik Andersen2000-02-071-1/+1
| | | | -Erik
* device_open is common code -- moved into utility.cErik Andersen2000-02-076-76/+25
| | | | -Erik
* Forgot cp and mv are now cp_mvErik Andersen2000-02-071-2/+1
| | | | -Erik
* Remove the now obsolete test. Tests nowErik Andersen2000-02-071-148/+0
| | | | | live in the tests directory. -Erik
* A few minor updates. ;-)Erik Andersen2000-02-0776-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 Beppu2000-01-302-68/+108
|
* nslookup -- a work in progress...John Beppu2000-01-296-0/+344
|
* Clear up some ambiguity with old style assignments.Erik Andersen2000-01-2911-24/+24
| | | | -Erik
* Minor change. init now uses dup2.Erik Andersen2000-01-294-10/+18
| | | | -Erik
* copy fixes to simplify link copying and always do the right thing.Erik Andersen2000-01-293-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 Andersen2000-01-271-1/+1
| | | | -Erik
* copyFile could call chmod on a symlink, changing the permsErik Andersen2000-01-274-15/+21
| | | | | of the pointed to file. Minor fix to tar for directory handling. -Erik
* Fixed ls formatting for 8 char user names.Erik Andersen2000-01-275-2/+5
| | | | -Erik
* Shuffle location of generic code into utility.cErik Andersen2000-01-264-143/+71
| | | | -Erik
* mount and umount could leak loop device allocations causing the system toErik Andersen2000-01-2611-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 Andersen2000-01-2518-231/+965
| | | | -Erik
* put #if's around the lchown, becauseJohn Beppu2000-01-241-1/+7
| | | | older glibc versions don't have it.
* * added (and documented) "-n" option for head -Erik Andersen2000-01-2321-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 changesJohn Beppu2000-01-231-0/+2
|
* Went ahead and fixed bug #301 (chown not working on symlinks)John Beppu2000-01-231-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 pointedErik Andersen2000-01-235-26/+47
| | | | | to by symlink within a tarball. -Erik
* Some busybox updates. You no longer _have_ to put a "-" in front of tarErik Andersen2000-01-2311-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 Andersen2000-01-222-2/+2
| | | | -Erik
* Tell what I didErik Andersen2000-01-201-0/+4
| | | | -Erik
* Fix a namespace aliasing problem wereby du and dutmp, orErik Andersen2000-01-202-2/+2
| | | | | | rm and rmmod symlinks would be created when only du or rm was included. -Erik
* foreach (@busybox_command) {John Beppu2000-01-191-7/+428
| | | | | put_help_message_in_busybox_pod($_); }
* added a little more content.John Beppu2000-01-191-14/+37
|
* Bug fix. grep wasn't printing file names they way it was supposed to.Erik Andersen2000-01-193-6/+14
| | | | -Erik
* fleshed out a bit more... just wanted to put the currentJohn Beppu2000-01-181-3/+156
| | | | changes under version control.
* the beginnings of a proper man page for busybox.John Beppu2000-01-181-0/+36
|
* tar creation support is now optional.Erik Andersen2000-01-166-182/+262
| | | | -Erik
* Ready for release0_41Erik Andersen2000-01-151-1/+1
|
* Sync up busybox with the latest and greatest. This is not stuff forErik Andersen2000-01-1525-93/+907
| | | | | the Embedix release. -Erik
* * Added -o loop option for mount, and support in umount for loopErik Andersen2000-01-136-44/+392
| | | | | | | devices. Support is toggled by MOUNT_LOOP feature -- Ben Collins <bcollins@debian.org> -Erik
* Bug fixes.Erik Andersen2000-01-1319-145/+166
| | | | -Erik
* Fix a logger bug.Erik Andersen2000-01-093-2/+5
| | | | -Erik
* Possible fixes...Erik Andersen2000-01-082-34/+68
| | | | -Erik