aboutsummaryrefslogtreecommitdiff
path: root/include (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* commiting:Paul Fox2005-08-012-0/+9
| | | | | 0000028 03-16-05 patch: new setsid applet
* commiting:Paul Fox2005-08-011-1/+2
| | | | | | 0000073: Add option to inetd applet to run in foreground this option was already there for uclinux -- this just exposes it in the normal case as well.
* commiting patch from bug 71:Paul Fox2005-08-011-0/+6
| | | | | 0000071: patch: implement "--color" option for ls coloring control
* applying patch for bug 72:Paul Fox2005-08-012-0/+10
| | | | | | 0000072: Add applet to redirect console output via ioctl(..., TIOCCONS) applet name changed to setconsole, since suse has a very similar utility. better to treat differences as bugs than invent a new command.
* new config display applet, from bug 46. i've changed the namePaul Fox2005-08-012-0/+8
| | | | | of the applet from "config" to "bbconfig", and renamed the source filenames and symbols to match appropriately.
* allow suppression of default client-id. fixes bug 000037. allowsPaul Fox2005-08-011-2/+3
| | | | busybox to match kernel and u-boot behavior with respect to client-id.
* in order to make sure the INET6 prototypes are exported, we would have to ↵Mike Frysinger2005-07-301-2/+0
| | | | | | include the libbb.h header file ... but then we have to worry about including too early/etc... since simply defining the prototype in an internal header file doesnt hurt anyone, lets not worry about the header file crap and just always prototype the inet6 functions
* #ifdef reduction infrastructure, based on an argument between Shaun Jackman,Rob Landley2005-07-272-2/+2
| | | | | | | | | | | | | | | | | | | Rob Landley, and others. Currently CONFIG options are defined or undefined, so we chop out code with #ifdefs, ala: #ifdef CONFIG_THING stuff(); #endif This creates a new header file, bb_config.h, which sets the CONFIG entry to 1 or 0, and lets us do: if(CONFIG_THING) stuff(); And let the compiler do dead code elimination to get rid of it. (Note: #ifdef will still work because for the 1 case it's a static const int, not a #define.)
* applying fixes from: Paul Fox2005-07-201-0/+1
| | | | | 0000142: unzip enhancements
* applying fix from;Paul Fox2005-07-191-1/+1
| | | | | 0000092: looks like the initializer for .need_suid was missing.
* a bit more polishEric Andersen2005-07-181-1/+0
|
* a bit of polish on makedevsEric Andersen2005-07-181-2/+2
|
* Fixup device table based makedevs so it actually worksEric Andersen2005-07-181-6/+30
|
* Rodney Radford submitted ipcs and ipcrm (system V IPC stuff). They could useRob Landley2005-06-202-2/+46
| | | | some more work to shrink them down.
* import initial fat mke2fsMike Frysinger2005-06-112-0/+38
|
* import tune2fs supportMike Frysinger2005-06-112-0/+19
|
* About time to just apply this and kill off the patchesEric Andersen2005-06-091-0/+13
|
* Add readprofile applet support.Paul Mundt2005-05-202-0/+18
|
* Add automatic umount support to eject command. Patch from Tito,Rob Landley2005-05-141-7/+1
| | | | | | | | with tweaks from Mike Frysinger and Rob Landley. Note: this will still fail to umount a path that contains an ' or \ character. Is it worth the extra size to filter for that?
* update usage to match actual behaviorMike Frysinger2005-05-121-2/+2
|
* Small comm implementatin from Rob Sullivan. Needed to build perl.Rob Landley2005-05-112-0/+12
|
* import ether-wake applet by haveaniceday Bug 252Mike Frysinger2005-05-112-1/+15
|
* change the hardcoded error constant (0x80000000UL) to a nice flexible define ↵Mike Frysinger2005-05-111-0/+1
| | | | (BB_GETOPT_ERROR)
* import eject by Peter Willis / Tito RagusaMike Frysinger2005-05-112-0/+16
|
* make the exec (-e) an optional feature of netcatMike Frysinger2005-05-061-2/+9
|
* In bug 247, haveaniceday writes:Mike Frysinger2005-05-061-0/+1
| | | | | The option "-w secs" adds a timeout for writing.
* From: Shaun Jackman <sjackman@gmail.com>Rob Landley2005-05-031-0/+2
| | | | | | | | | | To: busybox@mail.codepoet.org Wrap sockaddr_in6 in a ifdef CONFIG_FEATURE_IPV6. Include sys/types.h instead of asm/types.h. Include netinet/if_ether.h instead of linux/if_ether.h The ioctl request argument is an int, not an unsigned short.
* A patch from Takeharu KATO to update/fix SE-Linux support.Rob Landley2005-05-031-9/+5
|
* Revert Tito's patch to zcip. My bad, David Brownell had objected and I missedRob Landley2005-05-031-4/+3
| | | | | it...
* On Tuesday 19 April 2005 21:10, Tito wrote and today added:Rob Landley2005-05-011-0/+1
| | | | | | | | | | | | | > Hi, > this is a first attempt of size optimization for zcip taking into account all > the hints given so far on the list. > I've applied just the more obvious busyboxifications so maybe it could be > optimized more. BTW: I've ripped out a lot of debug code and changed c++ // comments to /* */ as both were rather confusing for a newbie like me. ;-) Sorry to the author for that. I know that this makes mantaining the code easier, but I'm simple minded....
* David Brownell submitted a new applet, zcip, based on RFC 3927. This isRob Landley2005-04-302-0/+13
| | | | | | version 0418b. It compiled.
* New help text for Matthew S. Wood's "ln" update adding -b and -d.Rob Landley2005-04-291-1/+3
|
* fix whitespace usage, fix un-escaped quotes in a bunch of examples, and ↵Mike Frysinger2005-04-231-191/+189
| | | | standardize a bunch of trivial/full usage statements (no trailing newline in either, and when listing options, dont append a . each time)
* fix inconsistent whitespaceMike Frysinger2005-04-231-146/+146
|
* remove extra whitespaceMike Frysinger2005-04-231-2/+2
|
* stat implementation based upon coreutilsMike Frysinger2005-04-232-0/+60
|
* import lsattr and chattr from e2fsprogsMike Frysinger2005-04-222-0/+41
|
* printenv / sum definesMike Frysinger2005-04-212-0/+20
|
* fix whitespaceMike Frysinger2005-04-191-23/+23
|
* import fakeidentd module started by Thomas LundquistMike Frysinger2005-04-172-0/+10
|
* Add bb_msg_read_errorEric Andersen2005-04-161-0/+1
|
* In Bug 207, bernhardf writes:Mike Frysinger2005-04-161-5/+5
| | | | proper escape strings in usage.h
* fake out support for POSIX -H and -L options since busybox cp dereferences ↵Mike Frysinger2005-04-141-0/+1
| | | | everything by default
* add aliases == and [[ for = and [ to support more bash scriptsMike Frysinger2005-04-141-0/+1
|
* newlib fixe from Shaun JackmanMike Frysinger2005-03-041-4/+4
|
* Add 'nice' and replace 'renice' with a new implementation.Manuel Novoa III2005-02-132-4/+17
|
* Sort rewrite to be SUSv3 compliant. New config option, updated help, andRob Landley2005-01-242-13/+38
| | | | a couple of infrastructure bits.
* cp: make -P a synonym for -dMike Frysinger2005-01-071-1/+1
|
* - CONFIG_FEATURE_READLINK_FOLLOW readlink -f patch from Colin Watson ↵Ned Ludd2004-12-081-2/+10
| | | | <cjwatson@debian.org> on busybox mailing list 08/11/04
* Tito writes,Glenn L McGrath2004-09-151-0/+1
| | | | | "This patch fixes all the bugs in id previously spotted by vodz and me. The binary size increased a bit, but now it should work as expected."