aboutsummaryrefslogtreecommitdiff
path: root/debianutils (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* - add option -tBernhard Reutner-Fischer2006-10-101-6/+16
| | | | mkinitrd and mkinitramfs both require -t.
* start_stop_daemon: add -N <nice> compatDenis Vlasenko2006-10-081-30/+43
| | | | | [re]nice: add support for -nNNN w/o spaces, -NNN (nice only), simplified code
* attempt to regularize atoi mess.Denis Vlasenko2006-10-082-23/+23
|
* which: -84 bytesDenis Vlasenko2006-10-051-46/+23
|
* build system overhaulDenis Vlasenko2006-10-054-70/+27
|
* getopt_ulflags -> getopt32.Denis Vlasenko2006-10-033-7/+7
| | | | | | | | It is impossible to formulate sane ABI based on size of ulong because it can be 32-bit or 64-bit. Basically it means that you cannot portably use more that 32 option chars in one call anyway... Make it explicit.
* whitespace cleanupDenis Vlasenko2006-09-171-1/+1
|
* - fix copy'n paste errors that got introduced when switching to the shorter ↵Bernhard Reutner-Fischer2006-09-133-3/+3
| | | | | | boilerplate. No object code changes.
* Patch from Natanael Copa to make start-stop-daemon just use readlink andRob Landley2006-09-041-8/+9
| | | | strcmp to check if a program is already running.
* Bugfix from Jason Schoon: send the right signal with -s.Rob Landley2006-08-281-1/+2
|
* Remove bb_ prefixes from xfuncs.c (and a few other places), consolidateRob Landley2006-08-031-20/+11
| | | | | | | | | | things like xasprintf() into xfuncs.c, remove xprint_file_by_name() (it only had one user), clean up lots of #includes... General cleanup pass. What I've been doing for the last couple days. And it conflicts! I've removed httpd.c from this checkin due to somebody else touching that file. It builds for me. I have to catch a bus. (Now you know why I'm looking forward to Mercurial.)
* Remove unnecessary consts.1_2_0Rob Landley2006-07-191-1/+1
|
* Rearrange order of type qualifiers."Robert P. J. Day"2006-07-181-1/+1
|
* Patch from Thaddeus Ternes, adding chuid to start-stop-daemon.Rob Landley2006-07-171-2/+9
|
* - minor shrinkageBernhard Reutner-Fischer2006-06-141-8/+13
|
* - fix stupid typo from last checkinBernhard Reutner-Fischer2006-06-121-1/+1
|
* - add fancy mode to start-stop-daemon to support --oknodo and --verboseBernhard Reutner-Fischer2006-06-112-47/+68
|
* - move #include busybox.h to the very top so we pull in the configBernhard Reutner-Fischer2006-06-026-43/+16
| | | | and eventual platform specific includes in early.
* - add central knob to turn off getopt_long everywhere. EXPERIMENTAL!Bernhard Reutner-Fischer2006-05-262-1/+18
| | | | | | Adds "Enable getopt long" under "General options", default y. Send patches to fix getopt_ulflags and run_parts.c if you turn this off.. See http://busybox.net/lists/busybox/2006-May/021828.html for a start to run-parts
* - remove emacs layout block as suggested by Robert P.J. DayBernhard Reutner-Fischer2006-05-191-8/+0
| | | | - use shorter boilerplate while at it
* The gnu extension to have realpath() malloc its buffer when handed a NULLRob Landley2006-05-171-2/+2
| | | | isn't implemented in uClibc, so we can't use it.
* pull Rules.mak from top_srcdir as pointed out by Robert P. J. Day on the ↵Mike Frysinger2006-05-131-1/+1
| | | | mailing list
* Remove bb_strlen() in favor of -fno-builtin-strlen. Saves as many bytesRob Landley2006-05-071-2/+2
| | | | | as the old optimization did (actually does slightly better under gcc 4.0), and simplifies the code.
* Patch from Robert P Day: let menuconfig indent stuff for us, we don't haveRob Landley2006-04-131-1/+1
| | | | to do it in Config.in.
* - patch from Denis Vlasenko to add and use bb_xdaemon()Bernhard Reutner-Fischer2006-04-121-2/+1
|
* - add and use bb_opendir(), bb_xopendir().Bernhard Reutner-Fischer2006-04-121-3/+1
| | | | | | | | text data bss dec hex filename 889445 9392 1035784 1934621 1d851d busybox.gcc-4.2.orig 889297 9392 1035784 1934473 1d8489 busybox.gcc-4.2 889009 9820 1037860 1936689 1d8d31 busybox.gcc-4.1.orig 888817 9820 1037860 1936497 1d8c71 busybox.gcc-4.1
* - revert back to r14406Bernhard Reutner-Fischer2006-03-131-7/+13
|
* Patch from Denis Vlasenko to add xstat() and use it.Rob Landley2006-03-131-2/+2
|
* - backout using features which are not available with the previous stableBernhard Reutner-Fischer2006-03-091-2/+6
| | | | version of make (3.71.1).
* Robert P. Day removed 8 gazillion occurrences of "extern" on functionRob Landley2006-03-063-3/+3
| | | | definitions. (That should only be on prototypes.)
* - use absolute path for top_builddir and top_srcdir.Bernhard Reutner-Fischer2006-03-021-0/+4
| | | | Fixes make trying to include the very same file in an endless loop.
* - fixes parallel builds (make -j)Bernhard Reutner-Fischer2006-03-011-12/+2
| | | | - use less resources for the buildsystem itself
* Don't build directory libraries unless we're building an applet that needs it.Rob Landley2006-02-211-0/+2
| | | | Cherry-picked from Devin Bayer's big MacOS X patch.
* make the build system puuuuuuuuuuurtyMike Frysinger2006-02-021-3/+2
|
* just whitespaceTim Riker2006-01-253-6/+6
|
* - shared libbusybox.Bernhard Reutner-Fischer2006-01-151-0/+4
| | | | | - IMA compilation option (aka IPO, IPA,..) Please holler if i broke something..
* A cleanup patch I've had lying around in my tree for a while, I think itRob Landley2005-12-021-35/+10
| | | | was from Bernhard Fischer?
* - new bb_opt_complementally syntax, use [-:?] only - 'free' chars"Vladimir N. Oleynik"2005-10-141-2/+2
| | | | | - new bb_getopt_ulflags features: check max and min args, convert first argv to options special for ar and tar applets - use bb_default_error_retval for env applet
* - use complementally '!' to '?' - 'ask' is best 'free' char for this."Vladimir N. Oleynik"2005-10-111-16/+12
| | | | | - more long opt compatibility, can set flag for long opt struct now - more logic: check opt-depend requires and global requires, special for 'id' and 'start-stop-daemon' applets.
* change strange depend to libbb.h, but require busybox.h"Vladimir N. Oleynik"2005-10-061-1/+1
|
* use the shorter license headerMike Frysinger2005-09-241-15/+2
|
* use brief license lineMike Frysinger2005-09-241-15/+2
|
* - rename libbb's password helpers as suggested in libbb.hBernhard Reutner-Fischer2005-09-201-1/+1
| | | | | | | | my_getpwnam -> bb_xgetpwnam /* dies on error */ my_getgrnam -> bb_xgetgrnam /* dies on error */ my_getgrgid -> bb_getgrgid my_getpwuid -> bb_getpwuid my_getug -> bb_getug
* Tito pointed out that if readlink doesn't have -f, there's no need to callRob Landley2005-09-171-6/+6
| | | | the option parsing code at all.
* committing bug #7:Paul Fox2005-09-141-29/+42
| | | | | | 0000007: which and wd-located files which doesn't search $PATH when there's a file in the WD with the same name of the 'filename' parameter...
* Clean up memory allocation.Rob Landley2005-09-111-32/+8
|
* Cleanup patch by Bernhard Fischer, removing unnecessary includes ofRob Landley2005-09-112-6/+3
| | | | getopt.h, whitespace changes, typos, etc.
* 1) bb_opt_complementaly -> bb_opt_complementally"Vladimir N. Oleynik"2005-09-051-3/+3
| | | | | 2) better support long options 3) new flag '!' for bb_opt_complementally: produce bb_show_usage() if BB_GETOPT_ERROR internally
* commiting fix from:Paul Fox2005-07-291-0/+3
| | | | 0000353: [PATCH] start-stop-daemon -q is not quiet
* use toplevel ARFLAGS and update default ARFLAGS to be quietMike Frysinger2005-07-271-1/+1
|