summaryrefslogtreecommitdiff
path: root/include (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* Move bunzip2 idecompression code to libunarchiveGlenn L McGrath2002-11-031-0/+3
|
* Make uncompress a seperate applet so it doesnt pull in all the gunzip codeGlenn L McGrath2002-11-012-4/+10
|
* vodz forgot to include the suid fieldEric Andersen2002-10-221-2/+2
|
* Apply patch from bug #1278 -- fix usage message for theEric Andersen2002-10-221-1/+1
| | | | start_stop_daemon applet.
* vodz writes:Eric Andersen2002-10-221-2/+2
| | | | | Oops... Last patch 63 have small typo (stable/devel) mixing. Attached patch removing lines from TODO also :)
* last_patch63 from vodz: add in crond and crontab appletsEric Andersen2002-10-222-0/+30
|
* Patch last_pach62 from vodz. This patch moves all the /proc parsingEric Andersen2002-10-221-1/+20
| | | | code into libbb so it can be shared by ps, top, etc, saving over 1.5k.
* Update dpkg to use new unarchive codeGlenn L McGrath2002-10-191-1/+5
|
* Fix exclude/include problemGlenn L McGrath2002-10-191-1/+2
|
* added full udhcp integrationRuss Dill2002-10-142-3/+25
|
* Fix init docsEric Andersen2002-09-301-1/+1
|
* last_patch58 from vodz:Eric Andersen2002-09-302-0/+11
| | | | | | | Ok. I generate patch for include to busybox-devel my work with top (original author give me maintaining) and telnetd (my support and unofficial maintaining) applets. Docs changes also: added awk, netstat, time applets to list ;)
* Vodz' last_patch57:Eric Andersen2002-09-301-2/+2
| | | | | | | | | | | | | | | Hi, Erik. my_getpw(uid/gid) and applets used it have problem: if username for uid not found, applets can`t detect it (but code pessent). Also "%8ld " format is bad: spaces not required (applets have self format or spec format (tar applet) and overflow for "id" applet...) This problem also pressent in stable version. Patch for unstable in attach. --w vodz
* Fix compress support and prevent a segfaultGlenn L McGrath2002-09-272-1/+2
|
* Reverse some minor changes that got caught up in my big unarchive patchGlenn L McGrath2002-09-251-4/+4
|
* New common unarchive code.Glenn L McGrath2002-09-252-42/+88
|
* Add a new top appletEric Andersen2002-09-172-0/+12
| | | | -Erik
* Watch applet by Michael HabermannGlenn L McGrath2002-09-162-0/+15
|
* Apply vodz' last_patch52Eric Andersen2002-09-163-4/+4
|
* mesg applet by Manuel Novoa IIIGlenn L McGrath2002-09-162-0/+10
|
* openvt applet by Quy TonthatGlenn L McGrath2002-09-162-0/+10
|
* Use busybox's show_usage function for helpGlenn L McGrath2002-09-151-0/+1
|
* Awk applet written from scratch by Dmitry ZakharovGlenn L McGrath2002-09-152-0/+11
|
* Remove extrangeous backslashes that were probably introduced byAaron Lehmann2002-08-231-4/+4
| | | | | someone joining lines and forgetting to remove the backslash escaping the newline.
* define inline if needed for ANSI C compatabilityGlenn L McGrath2002-08-221-0/+4
|
* Remove unwanted comments, run through indentGlenn L McGrath2002-08-221-11/+10
|
* Run through indent, use /* */ style commentsGlenn L McGrath2002-08-221-12/+15
|
* Remove definition of is_octal and is_decimal, they arent usedGlenn L McGrath2002-08-221-3/+0
|
* New applet, udhcp clientGlenn L McGrath2002-08-212-0/+17
|
* Added a help text for the -C option to syslogdRobert Griebl2002-08-071-1/+9
|
* Initial checkin of a very primitive hwclock replacementRobert Griebl2002-07-212-0/+14
|
* Applied vodz' patches #49 and #50 (with a small correction in runshell.c)Robert Griebl2002-07-191-0/+2
| | | | | | | | | #49: I found one memory overflow and memory leak in "ln" applet. Last patch reduced also 54 bytes. ;) #50: I found bug in loginutils/Makefile.in. New patch have also new function to libbb and aplied this to applets and other cosmetic changes.
* Scrub pwd.h and grp.h handling so we don't have to play anyEric Andersen2002-07-033-4/+4
| | | | | silly games. -Erik
* This patch from Bart Visscher <magick@linux-fan.com> addsEric Andersen2002-07-034-1/+40
| | | | | | | | | | | | | | | IPV6 support to busybox. This patch does the following: * Add IPv6 support to libbb * Enable IPv6 interface address display * Add IPv6 config option * Adds ping6, an adaptation of the ping applet for IPv6 * Adds support routines for ping6: - xgethostbyname2 - create_icmp6_socket * Adds ifconfig support for IPv6 * Add support IPv6 to netstat * Add IPv6 support to route Thanks Bart!
* Patch from Martin Volf <volf@dragon.cz> to fix where I hadEric Andersen2002-07-031-2/+2
| | | | screwed up the usage messages
* Cleanup shadow.h stuff so it behaves as intendedEric Andersen2002-07-031-81/+0
| | | | -Erik
* Silly spelling fixEric Andersen2002-07-031-1/+1
| | | | -Erik
* Port over the last of the tinylogin appletsEric Andersen2002-06-234-0/+155
| | | | -Erik
* Bigger patch for (partial) tinylogin integrationRobert Griebl2002-06-041-0/+16
| | | | | | | | | | | | | - Made a new dir loginutils - Moved all applets from pwd_grp to loginutils - Added new applets su.c login.c to loginutils - Made a new dir libpwdgrp - Moved everything from pwd_grp/libpwd_grp there - Added shadow.c to libpwdgrp - Removed dir pwd_grp - Added usage strings for login and su to usage.h - Changed main Makefile to reflect the dir rearrangements [Parts of this patch may overlap with my other two patches]
* Fix for broken handling off BusyBox's own pwd/grp implementationsRobert Griebl2002-06-043-4/+88
| | | | [Parts of this patch may overlap with my other two patches]
* Implement two types of suid/sgid support for BusyBox:Robert Griebl2002-06-043-179/+195
| | | | | | 1) tinylogin like with compile time selection and a chown root.root 2) Runtime configurable via /etc/busybox.conf (docu is in the works) [Parts of this patch may overlap with my other two patches]
* Support old-style compress (.Z) files via libbb / unzip( ) callsRobert Griebl2002-05-151-0/+5
| | | | | (configurable) - When enabled an applet "uncompress" is also made available (oddname to gunzip)
* Added support for -Y|--proxy=on/off to wgetRobert Griebl2002-05-141-2/+3
|
* This patch adds -e (extended information) to route and -r/-e (show routingRobert Griebl2002-05-141-2/+5
| | | | | tables/extended information) to netstat. This makes them behave (more) like their GNU counterparts.
* Support noerror optionEric Andersen2002-04-271-1/+2
|
* Add netcat -i option, per patch from Cristian Ionescu-IdbohrnEric Andersen2002-04-261-0/+1
| | | | <cristian.ionescu-idbohrn@axis.com>
* Add the who applet, supplied by Da Chen <dchen@ayrnetworks.com>Eric Andersen2002-04-262-2/+13
|
* Patch from Jim Treadway -- fix a missing "\" in usage.hEric Andersen2002-04-131-1/+1
|
* Stupid gcc always includes its own builtin strlen()...Eric Andersen2002-04-131-0/+4
|
* Patch from Edward Betts <edward@debian.org> to add -x switch to du.cEric Andersen2002-04-061-1/+2
|