aboutsummaryrefslogtreecommitdiff
path: root/applets (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* Add in the "reset" command.Eric Andersen2000-08-212-0/+13
| | | | -Erik
* Minor fixups.Eric Andersen2000-08-191-1/+1
| | | | -Erik
* Better 'mt' docs, thanks to Kent Robotti <robotti@metconnect.com>Eric Andersen2000-08-111-0/+5
| | | | -Erik
* Some #include updates.Eric Andersen2000-08-101-4/+4
| | | | -Erik
* Merge in two patches from Dave Cinege:Eric Andersen2000-08-021-2/+2
| | | | | | | | | | the first is a cleanup of tar --exclude the second changes mount so mtab works more as it should, and also allows mount to use the traditional short form (i.e. 'mount / -o remount,rw' now works. While inside tar, I changed it to use getopt... -Erik
* Update to the tail rewrite by "Allen Soard" <esp-software@mail.hypermart.net>Eric Andersen2000-08-021-25/+17
| | | | -Erik
* Disabled debugging outputPavel Roskin2000-07-281-8/+6
| | | | | Fine-grained checks for possible errors instead of "set -e" The standard output shows what is being linked to what
* More sh updates (with related changes to everything else). SwitchedEric Andersen2000-07-281-3/+3
| | | | | | to using getopt and cleaned up the resulting mess. if-then-else-fi is now basically working (given a bunch of constraints). -Erik
* Remove some noise.Eric Andersen2000-07-251-27/+0
| | | | -Erik
* Clean up $1=$prefixEric Andersen2000-07-251-5/+5
| | | | -Erik
* Added 'renice' command, thanks to Dave Cinege <dcinege@psychosis.com>Eric Andersen2000-07-212-1/+17
| | | | -Erik
* Fixed usage info for "cut"Pavel Roskin2000-07-211-1/+1
|
* Took -V out of the sed_usage string.Mark Whitley2000-07-201-1/+0
|
* * syslogd can now log messages to a remote host -- patch thanksEric Andersen2000-07-201-0/+3
| | | | | to Gyepi Sam <gyepi@praxis-sw.com> -Erik
* Adjusted install.sh to use relative symlinks, and to optionallyEric Andersen2000-07-201-7/+37
| | | | | create hardlinks. Added a makefile target to create hardlinks. -Erik
* Centralize handling of --help.Matt Kraai2000-07-191-108/+110
|
* Added some missing declarations and fixed some typos. I have toMatt Kraai2000-07-191-0/+1
| | | | remember to compile *before* committing.
* Add usage messages for applets without them.Matt Kraai2000-07-191-0/+89
|
* Funny. Head was getting installed to the wrong spot.Eric Andersen2000-07-191-1/+1
| | | | -Erik
* New message added to messages.c: full_versionPavel Roskin2000-07-171-2/+6
| | | | Used where possible
* Extract usage information into a separate file.Matt Kraai2000-07-161-0/+1204
|
* Be more pedantic aboutthe terminating null applet.Eric Andersen2000-07-141-1/+1
| | | | -Erik
* Use errorMsg rather than fprintf.Matt Kraai2000-07-141-2/+3
|
* The applet name isn't constant.Matt Kraai2000-07-121-1/+1
|
* Added applet_name to contain the applet name.Matt Kraai2000-07-111-5/+5
|
* 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