aboutsummaryrefslogtreecommitdiff
path: root/internal.h (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Renamed "internal.h" to the more sensible "busybox.h".Eric Andersen2000-09-251-468/+0
| | | | -Erik
* Gratuitously changed the file "busybox.defs.h" to the moreEric Andersen2000-09-251-1/+1
| | | | | sensible and noticable "Config.h". -Erik
* Add in xargsEric Andersen2000-09-221-0/+2
|
* Added dos2unix, unix2dos, and unrpm.c thanks to robotti@metconnect.com.Eric Andersen2000-09-201-3/+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/+2
| | | | | | Very cool. Still lacks "chunked" transfer-coding, so not totally RFC compliant for HTTP1.1, but very nice nonethe less, and very small. -Erik
* ar.c now uses a linked list to process headers, uses getopt, new internal ↵Glenn L McGrath2000-08-251-0/+1
| | | | | | | | | | function extractAr(srcFD, dstFd, filename) to make it easily accessable to other busybox functions. moved copySubFile from ar.c to utilities.c modified dd.c to use fullWrite modified copyFile in utilities.c to use copySubFile
* Added the 'rdate' command, thanks to Sterling Huxley <sterling@europa.com>.Eric Andersen2000-08-211-0/+2
| | | | | 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/+1
| | | | -Erik
* Add in the "reset" command.Eric Andersen2000-08-211-0/+2
| | | | -Erik
* More sh updates (with related changes to everything else). SwitchedEric Andersen2000-07-281-1/+2
| | | | | | to using getopt and cleaned up the resulting mess. if-then-else-fi is now basically working (given a bunch of constraints). -Erik
* Added 'renice' command, thanks to Dave Cinege <dcinege@psychosis.com>Eric Andersen2000-07-211-0/+2
| | | | -Erik
* Centralize handling of --help.Matt Kraai2000-07-191-0/+1
|
* Added some missing declarations and fixed some typos. I have toMatt Kraai2000-07-191-1/+11
| | | | remember to compile *before* committing.
* Moved some code and add a coupld #defines to support use of dmalloc.Eric Andersen2000-07-191-0/+7
| | | | -Erik
* Moved functions used by "lsmod" from cat.c to utility.cPavel Roskin2000-07-171-0/+2
| | | | | Adjusted to make lsmod and sh compilable as standalone apps. Comment fixes
* Now it's possible to compile Busybox with only one app definedPavel Roskin2000-07-171-4/+1
| | | | (unless it's lsmod, to be fixed by the next commit)
* Extract usage information into a separate file.Matt Kraai2000-07-161-0/+92
|
* More cleanups.Eric Andersen2000-07-141-5/+5
| | | | -Erik
* A couple of minor warning cleanups.Eric Andersen2000-07-141-2/+2
| | | | -Erik
* Changed bb_regcomp to xregcomp and #if 0'ed out destroy_cmd_strs in sed.cMark Whitley2000-07-121-1/+1
| | | | (maybe I'll remove it later).
* The applet name isn't constant.Matt Kraai2000-07-121-1/+1
|
* Added applet_name to contain the applet name.Matt Kraai2000-07-111-0/+1
|
* Forgot to commit these cleanups it seems.Eric Andersen2000-07-111-0/+4
| | | | -Erik
* Added 'dumpkmap' to allow people to dump a binary keymap, which can then beEric Andersen2000-07-111-0/+1
| | | | | loaded in by 'loadkmap' -- submitted by Arne Bernin <arne@matrix.loopback.org> -Erik
* Applied patch from Matt Kraai which does the following:Mark Whitley2000-07-111-1/+2
| | | | | | | - adds case-insensitive matching in sed s/// epxressions - consolodates common regcomp code in grep & sed into bb_regcomp and put in utility.c - cleans up a bunch of cruft
* Fixed NFS so it supports 2.4.x kernels and NFSv3. Should close bug #1009.Eric Andersen2000-07-101-1/+5
| | | | -Erik
* From Matt Kraai <kraai@alumni.carnegiemellon.edu>:Eric Andersen2000-07-101-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | Howdy, Bug #1006 reports that ln -s /tmp/foo . does not work correctly. In fact, it appears that any instantiation of ln -s FILE... DIRECTORY does not work. The following patch adds support for this form, which then fixes the particular instance noted in the bug report. In the process, I needed the basename function. This appears in the string.h provided by glibc, but not uC-libc. So I wrote my own to go in utility.c, called get_last_path_component. I also modified the basename utility to use this function. At some point it might be desirous to use the basename from the library if it exists, and otherwise compile our own. But I don't know how to do this. Matt
* Remove leftovers of block_device, which disapperared aroundEric Andersen2000-07-061-1/+0
| | | | | busybox 0.28. -Erik
* * Fix to tr so it recognizes standard escape sequences. Merged commonEric Andersen2000-07-051-0/+1
| | | | | | | escape seq. code from tr and echo into utility.c. Fix thanks to Matt Kraai <kraai@alumni.carnegiemellon.edu>. * This should close Bug #1015. Please test. -Erik
* Yanked out the cstring_alloc() and cstring_lineFromFile() functions fromMark Whitley2000-06-281-1/+1
| | | | | | | utility.c and replaced them with get_line_from_file() from the new grep.c. Also changed declaration in internal.h and replaced instances of cstring_lineFromFile() in dc.c and sort.c with get_line_from_file(). Tested them and they worked fine.
* Better cross libc support.Eric Andersen2000-06-281-3/+0
| | | | -Erik
* Updates to handle Linux 2.4.0 kernels (kludged around the "none" entries inEric Andersen2000-06-261-1/+20
| | | | | /proc/mounts, added a hack to make sysinfo work with both old and new kernels). -Erik
* Removed all vestiges of "math"Pavel Roskin2000-06-211-1/+0
|
* + added dc (aka the function formerly known as math)John Beppu2000-06-211-0/+1
| | | | + did all the housekeeping that this change requires.
* Special case the memcopy stuff so it isn't enabled for uclibcEric Andersen2000-06-201-1/+1
| | | | -Erik
* Finish off the libc5 porting effort. Everything now works with libc5Eric Andersen2000-06-191-0/+9
| | | | | except for md5sum, which uses the GNU libc addition getline(). -Erik
* Update internal.h to conditionally include asm/string.hEric Andersen2000-06-191-0/+2
| | | | -Erik
* Updates to a number of apps to remove warnings/compile errors under libc5.Eric Andersen2000-06-191-0/+1
| | | | | Tested under both libc5 and libc6 and all seems well with these fixes. -Erik
* Fix some spelling errors in the source as well.Eric Andersen2000-06-161-1/+1
| | | | -Erik
* Add new apps md5sum uudecode uuencode, fix some minor formatting things.Eric Andersen2000-06-131-0/+3
| | | | -Erik
* A number of additional fixed from Pavel Roskin, note some more bugs in theEric Andersen2000-06-021-0/+1
| | | | | | TODO list. Add Glenn to the Authors list for writing a mini ar for BusyBox, which is now included. -Erik
* First pass at fixing tar segfault, and more portability updates.Erik Andersen2000-05-201-12/+0
| | | | -Erik
* More libc portability updates, add in the website (which has not beenErik Andersen2000-05-191-0/+1
| | | | | archived previously). Wrote 'which' during the meeting today. -Erik
* Some more portability updatesErik Andersen2000-05-171-5/+5
| | | | -Erik
* BusyBox shell (lash) can now be used as a standalone shell whenErik Andersen2000-05-131-1/+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/+3
| | | | | | | | which lets you compile out most of the "--help" output, saving up to 17k. Renamed mnc to nc. -Erik
* * cp -fa now works as expected for symlinks (it didn't before)Erik Andersen2000-05-101-2/+2
| | | | | | * zcat works again (wasn't working since option parsing was broken) * more doc updates/more support for BB_FEATURE_SIMPLE_HELP -Erik
* Some accrued fixes/updates.Erik Andersen2000-05-011-4/+11
| | | | | | | | * 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-22/+41
| | | | | compatability. -Erik