aboutsummaryrefslogtreecommitdiff
path: root/include (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* - sync traceroute with Slackware-10.1"Vladimir N. Oleynik"2005-09-061-4/+9
| | | | | (support -FIl -g gw -i if -z pt now). - libbb/getopt_ulflags.c support bb_opt_complementally="x-x" as trigger now
* 1) bb_opt_complementaly -> bb_opt_complementally"Vladimir N. Oleynik"2005-09-051-1/+1
| | | | | 2) better support long options 3) new flag '!' for bb_opt_complementally: produce bb_show_usage() if BB_GETOPT_ERROR internally
* Patch -i support from Berhnard Fischer.Rob Landley2005-09-011-3/+5
|
* Bernhard Fischer suggested that get_terminal_width_height() should returnRob Landley2005-09-011-1/+1
| | | | | | the result of the ioctl so callers can tell if we have a tty. (0 means we have a tty, nonzero means the ioctl couldn't find size info and we fake 80x24. Really we should fake 80x25, but oh well...)
* Bernhard Fischer provided a mountpoint(1) applet. This is apparently somethingRob Landley2005-08-202-0/+17
| | | | sysvinit provides, and which is used by the debian init scripts.
* Tito (among others) writes: previous patch was wrong, please stop screwing ↵Mike Frysinger2005-08-171-2/+2
| | | | things up
* Bernhard Fischer writes: fix devfsd usageMike Frysinger2005-08-151-2/+2
|
* Major rewrite of mount, umount, losetup. Untangled lots of code, shrunkRob Landley2005-08-101-7/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | things down a bit, fixed a number of funky corner cases, added support for several new features (things like mount --move, mount --bind, lazy unounts, automatic detection of loop mounts, and so on). Probably broke several other things, but it's fixable. (Bang on it, tell me what doesn't work for you...) Note: you no longer need to say "-o loop". It does that for you when necessary. Still need to add "user mount" support, which involves making mount suid. Not too hard to do under the new infrastructure, just haven't done it yet... The previous code had the following notes, that belong in the version control comments: - * 3/21/1999 Charles P. Wright <cpwright@cpwright.com> - * searches through fstab when -a is passed - * will try mounting stuff with all fses when passed -t auto - * - * 1999-04-17 Dave Cinege...Rewrote -t auto. Fixed ro mtab. - * - * 1999-10-07 Erik Andersen <andersen@codepoet.org>. - * Rewrite of a lot of code. Removed mtab usage (I plan on - * putting it back as a compile-time option some time), - * major adjustments to option parsing, and some serious - * dieting all around. - * - * 1999-11-06 mtab support is back - andersee - * - * 2000-01-12 Ben Collins <bcollins@debian.org>, Borrowed utils-linux's - * mount to add loop support. - * - * 2000-04-30 Dave Cinege <dcinege@psychosis.com> - * Rewrote fstab while loop and lower mount section. Can now do - * single mounts from fstab. Can override fstab options for single - * mount. Common mount_one call for single mounts and 'all'. Fixed - * mtab updating and stale entries. Removed 'remount' default. - *
* implemented a builtin echo command in ash. moved the guts of thePaul Fox2005-08-091-0/+2
| | | | | | echo applet into libbb, and now call bb_echo() from both echo.c and ash.c
* 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
|