aboutsummaryrefslogtreecommitdiff
path: root/include (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* [u]mount: extend -t option (Roy Marples <uberlord@gentoo.org>)Denis Vlasenko2007-04-051-0/+2
|
* libbb: add xunlink()Denis Vlasenko2007-04-051-8/+9
| | | | patch: do not try to delete same file twice
* find: improve usage text (Natanael Copa <natanael.copa@gmail.com>)Denis Vlasenko2007-04-051-1/+7
|
* nc: port nc 1.10 to busyboxDenis Vlasenko2007-04-052-0/+41
|
* - clean up addgroup, fix adding users to existing groups and make it ↵Bernhard Reutner-Fischer2007-04-051-2/+2
| | | | optional (Tito)
* - add -s|--spider which only checks if the file exists but does not download ↵Bernhard Reutner-Fischer2007-04-051-3/+4
| | | | | | it's content. Closes #1291
* find: un-DESKTOPize (Kai Schwenzfeier <niteblade@gmx.net>)Denis Vlasenko2007-04-041-1/+3
| | | | | find: -group, -depth (Natanael Copa <natanael.copa@gmail.com>) find: make constant array static, declare PARM_xx constants with enum
* Add/improve comment, shorten some usage texts. No code changes.Denis Vlasenko2007-04-041-38/+36
|
* ipsvd: make udpsvd work similar to tcpsvd (multiple parallelDenis Vlasenko2007-04-032-9/+11
| | | | | children for several streams of udp packets tested to work) code size: -509 bytes
* udpsvd: more work on it. works in limited testing.Denis Vlasenko2007-04-032-9/+29
|
* test: comment out unused codeDenis Vlasenko2007-04-021-3/+4
| | | | | udpsvd: fake it compile tcpsvd: more optimal memorizing of IP's for -C
* udpsvd: next part of ipsvd applets (not working yet)Denis Vlasenko2007-04-012-0/+6
|
* Copyright, help text, whitespace cleanupsDenis Vlasenko2007-04-011-2/+20
|
* tcpsvd: new appletDenis Vlasenko2007-04-013-1/+26
| | | | | | | | | | It's a GPL-ed 'clone' of Dan Bernstein's tcpserver. Author: Gerrit Pape <pape@smarden.org> http://smarden.sunsite.dk/ipsvd/ size tcpsvd.o text data bss dec hex filename 2571 4 16 2591 a1f tcpsvd.o
* - fold recurse, depthFirst and dereference params into one param flags.Bernhard Reutner-Fischer2007-03-291-3/+6
| | | | Minor size improvement (-16b for size, -24b according to bloat-o-meter).
* - rewrite run-partsBernhard Reutner-Fischer2007-03-281-2/+17
| | | | | | | | | | | | | | | | | | | text data bss dec hex filename 1029 0 0 1029 405 debianutils/run_parts.o-old 478 0 0 478 1de debianutils/run_parts.o-new-bare 600 0 0 600 258 debianutils/run_parts.o-new-full bare, i.e. without long opts and fancy stuff ./scripts/bloat-o-meter bb_old busybox_unstripped function old new delta act - 215 +215 run_parts_main 216 201 -15 valid_name 50 - -50 runparts_long_options 64 - -64 .rodata 124323 124163 -160 run_parts 513 - -513 ------------------------------------------------------------------------------ (add/remove: 1/3 grow/shrink: 0/2 up/down: 215/-802) Total: -587 bytes
* make pidfile writing configurable.Denis Vlasenko2007-03-271-2/+11
| | | | [ui]toa_to_buf: change API. No users yet.
* zcip: make it work on NOMMU (+ improve NOMMU support machinery)Denis Vlasenko2007-03-261-0/+7
| | | | fsck: fix bad English in a comment
* - add usage for splitBernhard Reutner-Fischer2007-03-261-1/+6
|
* Attempt to get more applets compile for NOMMU.Denis Vlasenko2007-03-261-9/+16
| | | | | | | TODO_config_nommu documents what I managed to compile so far (yay! msh works! cool). inetd, telnetd, httpd still do not compile. TODO Also make fork(), daemon() produce warnings on compile stage (in addition to erros on link stage).
* libbb: rework NOMMU helper API so that it makes more senseDenis Vlasenko2007-03-261-28/+58
| | | | and easier to use. Doesn't compile - need two more commits.
* add NOMMU fixme's; move move_fd from runit_lib to libbb; nuke fd_copyDenis Vlasenko2007-03-251-2/+6
|
* - rough prototype for split(1). TODO: Still needs some love since it's way ↵Bernhard Reutner-Fischer2007-03-252-0/+7
| | | | | | | too big.. text data bss dec hex filename 602 4 0 606 25e coreutils/split.o
* #ifdef out re_execed on MMU machinesDenis Vlasenko2007-03-241-1/+1
|
* SELinux: load_policy appletDenis Vlasenko2007-03-242-0/+5
|
* dnsd: fix several buglets, make smallerDenis Vlasenko2007-03-241-1/+1
|
* NOMMU re-exec trick shuld not depend on existence of "don't daemonize"Denis Vlasenko2007-03-241-3/+2
| | | | | option for every affected applet (and dnsd, for example, don't have one). Thus rework re-exec support to not require it. Code got smaller too.
* cmp: support 3rd and 4th arguments if DESKTOP=y (needed for gcc build)Denis Vlasenko2007-03-211-1/+1
|
* fix accumulated whitespace and indentation damageDenis Vlasenko2007-03-201-2/+2
|
* - be gentle to the intel compiler and make sure we have __u64 which is ↵Bernhard Reutner-Fischer2007-03-191-0/+9
| | | | needed for linux/loop.h
* include <stddef.h> so that ptrdiff_t is again availableDenis Vlasenko2007-03-181-0/+1
|
* random fixes to help textDenis Vlasenko2007-03-171-56/+61
|
* punt useless header as pointed out by src.obsolete.headersMike Frysinger2007-03-171-1/+0
|
* gzip: Improve ptr_to_globals trick, allowing gccDenis Vlasenko2007-03-151-1/+4
| | | | to optimize better. -480 bytes.
* networking/interface.c: was doing really strange caching of fd'sDenis Vlasenko2007-03-151-6/+1
| | | | open for getting ifconfig data - ??! Simplified all that. -200 bytes.
* modify ptr_to_globals trick so that we do not violateDenis Vlasenko2007-03-151-0/+4
| | | | type safety (well, sort of ;))
* arp, networking/interface.c: eliminate staticsDenis Vlasenko2007-03-141-3/+3
| | | | | and unneeded on-stack buffers, disable (comment out) some apparently unused (and buggy) code paths. -700 bytes.
* stop using big static buffer for inode hashDenis Vlasenko2007-03-141-1/+4
|
* - change option -c to -Z to match newer upstream SElinux conventionsBernhard Reutner-Fischer2007-03-141-1/+1
|
* gzip: bbunzip integration fixesDenis Vlasenko2007-03-141-0/+4
|
* introduce and use setfscreatecon_or_dieDenis Vlasenko2007-03-121-0/+1
| | | | | (patch by Yuichi Nakamura <ynakam@hitachisoft.jp>) runcon: *yet another* fix for vda's brainfart :(
* next portion of selinux updates: chcon, runcon. FromDenis Vlasenko2007-03-111-0/+3
| | | | | Yuichi Nakamura <himainu-ynakam@miomio.jp> KaiGai Kohei <busybox@kaigai.gr.jp>
* selinux support by Yuichi Nakamura <ynakam@hitachisoft.jp> (HitachiSoft)Denis Vlasenko2007-03-103-8/+72
|
* - add chrt applet.Bernhard Reutner-Fischer2007-03-092-0/+17
| | | | | | text data bss dec hex filename 769 0 0 769 301 miscutils/chrt.o and could use some further shrinkage
* diff: failed to confirm "static bug" in gcc - reinstating statics.Denis Vlasenko2007-03-091-0/+1
| | | | microscopic code improvements.
* hwclock: support /dev/rtc0 etcDenis Vlasenko2007-03-071-3/+6
|
* fix umount usage messageDenis Vlasenko2007-03-071-1/+2
|
* bunzip2/gunzip/uncompress/unlzma: merge into common code -Denis Vlasenko2007-03-071-1/+1
| | | | fix few corner cases, reduce size by 450 bytes. Update testsuite.
* clean up accumulated whitespace damageDenis Vlasenko2007-03-072-4/+4
|
* ifupdown: code to deconstruct the state_list gracefullyDenis Vlasenko2007-03-061-0/+1
| | | | (patch by Gabriel L. Somlo <somlo@cmu.edu>)