aboutsummaryrefslogtreecommitdiff
path: root/busybox.def.h (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Gratuitously changed the file "busybox.defs.h" to the moreEric Andersen2000-09-251-330/+0
| | | | | sensible and noticable "Config.h". -Erik
* Add in xargsEric Andersen2000-09-221-0/+1
|
* Add support for the -L option to ls.Matt Kraai2000-09-221-0/+3
|
* Added dos2unix, unix2dos, and unrpm.c thanks to robotti@metconnect.com.Eric Andersen2000-09-201-2/+5
| | | | -Erik
* New ls sorting patch, as written by Sterling Huxley, and then updatedEric Andersen2000-09-071-1/+1
| | | | | | by kent robotti. I then updated it to use my_getpwuid and my_getgrgid (per busybox policy). -Erik
* Added expr, from Edward Betts <edward@debian.org>, with some fixupsEric Andersen2000-09-051-0/+1
| | | | | and docs added by me. -Erik
* Initial implementation of wget, from Chip Rosenthal <chip@laserlink.net>.Eric Andersen2000-09-041-0/+1
| | | | | | Very cool. Still lacks "chunked" transfer-coding, so not totally RFC compliant for HTTP1.1, but very nice nonethe less, and very small. -Erik
* Turned off ls file-sorting till it can be fixed.Eric Andersen2000-09-011-2/+2
|
* Fix a spelling errorEric Andersen2000-08-311-1/+1
| | | | -Erik
* Removed dead regular expression code.Matt Kraai2000-08-281-10/+0
|
* Added the 'rdate' command, thanks to Sterling Huxley <sterling@europa.com>.Eric Andersen2000-08-211-0/+1
| | | | | 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
* Applied patch from Mark Ferrell <mferrell@mvista.com> to use the 'p' option inMark Whitley2000-08-211-0/+3
| | | | substitution expressions.
* Fix a thinko, thanks to Klaasjan <klaasjan@europe.com>Eric Andersen2000-08-211-1/+1
| | | | -Erik
* Add in the "reset" command.Eric Andersen2000-08-211-0/+1
| | | | -Erik
* Minor fixups.Eric Andersen2000-08-191-1/+1
| | | | -Erik
* Add optional ls file sorting, thanks to a patch fromEric Andersen2000-08-111-0/+3
| | | | | Sterling Huxley <sterling@europa.com> -Erik
* Update to the tail rewrite by "Allen Soard" <esp-software@mail.hypermart.net>Eric Andersen2000-08-021-1/+1
| | | | -Erik
* Commit the rewrite of tail by Allen SoardEric Andersen2000-07-311-2/+2
| | | | | | <esp-software@mail.hypermart.net>. Thanks Allen for you work at getting this into shape, -Erik
* Better descriptionEric Andersen2000-07-261-1/+2
|
* Add in BB_FEATURE_CLEAN_UP, which is whether to clean up mem leaks and closeEric Andersen2000-07-251-0/+4
| | | | | files, or not. Usually safe to leave it off and let the OS clean up... -Erik
* Added 'renice' command, thanks to Dave Cinege <dcinege@psychosis.com>Eric Andersen2000-07-211-0/+1
| | | | -Erik
* * syslogd can now log messages to a remote host -- patch thanksEric Andersen2000-07-201-0/+3
| | | | | to Gyepi Sam <gyepi@praxis-sw.com> -Erik
* Removed now incorrect message about NFS not working withEric Andersen2000-07-181-2/+1
| | | | | Linux 2.[34].x kernels. It does work now, -Erik
* It is now possible to select in busybox.def.h whether minixfs version 2Pavel Roskin2000-07-171-0/+3
| | | | is to be supported.
* 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
* Fixed NFS so it supports 2.4.x kernels and NFSv3. Should close bug #1009.Eric Andersen2000-07-101-4/+4
| | | | -Erik
* Better description of the BB_FEATURE_USE_DEVPS_PATCH option.Eric Andersen2000-07-071-6/+12
| | | | -Erik
* Removed sfdisk from BusyBox. It was buggy, fat, and we really couldn'tEric Andersen2000-07-071-1/+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
* Turned some stuff into features that really are features, not apps.Eric Andersen2000-07-061-3/+8
| | | | -Erik
* sh fixes from Marius Groeger <mag@sysgo.de>Eric Andersen2000-07-031-1/+1
| | | | -Erik
* + busybox --install [-s]John Beppu2000-06-281-2/+2
| | | | | is functional (but disabled in busybox.def.h by default) Someone email the guy who originally wanted this.
* + busybox --install [-s]John Beppu2000-06-271-0/+5
| | | | | | | | | | | | | | | 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.
* Added an implicit rule for #defining BB_FEATURE_USE_TERMIOS ifMark Whitley2000-06-211-0/+6
| | | | BB_FEATURE_AUTOWIDTH is #defined.
* + added dc (aka the function formerly known as math)John Beppu2000-06-211-1/+1
| | | | + did all the housekeeping that this change requires.
* Finish off the libc5 porting effort. Everything now works with libc5Eric Andersen2000-06-191-2/+2
| | | | | except for md5sum, which uses the GNU libc addition getline(). -Erik
* Integrate Tomi Ollila's telnet. Costs 3k. :)Eric Andersen2000-06-141-1/+0
| | | | -Erik
* Add new apps md5sum uudecode uuencode, fix some minor formatting things.Eric Andersen2000-06-131-0/+3
| | | | -Erik
* Added a slightly modified version of Ron Alder's insmod patch.Eric Andersen2000-06-121-2/+16
| | | | | Very cool stuff. -Erik
* * Fixed 'swapon -a' and 'swapoff -a', which were broken.Eric Andersen2000-06-071-0/+3
| | | | | | * Fixed 'mount -a' so it works as expected. * Implemented 'ls -R' (enabled by enabling BB_FEATURE_LS_RECURSIVE) -Erik
* More TODO items. Fix a dependancy bug on busybox.def.hEric Andersen2000-06-051-1/+1
| | | | -Erik
* Turn off debugging in the Makefile.Eric Andersen2000-06-031-1/+1
| | | | -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
* More libc portability updates, add in the website (which has not beenErik Andersen2000-05-191-1/+7
| | | | | archived previously). Wrote 'which' during the meeting today. -Erik
* Change a descriptionErik Andersen2000-05-131-0/+1
| | | | -Erik
* Minor fixes to being a standalone shell.Erik Andersen2000-05-131-1/+1
| | | | -Erik
* BusyBox shell (lash) can now be used as a standalone shell whenErik Andersen2000-05-131-0/+5
| | | | | | 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
* More doc updatesErik Andersen2000-05-131-1/+1
| | | | -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
* Add support for "noatime" and "nodiratime" mount flags to mount.Erik Andersen2000-05-051-0/+4
| | | | | | | Change umount "-f" to mean force, and actually use umount2. Change umount "-l" to mean "Do not free loop device". Updates docs accordingly. -Erik