summaryrefslogtreecommitdiff
path: root/applets/busybox.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* Rewrite argv munger.Matt Kraai2000-12-151-22/+11
|
* Forget to set final argv entry to NULL, breaking sh.c amoungEric Andersen2000-12-091-0/+1
| | | | other things...
* when invoked as 'busybox foo args' remove the "busybox"Eric Andersen2000-12-081-4/+25
| | | | so ps shows only what we want it to show...
* Changed names of functions in utility.c and all affected files, to makeMark Whitley2000-12-071-2/+2
| | | | compliant with the style guide. Everybody rebuild your tags file!
* Patch from Larry Doolittle (with minor touchups from me so everything compilesEric Andersen2000-11-301-0/+4
| | | | | and works) to use the applet definitions in applets.h to autogenerate the applet function and usage prototypes.
* Fix up builtin overrides, and hack in the binary search for findingEric Andersen2000-11-171-8/+0
| | | | matching applets into the shell.
* Restore --help handling I mistakenly removed.Matt Kraai2000-10-251-1/+4
|
* Avoid reinventing the wheel (and thus save some space).Matt Kraai2000-10-251-26/+13
|
* Applied patch from Gaute B Strokkenes <gs234@cam.ac.uk> to use a binary searchMark Whitley2000-10-251-366/+27
| | | | | to locate applets, rather than a linear search. Also, broke out the listing of applets into it's own file: applets.h.
* Put getopt_usage where it belongs and added *_usage entries in busybox.[ch]Mark Whitley2000-10-191-2/+2
|
* Added cmp and readlink applets from Matt Kraai.Mark Whitley2000-10-091-0/+6
|
* Renamed "internal.h" to the more sensible "busybox.h".Eric Andersen2000-09-251-2/+2
| | | | -Erik
* Fix from Matt Kraai for the to the "busybox --install prints out on STDERREric Andersen2000-09-251-14/+7
| | | | | | | | "File already exists" messages for all files (including the ones that DON'T exist)" problem reported by "Bruno L. F. Cabral" <bruno@openline.com.br>. Thanks Matt! -Erik
* Add in xargsEric Andersen2000-09-221-0/+3
|
* Added dos2unix, unix2dos, and unrpm.c thanks to robotti@metconnect.com.Eric Andersen2000-09-201-0/+9
| | | | -Erik
* Added expr, from Edward Betts <edward@debian.org>, with some fixupsEric Andersen2000-09-051-0/+3
| | | | | and docs added by me. -Erik
* Initial implementation of wget, from Chip Rosenthal <chip@laserlink.net>.Eric Andersen2000-09-041-0/+3
| | | | | | Very cool. Still lacks "chunked" transfer-coding, so not totally RFC compliant for HTTP1.1, but very nice nonethe less, and very small. -Erik
* Fix compile when BB_FEATURE_LINUXRC is definedEric Andersen2000-09-011-1/+1
| | | | -Erik
* Added the 'rdate' command, thanks to Sterling Huxley <sterling@europa.com>.Eric Andersen2000-08-211-0/+3
| | | | | I added the docs, and made behavior identical to the GNU version. -Erik
* Added getopt(1) from "Alfred M. Szmidt" <ams@trillian.itslinux.org>Eric Andersen2000-08-211-0/+3
| | | | -Erik
* Add in the "reset" command.Eric Andersen2000-08-211-0/+3
| | | | -Erik
* Minor fixups.Eric Andersen2000-08-191-1/+1
| | | | -Erik
* Some #include updates.Eric Andersen2000-08-101-4/+4
| | | | -Erik
* 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
* Added 'renice' command, thanks to Dave Cinege <dcinege@psychosis.com>Eric Andersen2000-07-211-1/+5
| | | | -Erik
* Centralize handling of --help.Matt Kraai2000-07-191-108/+110
|
* 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
* 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