summaryrefslogtreecommitdiff
path: root/runit (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* svlogd: fix 'SEGV on uninitialized data' and make it honor TERMDenis Vlasenko2007-05-061-4/+6
|
* style fixes, no code changesDenis Vlasenko2007-04-162-6/+12
|
* style fixes. No code changes.Denis Vlasenko2007-04-101-1/+2
|
* tcpsvd: new appletDenis Vlasenko2007-04-015-101/+11
| | | | | | | | | | 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
* Attempt to get more applets compile for NOMMU.Denis Vlasenko2007-03-261-11/+6
| | | | | | | 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).
* add NOMMU fixme's; move move_fd from runit_lib to libbb; nuke fd_copyDenis Vlasenko2007-03-255-47/+9
|
* add missing copyright statements and doc for svDenis Vlasenko2007-03-123-0/+204
|
* sv: make code trivially smallerDenis Vlasenko2007-03-121-4/+4
|
* kill superfluous returns at the end of void functionsDenis Vlasenko2007-03-111-1/+0
|
* runsv: random code savings, ~300 bytesDenis Vlasenko2007-03-091-72/+63
|
* runsv: add missing {}Denis Vlasenko2007-02-181-1/+2
|
* EXEC_PREFER_APPLETS support by Gabriel L. Somlo <somlo@cmu.edu>Denis Vlasenko2007-02-062-6/+6
|
* suppress warnings about easch <applet>_main() havingDenis Vlasenko2007-02-035-0/+5
| | | | no preceding prototype
* sigset_t blocked_sigset is too big for static (128 bytes)Denis Vlasenko2007-02-031-9/+11
|
* svlogd: fix performance problems: excessive write,Denis Vlasenko2007-02-031-26/+46
| | | | | gettimeofday calls. rt_sigprocmask were dealt with in previous commit
* svlogd: do not set O_NONBLOCK on stdin permanently - that canDenis Vlasenko2007-02-031-28/+44
| | | | affect other processes!
* sv: fix incorrect option parsing and reduce sizeDenis Vlasenko2007-02-021-120/+176
|
* preparatory patch for -Wwrite-strings #6Denis Vlasenko2007-01-291-30/+42
|
* preparatory patch for -Wwrite-strings #4Denis Vlasenko2007-01-293-24/+24
|
* correct bad EnglishDenis Vlasenko2007-01-281-1/+1
|
* svlogd: batch writes if !timestampDenis Vlasenko2007-01-271-19/+29
|
* svlogd: remove unused buffering, stop doing tons of memcpyDenis Vlasenko2007-01-272-34/+58
|
* runit/* cleanup part 3 (just deleting unused code)Denis Vlasenko2007-01-272-788/+4
|
* runit/* cleanup part 2Denis Vlasenko2007-01-274-33/+43
|
* runit cleanup part 1Denis Vlasenko2007-01-276-190/+271
|
* random small size optimizationsDenis Vlasenko2007-01-121-7/+2
|
* Trailing whitespace removal over entire treeDenis Vlasenko2007-01-116-19/+19
|
* done a dozen of randconfig test. guess what? ALL failed...Denis Vlasenko2006-12-301-0/+5
| | | | these are resulting fixes
* bb_xget[pw/gr]nam were horribly misnamed - fixed.Denis Vlasenko2006-12-281-2/+2
| | | | | | | uidgid_get -> get_uidgid, add additional param (numeric_ok). Make chown use it. chown: fix "chown user: ...." install: fix incorrect use of bb_xget[pw/gr]nam
* style fixesDenis Vlasenko2006-12-264-6/+6
| | | | last xcalloc replaced by xzalloc
* missing piece of prev commit: ndelay_offDenis Vlasenko2006-12-241-6/+0
|
* small fixes:Denis Vlasenko2006-11-261-3/+3
| | | | | | fix xstrdup to not grossly overallocate memory use xopen instean of xopen3 in several places etc.
* tar: sanitize option handlingDenis Vlasenko2006-11-241-1/+1
|
* telnetd: we were having telnetd with is ONLY inetd or ONLY standalone.Denis Vlasenko2006-11-221-20/+0
| | | | | What if I need to have both?? This patch introduces CONFIG_FEATURE_TELNETD_STANDALONE: y - both, n - only inetd.
* svlogd: log full lines to stderr too, and also stop using stdio for thatDenis Vlasenko2006-11-191-6/+4
|
* forgot about avn add... :(Denis Vlasenko2006-11-173-0/+1279
|
* runit: add runsv, runsvdir and sv. Oh yes.Denis Vlasenko2006-11-174-17/+45
| | | | It even seems to work. +11K. :(
* svlogd: new applet. +9k. Still too big, but it was 12k yesterday.Denis Vlasenko2006-11-166-17/+2321
|
* chpst: add overlooked copyright statementDenis Vlasenko2006-10-201-0/+29
|
* fixes from Vladimir Dronnikov <dronnikov@gmail.ru>Denis Vlasenko2006-10-101-2/+2
|
* attempt to regularize atoi mess.Denis Vlasenko2006-10-081-21/+21
|
* dnsd fix; option_mask32 added. dnsd needs more love.Denis Vlasenko2006-10-061-37/+36
|
* chpst: fix vda's silly mistakesDenis Vlasenko2006-10-061-1/+2
| | | | Patch by Vladimir Dronnikov <dronnikov@gmail.ru>
* httpd: add -u user[:grp] supportDenis Vlasenko2006-10-054-108/+17
|
* build system overhaulDenis Vlasenko2006-10-054-70/+13
|
* bb_applet_name -> applet_nameDenis Vlasenko2006-10-031-4/+4
|
* getopt_ulflags -> getopt32.Denis Vlasenko2006-10-031-2/+2
| | | | | | | | 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.
* Yeah, yeah... I forgot about 'svn add'... fixing thatDenis Vlasenko2006-10-036-0/+523