aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Rearrange order of type qualifiers.rpjday2006-07-181-1/+1
| | | | git-svn-id: svn://busybox.net/trunk/busybox@15716 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Patch from Thaddeus Ternes, adding chuid to start-stop-daemon.landley2006-07-172-3/+11
| | | | git-svn-id: svn://busybox.net/trunk/busybox@15708 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Bugfix from Tito to make sure /etc/group gets updated.landley2006-07-161-3/+3
| | | | git-svn-id: svn://busybox.net/trunk/busybox@15705 69ca8d6d-28ef-0310-b511-8ec308f3f277
* New mkswap. Small and simple. Might even work. :)landley2006-07-161-380/+29
| | | | git-svn-id: svn://busybox.net/trunk/busybox@15704 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Cleaup read() and write() variants, plus a couple of new functions likelandley2006-07-1639-224/+204
| | | | | | | xlseek and fdlength() for the new mkswap. git-svn-id: svn://busybox.net/trunk/busybox@15703 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Convert setuid/setgid users to xsetuid/xsetgid.landley2006-07-166-16/+12
| | | | git-svn-id: svn://busybox.net/trunk/busybox@15702 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Add -Werror.landley2006-07-161-0/+1
| | | | git-svn-id: svn://busybox.net/trunk/busybox@15701 69ca8d6d-28ef-0310-b511-8ec308f3f277
* We need xsetuid() and xsetgid() because per-user process resource limits canlandley2006-07-152-0/+14
| | | | | | | | prevent a process from switching to a user that has too many processes, and when that happens WE'RE STILL ROOT. See http://lwn.net/Articles/190331/ git-svn-id: svn://busybox.net/trunk/busybox@15700 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Comment tweak from tito.landley2006-07-151-1/+1
| | | | git-svn-id: svn://busybox.net/trunk/busybox@15699 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Tito writes: If the gecos field of an user is empty, obscure reports a false ↵vapier2006-07-151-1/+1
| | | | | | "similar to gecos" error. git-svn-id: svn://busybox.net/trunk/busybox@15698 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Patch from Suresh Rajashekara moving comments and #includes and such around.landley2006-07-141-16/+17
| | | | git-svn-id: svn://busybox.net/trunk/busybox@15695 69ca8d6d-28ef-0310-b511-8ec308f3f277
* mention osuoslandersen2006-07-131-0/+4
| | | | git-svn-id: svn://busybox.net/trunk/busybox@15691 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Add the two busybox developers' home pages that have busybox related stufflandley2006-07-131-5/+11
| | | | | | | on them. git-svn-id: svn://busybox.net/trunk/busybox@15690 69ca8d6d-28ef-0310-b511-8ec308f3f277
* More minor tweaks.landley2006-07-124-14/+6
| | | | git-svn-id: svn://busybox.net/trunk/busybox@15689 69ca8d6d-28ef-0310-b511-8ec308f3f277
* decuddle () from for/if/whilevapier2006-07-121-14/+14
| | | | git-svn-id: svn://busybox.net/trunk/busybox@15688 69ca8d6d-28ef-0310-b511-8ec308f3f277
* A couple things that got tangled up in my tree, easier to check in both thanlandley2006-07-1210-339/+102
| | | | | | | | | | | | | | | | | untangle them: Rewrite u_signal_names() into get_signum() and get_signame(), plus trim the signal list to that required by posix (they can specify the numbers for the rest if they really need them). (This is preparatory cleanup for adding a timeout applet like Roberto Foglietta wants.) Export the itoa (added due to Denis Vlasenko, although it's not quite his preferred implementation) from xfuncs.c so it's actually used, and remove several other redundant implementations of itoa and utoa() in the tree. git-svn-id: svn://busybox.net/trunk/busybox@15687 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Add one-line GPL boilerplate to numerous (but not all yet) source files.rpjday2006-07-1265-722/+112
| | | | git-svn-id: svn://busybox.net/trunk/busybox@15686 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Patch from Tito to remove pwd_to_spwd (which we don't actually need), withlandley2006-07-114-95/+7
| | | | | | | some #ifdef removal from me. git-svn-id: svn://busybox.net/trunk/busybox@15685 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Add one-line GPL boilerplate to these source files.rpjday2006-07-114-53/+6
| | | | git-svn-id: svn://busybox.net/trunk/busybox@15684 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Denis Vlasenko spotted the lack of bounds checking in my first attempt atlandley2006-07-111-11/+14
| | | | | | | itoa/utoa. git-svn-id: svn://busybox.net/trunk/busybox@15683 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Upgrade netcat a lot. Make -e able to take the rest of the command line aslandley2006-07-104-116/+145
| | | | | | | | | | what to exec. Add -f mode and a brief explanation of how to use it to replace minicom. Add -l -l mode so you can turn any command into a server. And group all of netcat's command line options under two CONFIG entries, so if you disable both it doesn't use getopt at all. git-svn-id: svn://busybox.net/trunk/busybox@15675 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Replace current verbose GPL stuff in libbb/*.c with one-line GPL boilerplate.rpjday2006-07-1036-404/+36
| | | | git-svn-id: svn://busybox.net/trunk/busybox@15674 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Add itoa and utoa to see what Denis Vlasenko thinks.landley2006-07-101-1/+50
| | | | git-svn-id: svn://busybox.net/trunk/busybox@15673 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Patch from Tito to make syslog configurable and remove #ifdefs. Furtherlandley2006-07-102-111/+50
| | | | | | | cleanups by me. git-svn-id: svn://busybox.net/trunk/busybox@15672 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Patch from Shaun Jackman to set environment variable RUNLEVEL equal tolandley2006-07-091-19/+3
| | | | | | | | | | init's argv[1], so if you append "single" to your kernel command line and the kernel doesn't parse it, RUNLELEL=single. Plus a few unrelated header cleanups while I was in the area... git-svn-id: svn://busybox.net/trunk/busybox@15671 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Bugfix from Shaun Jackman (check that argv[optind] isn't null beforelandley2006-07-091-19/+16
| | | | | | | dereferencing it) plus a bunch of tweaks from me. git-svn-id: svn://busybox.net/trunk/busybox@15670 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Point at fixes.patch for 1.2.1.landley2006-07-081-0/+2
| | | | git-svn-id: svn://busybox.net/trunk/busybox@15663 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Fix tar so it can extract git-generated tarballs, based on a suggestionlandley2006-07-061-5/+4
| | | | | | | from Erik Frederiksen. git-svn-id: svn://busybox.net/trunk/busybox@15660 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Attempt to address Shaun Jackman's problem adding "busybox: busybox.bflt" tolandley2006-07-061-0/+6
| | | | | | | .config.mak. git-svn-id: svn://busybox.net/trunk/busybox@15659 69ca8d6d-28ef-0310-b511-8ec308f3f277
* fix dependencies so that compressed usage gets rebuilt ifpgf2006-07-061-4/+8
| | | | | | | | a) include/usage.h is changed, and b) after "make clean". git-svn-id: svn://busybox.net/trunk/busybox@15658 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Minor build tweaks that save 1100 bytes building busybox on Ubuntu 6.06.landley2006-07-062-0/+16
| | | | git-svn-id: svn://busybox.net/trunk/busybox@15657 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Fix three embarassing thinkos in the new dmesg.c:landley2006-07-061-3/+3
| | | | | | | | | 1) the c argument shouldn't have had a : after that, dunno how that got there. 2) the xgetlarg for level was using size 3) because xgetlarg's error message _SUCKS_ (it does a show_usage() rather than giving any specific info about the range that was violated) I dropped the range down to 2 bytes. (Which works fine, I dunno why we were nit-picking about that...) git-svn-id: svn://busybox.net/trunk/busybox@15656 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Bug fix from Vladimir Oleynic via Paul Fox for:landley2006-07-061-0/+1
| | | | | | | | | | echo "+bond0" > /sys/class/net/bonding_masters while true; do echo hello done git-svn-id: svn://busybox.net/trunk/busybox@15653 69ca8d6d-28ef-0310-b511-8ec308f3f277
* fixes from ldoolitt@recycle.lbl.gov to use proper tab escaping and fix a typovapier2006-07-051-8/+8
| | | | git-svn-id: svn://busybox.net/trunk/busybox@15648 69ca8d6d-28ef-0310-b511-8ec308f3f277
* This file doesn't appear to be used anywhere.rpjday2006-07-051-17/+0
| | | | git-svn-id: svn://busybox.net/trunk/busybox@15634 69ca8d6d-28ef-0310-b511-8ec308f3f277
* - Pull r15593:aldot2006-07-043-34/+12
| | | | | | | Rename to CROSS_COMPILE and move its configuration to .config.mak. (Shaun Jackman) git-svn-id: svn://busybox.net/trunk/busybox@15594 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Delete unused version.c file and corresponding function prototypesrpjday2006-07-032-54/+0
| | | | | | | | from blkid.h. If this file needs to be resurrected, it can be based on ext2fs/version.c. git-svn-id: svn://busybox.net/trunk/busybox@15587 69ca8d6d-28ef-0310-b511-8ec308f3f277
* remove duplicate CONFIG_TASKSET optionvapier2006-07-031-7/+1
| | | | git-svn-id: svn://busybox.net/trunk/busybox@15585 69ca8d6d-28ef-0310-b511-8ec308f3f277
* make the -0 xargs option a little more clearvapier2006-07-031-1/+1
| | | | git-svn-id: svn://busybox.net/trunk/busybox@15584 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Remove the silly redundancy from that header file include.rpjday2006-07-031-1/+1
| | | | git-svn-id: svn://busybox.net/trunk/busybox@15583 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Correct the comment to match the code.rpjday2006-07-021-1/+1
| | | | git-svn-id: svn://busybox.net/trunk/busybox@15582 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Standardize on the vi editing directives being on the first line.rpjday2006-07-02284-19/+285
| | | | git-svn-id: svn://busybox.net/trunk/busybox@15581 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Allow a user-configurable minimum password length.rpjday2006-07-022-7/+9
| | | | git-svn-id: svn://busybox.net/trunk/busybox@15580 69ca8d6d-28ef-0310-b511-8ec308f3f277
* - note that get_hz potentially needs cleanup.aldot2006-07-021-0/+2
| | | | git-svn-id: svn://busybox.net/trunk/busybox@15577 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Patch from Shaun Jackman moving the var=value logic to here it can do some good.landley2006-07-011-6/+6
| | | | git-svn-id: svn://busybox.net/trunk/busybox@15575 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Yet more "#if 0" content removed.rpjday2006-07-018-85/+1
| | | | git-svn-id: svn://busybox.net/trunk/busybox@15573 69ca8d6d-28ef-0310-b511-8ec308f3f277
* More removal of "#if 0" content.rpjday2006-07-016-93/+0
| | | | git-svn-id: svn://busybox.net/trunk/busybox@15572 69ca8d6d-28ef-0310-b511-8ec308f3f277
* More removal of "#if 0" content.rpjday2006-07-018-89/+0
| | | | git-svn-id: svn://busybox.net/trunk/busybox@15571 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Remove "#if 0" content.rpjday2006-07-012-32/+0
| | | | git-svn-id: svn://busybox.net/trunk/busybox@15570 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Get rid of all "#if 0" content.rpjday2006-07-014-121/+0
| | | | git-svn-id: svn://busybox.net/trunk/busybox@15569 69ca8d6d-28ef-0310-b511-8ec308f3f277