aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2000-03-04A few updates (including the cp fix the Craig has been looking for)Erik Andersen
-Erik
2000-02-29Minor makefile and todo updatesErik Andersen
-Erik
2000-02-24Minor tweak to argv[0] handling for linuxrcErik Andersen
-Erik
2000-02-23Fixed rebooting when init runs as /linuxrcErik Andersen
-Erik
2000-02-23+ this is a small script for helping TargetWizard auto-generateJohn Beppu
busybox.defs.h
2000-02-22Sync up a few things. Add in a new telnet implementation (stillErik Andersen
not perfect though). -Erik
2000-02-22Add in a TODO item,Erik Andersen
-Erik
2000-02-21Update the changelogErik Andersen
-Erik
2000-02-21Removed proc dependancies for init and free (which maintaining exactlyErik Andersen
the same functionality). /proc takes up 90k of kernel space, so it is nice to avoid using it at all costs. The only places where it is depended on is for cetain optional mount/umount features, and for ps and lsmod. -Erik
2000-02-21Minor update for handling TERM with serial consoles.Erik Andersen
-Erik
2000-02-21Forgot to add basename. More fixes to du fromErik Andersen
Friedrich Vedder <fwv@myrtle.lahn.de>. -Erik
2000-02-19Fixed du. Now behaves just like GNU du (only less so).Erik Andersen
-Erik
2000-02-18Some updates for the day,Erik Andersen
-Erik
2000-02-14Formatting fixErik Andersen
-Erik
2000-02-13- I suspect the problem has something to do w/ symlinks.John Beppu
- It's not completely in agreement w/ GNU/du, but + the answer is much closer than before. - Some of the right-shifts seem to have mysteriously disappeared. I put them back in.
2000-02-11Add this inErik Andersen
-Erik
2000-02-11UpdatesErik Andersen
-Erik
2000-02-11+ memory allocation/deallocation is less tolerant of evil.John Beppu
2000-02-11fsck_minix.c lost fat.John Beppu
2000-02-11reduced .bss size by dynmaically allocating a certain largeJohn Beppu
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";'
2000-02-10Fixed a bug,Erik Andersen
-Erik
2000-02-10More minor touchups.Erik Andersen
-Erik
2000-02-09Fix stupid typos -- thanks to Taketoshi Sano <kgh12351@nifty.ne.jp>Erik Andersen
for noticing these bugs. -Erik
2000-02-09Fix a possible /linuxrc crash.Erik Andersen
-Erik
2000-02-09Update the sample inittab to add the "ctrlaltdel" action.Erik Andersen
Note a bug in busybox init that I need to fix. -Erik
2000-02-09Fixed the init problem where it wouldn't unmount filesystemsErik Andersen
on reboot. Also fixed swapoff -a so it works. -Erik
2000-02-08Some formatting updates (ran the code through indent)Erik Andersen
-Erik
2000-02-08mkdir -p had gotten broken. Fixed now.Erik Andersen
-Erik
2000-02-07Forgot a semicolon.Erik Andersen
-Erik
2000-02-07device_open is common code -- moved into utility.cErik Andersen
-Erik
2000-02-07Forgot cp and mv are now cp_mvErik Andersen
-Erik
2000-02-07Remove the now obsolete test. Tests nowErik Andersen
live in the tests directory. -Erik
2000-02-07A few minor updates. ;-)Erik Andersen
Seriously though, read the Changelog for busybox 0.42, which this is about to become... -Erik
2000-01-30made more robust and commented my code.John Beppu
2000-01-29 nslookup -- a work in progress...John Beppu
2000-01-29Clear up some ambiguity with old style assignments.Erik Andersen
-Erik
2000-01-29Minor change. init now uses dup2.Erik Andersen
-Erik
2000-01-29copy fixes to simplify link copying and always do the right thing.Erik Andersen
ping could segfault because I'm an idiot, and tried to put a value in where I hadn't allocated storage. choke. -Erik
2000-01-27Forgot some debugging noise.Erik Andersen
-Erik
2000-01-27copyFile could call chmod on a symlink, changing the permsErik Andersen
of the pointed to file. Minor fix to tar for directory handling. -Erik
2000-01-27Fixed ls formatting for 8 char user names.Erik Andersen
-Erik
2000-01-26Shuffle location of generic code into utility.cErik Andersen
-Erik
2000-01-26mount and umount could leak loop device allocations causing the system toErik Andersen
quickly run out. Also disable init's SIGHUP handler during shutdown. -Erik
2000-01-25Some busybox updates. See the changelog for details if you care.Erik Andersen
-Erik
2000-01-24put #if's around the lchown, becauseJohn Beppu
older glibc versions don't have it.
2000-01-23* added (and documented) "-n" option for head -Erik Andersen
contributed Friedrich Vedder <fwv@myrtle.lahn.de> * Cleanup for a number of usage messages -- also contributed Friedrich Vedder <fwv@myrtle.lahn.de> -Erik
2000-01-23 Making note of my changesJohn Beppu
2000-01-23 Went ahead and fixed bug #301 (chown not working on symlinks)John Beppu
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
2000-01-23Fix a bug where tar could change perms and ownership of dirs pointedErik Andersen
to by symlink within a tarball. -Erik
2000-01-23Some busybox updates. You no longer _have_ to put a "-" in front of tarErik Andersen
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