aboutsummaryrefslogtreecommitdiff
path: root/debianutils (follow)
Commit message (Collapse)AuthorAgeFilesLines
* - CONFIG_FEATURE_READLINK_FOLLOW readlink -f patch from Colin Watson ↵solar2004-12-082-2/+29
| | | | | | <cjwatson@debian.org> on busybox mailing list 08/11/04 git-svn-id: svn://busybox.net/trunk/busybox@9542 69ca8d6d-28ef-0310-b511-8ec308f3f277
* egor duda writes:andersen2004-10-082-7/+12
| | | | | | | | | | | | | | | | | | | | | | | | | | | Hi! I've created a patch to busybox' build system to allow building it in separate tree in a manner similar to kbuild from kernel version 2.6. That is, one runs command like 'make O=/build/some/where/for/specific/target/and/options' and everything is built in this exact directory, provided that it exists. I understand that applyingc such invasive changes during 'release candidates' stage of development is at best unwise. So, i'm currently asking for comments about this patch, starting from whether such thing is needed at all to whether it coded properly. 'make check' should work now, and one make creates Makefile in build directory, so one can run 'make' in build directory after that. One possible caveat is that if we build in some directory other than source one, the source directory should be 'distclean'ed first. egor git-svn-id: svn://busybox.net/trunk/busybox@9320 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Fix several problems with start-stop-daemon, add -m supportandersen2004-04-131-27/+45
| | | | git-svn-id: svn://busybox.net/trunk/busybox@8751 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Remove trailing whitespace. Update copyright to include 2004.andersen2004-03-156-15/+15
| | | | git-svn-id: svn://busybox.net/trunk/busybox@8630 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Update docs for start_stop_daemon to match reality. Updateandersen2004-03-131-29/+53
| | | | | | | the reality a bit to better match debian behavior. git-svn-id: svn://busybox.net/trunk/busybox@8627 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Fix a compile error identiefied by Steven Scholz.bug12004-03-031-1/+1
| | | | | | | Declare variables first for compatability. git-svn-id: svn://busybox.net/trunk/busybox@8570 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Check file has execute permission for the current user, minor formatingbug12004-03-011-24/+20
| | | | git-svn-id: svn://busybox.net/trunk/busybox@8569 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Correct check for only one of K or S optionsbug12004-01-231-3/+2
| | | | git-svn-id: svn://busybox.net/trunk/busybox@8338 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Check one and only one of start, stop are given.bug12004-01-221-17/+17
| | | | | | | | Remove some global variables. #define some getopt values. git-svn-id: svn://busybox.net/trunk/busybox@8333 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Fix warningbug12003-11-211-0/+1
| | | | git-svn-id: svn://busybox.net/trunk/busybox@7982 69ca8d6d-28ef-0310-b511-8ec308f3f277
* NEW APPLET: pipe_progress, used by debian installerbug12003-11-143-0/+61
| | | | git-svn-id: svn://busybox.net/trunk/busybox@7912 69ca8d6d-28ef-0310-b511-8ec308f3f277
* fix a bug where `which' doesn't check whether the file passed as an argumentbug12003-10-291-1/+3
| | | | | | | is a regular file, patch by Arthur Othieno git-svn-id: svn://busybox.net/trunk/busybox@7722 69ca8d6d-28ef-0310-b511-8ec308f3f277
* sighandersen2003-10-221-1/+1
| | | | git-svn-id: svn://busybox.net/trunk/busybox@7703 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Tomasz Motylewski reported that the 'which' applet does not findandersen2003-10-221-12/+30
| | | | | | | | | files when the full file PATH is specified. This patch from Arthur Othieno fixes it. git-svn-id: svn://busybox.net/trunk/busybox@7700 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Patch from Eric Spakman to update "run-parts" help text in Config.in.andersen2003-08-061-2/+2
| | | | git-svn-id: svn://busybox.net/trunk/busybox@7176 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Do not require that the signal number be specifiedandersen2003-07-301-2/+4
| | | | git-svn-id: svn://busybox.net/trunk/busybox@7139 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Bruno Randolf writes:andersen2003-07-291-1/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | this patch fixes run_parts when it's called by ifupdown. 1) argv has to be a NULL terminated char* array, not just a string. 2) run_parts now explicitly sets the environment. this environment is populated from the /etc/network/interfaces config file and is needed by the scripts in /etc/network/if-pre-up.d/. when run-parts is called from the command line the environment is taken from the current process. Vladimir Oleynik then wrote: You can simplify this if use: + bb_xasprintf(&buf[0], "/etc/network/if-%s.d", opt); + buf[1] = NULL; + + run_parts(&buf, 2, environ); + free(buf[0]); --w vodz git-svn-id: svn://busybox.net/trunk/busybox@7130 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Move start_stop_daemon to debianutils.andersen2003-07-263-25/+40
| | | | | | | Cleanup run_parts a bit and add long opts git-svn-id: svn://busybox.net/trunk/busybox@7113 69ca8d6d-28ef-0310-b511-8ec308f3f277
* cleanup and add long optionsandersen2003-07-261-59/+41
| | | | git-svn-id: svn://busybox.net/trunk/busybox@7112 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Update a bunch of docs. Run a script to update my email addr.andersen2003-07-143-4/+3
| | | | git-svn-id: svn://busybox.net/trunk/busybox@7061 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Patch from Kent Robotti adding a bunch of needed docs!andersen2003-07-051-6/+8
| | | | | | | -Erik git-svn-id: svn://busybox.net/trunk/busybox@7038 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Add the -d option, its used by old versions of config.guess, change tobug12003-04-261-3/+26
| | | | | | | use getopt. git-svn-id: svn://busybox.net/trunk/busybox@6815 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Major coreutils update.mjn32003-03-195-17/+17
| | | | git-svn-id: svn://busybox.net/trunk/busybox@6751 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Patch by Stewart Brodie to terminate the string array correctlybug12003-01-081-1/+2
| | | | git-svn-id: svn://busybox.net/trunk/busybox@6283 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Kill the now obsolete docs/Configure.help file, and move all existingandersen2002-12-051-1/+10
| | | | | | | | help texts into their respective Config.in file. -Erik git-svn-id: svn://busybox.net/trunk/busybox@6107 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Yet another major rework of the BusyBox config system, using the considerablyandersen2002-12-052-15/+33
| | | | | | | | | | | modified Kbuild system I put into uClibc. With this, there should be no more need to modify Rules.mak since I've moved all the interesting options into the config system. I think I've got everything updated, but you never know, I may have made some mistakes, so watch closely. -Erik git-svn-id: svn://busybox.net/trunk/busybox@6102 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Move awk from textutils to editors. Cleanup run-parts, saves 200 bytes, ↵bug12002-11-111-190/+44
| | | | | | moves the guts of run_parts to libbb to be used by ifupdown. git-svn-id: svn://busybox.net/trunk/busybox@5909 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Move readlink, mktemp, run-parts and which to a new debianutils dir.bug12002-11-117-0/+499
| | | | git-svn-id: svn://busybox.net/trunk/busybox@5908 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Scrub pwd.h and grp.h handling so we don't have to play anyandersen2002-07-031-1/+1
| | | | | | | | silly games. -Erik git-svn-id: svn://busybox.net/trunk/busybox@5011 69ca8d6d-28ef-0310-b511-8ec308f3f277
* plug fd leak noticed by Russ Dillandersen2002-06-051-0/+1
| | | | | | | -Erik git-svn-id: svn://busybox.net/trunk/busybox@4858 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Fix for broken handling off BusyBox's own pwd/grp implementationssandman2002-06-041-1/+1
| | | | | | | [Parts of this patch may overlap with my other two patches] git-svn-id: svn://busybox.net/trunk/busybox@4856 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Patch from Russ Dill <Russ.Dill@asu.edu>. From theandersen2002-01-261-1/+10
| | | | | | | | | | | | | | | | | | | start-stop-daemon man page: -b|--background Typically used with programs that don't detach on their own. This option will force start-stop-daemon to fork before starting the process, and force it into the background. WARNING: start-stop-daemon cannot check the exit status if the process fails to execute for any reason. This is a last resort, and is only meant for programs that either make no sense forking on their own, or where it's not feasible to add the code for it to do this itself. This is usefull for applets like watchdog git-svn-id: svn://busybox.net/trunk/busybox@4112 69ca8d6d-28ef-0310-b511-8ec308f3f277
* patch from vodz:andersen2001-10-311-36/+26
| | | | | | | | I reduce 148 bytes from start_stop_daemon.c code. Also reduced memory allocated. git-svn-id: svn://busybox.net/trunk/busybox@3606 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Fixup the location of pwd.h and grp.handersen2001-10-241-1/+1
| | | | git-svn-id: svn://busybox.net/trunk/busybox@3572 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Commit the start-stop-daemon applet. This was contributed by Davidandersen2001-10-181-0/+271
Kimdon <dwhedon@gordian.com> on october 7th -- the day I was fired from Lineo. So it seems I totally forgot about this patch until now. Sorry about that David! git-svn-id: svn://busybox.net/trunk/busybox@3546 69ca8d6d-28ef-0310-b511-8ec308f3f277