aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2000-04-07Patch to make killall actually kill all PIDs with the specified name,Erik Andersen
rather then busylooping trying to kill the first one until it dies. Should be more efficient now, and will only send one signal to each specified process. -Erik
2000-04-06Some more minor updates to better use some gcc attributes.Erik Andersen
-Erik
2000-04-06Fix sed regexp replacement, which I had hosed (thanks toErik Andersen
Jim Gleason for finding and fixing the problem) -Erik
2000-04-06Fix time stamp styleErik Andersen
-Erik
2000-04-06Turn off static linking. Duh.Erik Andersen
-Erik
2000-04-06Use gcc -E instead of cpp to enhance portability for brainErik Andersen
damaged platforms (i.e. OpenLinux) that do not have cpp in the default path but instead hide it under /usr/lib/... -Erik
2000-04-05Minor noise removalErik Andersen
-Erik
2000-04-05Tar now works perfectly. It behaves much better now then itErik Andersen
used to. Only thing left to do is add in exclude (-X) option. -Erik
2000-04-04Oops. Forgot the usleep.c file.Erik Andersen
/me dons a paper bag. -Erik
2000-04-04usleep contributed by Nicolas Pitre <nico@cam.org>Erik Andersen
-Erik
2000-04-04Update tar so creation of tarballs is much closer to working...Erik Andersen
-Erik
2000-04-04Minor structural change to allow core dumping(or not) from initErik Andersen
-Erik
2000-04-04minor changes to mount/umount to support-by-ignoring the "-v" flag.Erik Andersen
Added optional core dumping as a feature for init, and include a rewrite of syslogd so that it now supports multiple concurrent connections. -Erik
2000-03-28Yet another installment in the ongoing tar sagaErik Andersen
-Erik
2000-03-26First stages of (re-)writing busybox's tar creation support.Erik Andersen
-Erik
2000-03-25Latest and greatestErik Andersen
-Erik
2000-03-24The new tar for busybox is now done, and works just fineErik Andersen
for extracting files. Creation of tarballs is next... -Erik
2000-03-23More changes that are broken. It doesn't compileErik Andersen
yet, but is closer. -Erik
2000-03-23My latest ramblings.Erik Andersen
-Erik
2000-03-22Use the nice new find_real_root_device function to find theErik Andersen
name of the root device, instead of having libc read whatever lies happen to be in /etc/mtab. -Erik
2000-03-22Add in a nifty function for mount to use.Erik Andersen
-Erik
2000-03-21* all mallocs now use xmalloc (and so are OOM error safe), andErik Andersen
the common error handling saves a few bytes. Thanks to Bob Tinsley <bob@earthrise.demon.co.uk> for the patch. -Erik
2000-03-21Hmm. Missed this changeErik Andersen
2000-03-20Fix bug in memory total checking.Erik Andersen
-Erik
2000-03-19more minor fixesErik Andersen
-Erik
2000-03-19Some more stuff.Erik Andersen
-Erik
2000-03-19Adjust the termio settings, and don't use octal since itErik Andersen
is impossible to read by mere mortals. -Erik
2000-03-17Minor updateErik Andersen
2000-03-17Several fixes.Erik Andersen
-Erik
2000-03-16Fix fg bugErik Andersen
-Erik
2000-03-16Forgot these files...Erik Andersen
-Erik
2000-03-16Major build system updates...Erik Andersen
-Erik
2000-03-14Bug fixErik Andersen
-Erik
2000-03-13Some bug fixes I forgot to check-in the other day.Erik Andersen
Mounting loop devices w/o specifying the filesystem type choked if it didn't guess right the first time. -Erik
2000-03-12First pass at writing a shell for busybox.Erik Andersen
Works fine, full job control support, etc. No syntax yet (if, then, while, etc). Handles pipes and & processes fine. TODO: add command editing, add syntax suport. -Erik
2000-03-08Change BB_FEATURE_USE_DEVPS_N_DEVMTAB to the simplerErik Andersen
BB_FEATURE_USE_DEVPS_PATCH. -Erik
2000-03-08First edition of my Busybox kernel patch. implements devps, devmtab, andErik Andersen
devmodules. With this patch, you can enable BB_FEATURE_USE_DEVPS_N_DEVMTAB and have a completely full featured busybox without having to even compile /proc into the kernel. I'm pretty proud of this patch. It has a few loose ends that should be filled in sometime, but arn't used by busybox (so they arn't very important). -Erik
2000-03-08Fixed up lsmod so it works with my devmodules kernel driver,Erik Andersen
and with /proc. -Erik
2000-03-08+ changed a static array (FileList) into a dynamically allocated oneJohn Beppu
in an attempt to make the .bss section smaller.
2000-03-07Fix bugs related to finding PIDs.Erik Andersen
-Erik
2000-03-07Fix up some #define stuff to ensure the Right Thing(tm)Erik Andersen
happens with all combinations of BB_KILL and BB_KILLALL being defined. -Erik
2000-03-07Add some descriptionErik Andersen
-Erik
2000-03-07Add a #define to make init extra quiet on boot.Erik Andersen
-Erik
2000-03-07Wrote killall.Erik Andersen
Adjusted mount, ps, utility.c, etc to handle my nifty new kernel patches the allow busybox to run perfectly without /proc. -Erik
2000-03-06Fixed a bug where "sed 's/foo/bar/g'" (i.e. a script w/o a -e)Erik Andersen
would go into an infinite loop. -Erik
2000-03-06Oops. I left debugging turned on...Erik Andersen
-Erik
2000-03-05Oops. Forgot to add in uptime when I added uptime.Erik Andersen
Here it is in all its /proc free glory. -Erik
2000-03-05Add in tr and dirnameErik Andersen
-Erik
2000-03-05Wrote uptime. Doesn't use /proc. :)Erik Andersen
-Erik
2000-03-04Add in freeramdisk.c, which (duh) frees ramdisks. If you have anyErik Andersen
ramdisks lying about and want to free up the memory they have used, this baby is the answar you have been waiting for. -Erik