summaryrefslogtreecommitdiff
path: root/applets (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Added 'dumpkmap' to allow people to dump a binary keymap, which can then beEric Andersen2000-07-111-0/+3
| | | | | loaded in by 'loadkmap' -- submitted by Arne Bernin <arne@matrix.loopback.org> -Erik
* Removed sfdisk from BusyBox. It was buggy, fat, and we really couldn'tEric Andersen2000-07-071-3/+0
| | | | | | maintain it very well, so including it was not very appropriate. Those wanting an fdisk are invited to grab a copy from util-linux. -Erik
* Remove leftovers of block_device, which disapperared aroundEric Andersen2000-07-061-3/+0
| | | | | busybox 0.28. -Erik
* Added support for being a login shell, so things like '-su' or '-sh' (stuffEric Andersen2000-06-291-0/+7
| | | | | | where argv[0][0]=='-') will now always invoke the shell. Now you can use BusyBox as a login shell. -Erik
* = minor formatting issuesJohn Beppu2000-06-281-21/+20
|
* + busybox --install [-s]John Beppu2000-06-281-9/+38
| | | | | is functional (but disabled in busybox.def.h by default) Someone email the guy who originally wanted this.
* + s/int install_links/static int install_links/John Beppu2000-06-271-1/+1
| | | | | | | | ? Did you want "busybox --install" or "busybox install" ? The TODO and mailing-list conflict on this issue. I would recommend against "busybox install", because people might confuse it w/ /usr/bin/install that does something different.
* + littering my code w/ comments about what troubles me.John Beppu2000-06-271-1/+6
|
* + busybox --install [-s]John Beppu2000-06-271-0/+74
| | | | | | | | | | | | | | | is almost good to go. Here is my work in progress. + Look at the FIXME in busybox.c to see what I need. The actual (sym)linking is disabled for now, although I'm sure it works ;) (Am I going to have to dig through /proc to find out where the currently running busybox is sitting?) + I put an #ifdef BB_FEATURE_INSTALLER around the new bits of code in busybox.c, and I have a #define BB_FEATURE_INSTALLER in busybox.def.h towards the bottom.
* Removed all vestiges of "math"Pavel Roskin2000-06-211-3/+0
|
* + added dc (aka the function formerly known as math)John Beppu2000-06-211-0/+3
| | | | + did all the housekeeping that this change requires.
* Updates to a number of apps to remove warnings/compile errors under libc5.Eric Andersen2000-06-191-13/+5
| | | | | Tested under both libc5 and libc6 and all seems well with these fixes. -Erik
* Add new apps md5sum uudecode uuencode, fix some minor formatting things.Eric Andersen2000-06-131-0/+9
| | | | -Erik
* A number of additional fixed from Pavel Roskin, note some more bugs in theEric Andersen2000-06-021-0/+3
| | | | | | TODO list. Add Glenn to the Authors list for writing a mini ar for BusyBox, which is now included. -Erik
* More libc portability updates, add in the website (which has not beenErik Andersen2000-05-191-9/+8
| | | | | archived previously). Wrote 'which' during the meeting today. -Erik
* BusyBox shell (lash) can now be used as a standalone shell whenErik Andersen2000-05-131-3/+3
| | | | | | BB_FEATURE_STANDALONE_SHELL is defined (i.e. BusyBox can now completely replace sash). Also fixed it so shell builtins now respect pipes and redirects. -Erik
* Lots of updates. Finished implementing BB_FEATURE_TRIVIAL_HELPErik Andersen2000-05-121-2/+5
| | | | | | | | which lets you compile out most of the "--help" output, saving up to 17k. Renamed mnc to nc. -Erik
* Some accrued fixes/updates.Erik Andersen2000-05-011-0/+3
| | | | | | | | * cp/mv now accepts (and ignores) the -f flag, since it always does force anyway * tail can now accept -<num> commands (e.g. -10) for better compatibility with the standard tail command * added a simple id implementation; doesn't support supp. groups yet
* Latest and greatest. Some effort at libc5 (aiming towards newlib)Erik Andersen2000-04-281-2/+5
| | | | | compatability. -Erik
* Several more updatesErik Andersen2000-04-251-0/+3
| | | | -Erik
* Fix creation of /linuxrcErik Andersen2000-04-182-1/+2
| | | | -Erik
* UpdatesErik Andersen2000-04-181-1/+1
| | | | -Erik
* More documentation updates, and minor fixes to make things syncErik Andersen2000-04-151-32/+32
| | | | | up with the docs. -Erik
* - the message that comes up when busybox is invokedJohn Beppu2000-04-131-3/+4
| | | | w/o parameters was extending beyond the 80th column
* Upates to include copyright 2000 to everythingErik Andersen2000-04-131-5/+3
| | | | -Erik
* Fix sed regexp replacement, which I had hosed (thanks toErik Andersen2000-04-061-2/+1
| | | | | Jim Gleason for finding and fixing the problem) -Erik
* Use gcc -E instead of cpp to enhance portability for brainErik Andersen2000-04-062-2/+2
| | | | | | damaged platforms (i.e. OpenLinux) that do not have cpp in the default path but instead hide it under /usr/lib/... -Erik
* Tar now works perfectly. It behaves much better now then itErik Andersen2000-04-051-2/+2
| | | | | used to. Only thing left to do is add in exclude (-X) option. -Erik
* usleep contributed by Nicolas Pitre <nico@cam.org>Erik Andersen2000-04-041-0/+3
| | | | -Erik
* My latest ramblings.Erik Andersen2000-03-231-98/+98
| | | | -Erik
* Several fixes.Erik Andersen2000-03-173-7/+11
| | | | -Erik
* Major build system updates...Erik Andersen2000-03-163-109/+134
| | | | -Erik
* First pass at writing a shell for busybox.Erik Andersen2000-03-121-3/+6
| | | | | | | | | | 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
* Wrote killall.Erik Andersen2000-03-071-0/+3
| | | | | | Adjusted mount, ps, utility.c, etc to handle my nifty new kernel patches the allow busybox to run perfectly without /proc. -Erik
* Add in tr and dirnameErik Andersen2000-03-051-0/+6
| | | | -Erik
* Wrote uptime. Doesn't use /proc. :)Erik Andersen2000-03-051-2/+5
| | | | -Erik
* Add in freeramdisk.c, which (duh) frees ramdisks. If you have anyErik Andersen2000-03-041-0/+3
| | | | | | ramdisks lying about and want to free up the memory they have used, this baby is the answar you have been waiting for. -Erik
* A few updates (including the cp fix the Craig has been looking for)Erik Andersen2000-03-041-4/+14
| | | | -Erik
* Sync up a few things. Add in a new telnet implementation (stillErik Andersen2000-02-221-0/+3
| | | | | not perfect though). -Erik
* Some updates for the day,Erik Andersen2000-02-181-0/+3
| | | | -Erik
* UpdatesErik Andersen2000-02-111-1/+1
| | | | -Erik
* Some formatting updates (ran the code through indent)Erik Andersen2000-02-081-221/+235
| | | | -Erik
* A few minor updates. ;-)Erik Andersen2000-02-072-7/+5
| | | | | | Seriously though, read the Changelog for busybox 0.42, which this is about to become... -Erik
* nslookup -- a work in progress...John Beppu2000-01-291-0/+3
|
* Some busybox updates. See the changelog for details if you care.Erik Andersen2000-01-251-2/+2
| | | | -Erik
* Better way to check for namespace aliasing.Erik Andersen2000-01-221-1/+1
| | | | -Erik
* Fix a namespace aliasing problem wereby du and dutmp, orErik Andersen2000-01-201-1/+1
| | | | | | rm and rmmod symlinks would be created when only du or rm was included. -Erik
* Sync up busybox with the latest and greatest. This is not stuff forErik Andersen2000-01-151-2/+27
| | | | | the Embedix release. -Erik
* Bug fixes.Erik Andersen2000-01-131-0/+15
| | | | -Erik
* i am busybox of borg. unix will be assimilated.John Beppu2000-01-061-0/+3
|