aboutsummaryrefslogtreecommitdiff
path: root/include (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* httpd: add -u user[:grp] supportDenis Vlasenko2006-10-052-5/+12
|
* fixing build system overhaul fallout...Denis Vlasenko2006-10-051-0/+6
|
* build system overhaulDenis Vlasenko2006-10-054-5/+142
|
* bb_applet_name -> applet_nameDenis Vlasenko2006-10-031-1/+1
|
* getopt_ulflags -> getopt32.Denis Vlasenko2006-10-031-4/+4
| | | | | | | | 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.
* rename bb_default_error_retval -> xfunc_error_retvalDenis Vlasenko2006-10-031-1/+1
|
* random style fixesDenis Vlasenko2006-10-031-14/+16
|
* runit/chpst: "change process state" utilityDenis Vlasenko2006-10-033-3/+73
| | | | It's "nice" on steroids - can set uid/gid, mem/cpu limits etc. +3.5k
* eject: -T (implements single button open/close)Denis Vlasenko2006-10-021-2/+3
|
* sed: unbreak multiple -e, -f option handling (my fault)Denis Vlasenko2006-10-011-1/+1
|
* g[un]zip: add support for -v (verbose).Denis Vlasenko2006-10-012-8/+9
| | | | | Add CONFIG_DESKTOP, almost all bloat from this change is hidden under that.
* syslogd: add option to suppress logging of messages lower than level N (-n N)Denis Vlasenko2006-09-301-1/+2
|
* losetup: use /dev/loopN or /dev/loop/N according to CONFIG_FEATURE_DEVFS=n/yDenis Vlasenko2006-09-291-0/+2
|
* grep: add help text; fix styleDenis Vlasenko2006-09-291-1/+2
|
* top: add support for -b, -n <iterations>Denis Vlasenko2006-09-291-6/+4
|
* usage.h: fix compile-time bugs exposed by previous changeDenis Vlasenko2006-09-271-8/+7
|
* usage.h: remove ugly tricks. We have USE_FEATURE_xxx now.Denis Vlasenko2006-09-271-268/+75
| | | | Few bugs are now exposed...
* losetup: with no arguments lists all /dev/loopN. Corrected help text.Denis Vlasenko2006-09-271-2/+3
| | | | (patch by Vladimir Dronnikov <dronnikov@gmail.ru>)
* kill: implement killall5. OpenWRT folks will be happy.Denis Vlasenko2006-09-272-4/+12
| | | | | However their code was unusably different from sysvinit original. Run tested.
* kill: fix bugs (kill -l output was horrible), fix style, constify dataDenis Vlasenko2006-09-271-2/+2
|
* several fixes from openWRT projectDenis Vlasenko2006-09-261-0/+1
|
* wget: add (configurable) large file support. Run tested.Denis Vlasenko2006-09-261-0/+2
|
* "I'll think about it" != "apply it now". It means I need to think about it.Rob Landley2006-09-222-6/+1
|
* - add new applet resize.Bernhard Reutner-Fischer2006-09-222-0/+6
| | | | | | text data bss dec hex filename 185 0 0 185 b9 console-tools/resize.o 255 0 0 255 ff console-tools/resize.o.print
* The Software Freedom Law Center wants us to add a copyright notice to theRob Landley2006-09-201-3/+4
| | | | | | | | | | | | | | | generated binaries, to make copyright enforcement easier. Our liason with them (Bradley Kuhn) suggested the following text: > Copyright (C) YEAR-2006  Erik Andersen, Rob Landley, and others. > Licensed under GPLv2.  See source distribution for full notice. And the busybox help message seems the least offensive place to put it. (At some point in the future, I need to strip 128 bytes from the binary to feel good about this, though. :) Minor header file cleanup while I was there, since libbb.h already #includes most of that stuff...
* - fix documentation for the command-line options of ipcs. Closes #1036Bernhard Reutner-Fischer2006-09-201-4/+4
|
* change char *string = "foo" -> char string[] = "foo"Denis Vlasenko2006-09-191-26/+26
| | | | | | | | | | | | | | | | | | function old new delta xsetenv 45 44 -1 iproute_list_or_flush 1834 1833 -1 ipaddr_modify 1915 1914 -1 ipaddr_list_or_flush 1861 1860 -1 invarg 39 38 -1 do_set 1259 1258 -1 bb_verror_msg 268 267 -1 create_icmp_socket 142 140 -2 create_icmp6_socket 142 140 -2 bb_full_fd_action 324 322 -2 bb_path_mtab_file 10 - -10 .rodata 214796 214720 -76 ------------------------------------------------------------------------------ (add/remove: 0/1 grow/shrink: 0/11 up/down: 0/-99) Total: -99 bytes
* whitespace cleanupDenis Vlasenko2006-09-173-6/+6
|
* - Steven Scholz pointed out that ssd's make-pid doesn't take an argument.Bernhard Reutner-Fischer2006-09-151-1/+1
|
* Unbreak allbareconfig.Rob Landley2006-09-151-15/+3
| | | | | | We've had -Werror in the tree for quite a while, so adding #warning somewhat counterproductve way to make comments on the code that belong on the mailing list anyway.
* mount: move code from nfsmount.c into mount.cDenis Vlasenko2006-09-141-3/+0
|
* Revert duplicate patch.Rob Landley2006-09-121-8/+0
| | | | | | | | | | | | I don't know why patch decided to apply this even though it was already in the tree. I thought the other hunks failed because they were totally unrelated leakage from Bernhard's tree (which they are; was the a reason for bundling them in with this fix? Do they have something to do with the GCC 2.95 fix? I suspect they prevent me from backporting this patch to 1.2.2 because the header consolidation into libbb.h hadn't been done yet, and no I'm not fixing it up: if that's the case then this patch won't be in 1.2.2 due to extraneous changes bundled with it that prevent a clean backport without rolling a new patch).
* Remove pointless "const". Bloatcheck says 0 bytes difference.Rob Landley2006-09-121-1/+1
|
* Fix from Bernhard for somebody trying to limp along with gcc 2.95.4.Rob Landley2006-09-121-0/+8
|
* - small trivia to be gentle to gcc-2.95.x which had no va_copy but only ↵Bernhard Reutner-Fischer2006-09-121-0/+8
| | | | __va_copy.
* nfsmount: sanitize it. It had a rather peculiar idea of implementing "bg"Denis Vlasenko2006-09-111-2/+2
| | | | | | | | | option - it was going to return a special flag back to caller and expecting caller to call it again with special parameter! Also caller was charged with calling mount() syscall... mount: mtab support was non-functional. Enabling it revealed serious bug which is not fixed yet.
* - merge xstat.c into xfuncs.cBernhard Reutner-Fischer2006-09-111-1/+1
|
* Error reporting fix for sulogin, plus remove help entries for options we neverRob Landley2006-09-111-3/+7
| | | | | implemented. (Plus a bit more of bbsh leaking in from my tree, but it shouldn't hurt anything and I'm lazy...)
* login: style fixesDenis Vlasenko2006-09-081-3/+3
|
* getty, sulogin: convert to using bb_msg for syslog outputDenis Vlasenko2006-09-071-0/+2
|
* Implement optional syslog logging using ordinaryDenis Vlasenko2006-09-062-2/+13
| | | | | | bb_xx_msg calls, and convert networking/* to it. The rest of bbox will be converted gradually.
* uuencode: common implementation for wget and uuencode (closing bug 694)Denis Vlasenko2006-09-031-0/+4
|
* tar: revert older fix (non-portable), added new one.Denis Vlasenko2006-09-031-0/+1
| | | | | testsuite tar-extracts-all-subdirs now passes.
* ping: implement -I optionDenis Vlasenko2006-09-021-0/+1
|
* - patch from Csaba Henk to make the "User-Agent" header field configurable.Bernhard Reutner-Fischer2006-09-021-1/+3
|
* - pull from busybox_scratch: r15829:15850Bernhard Reutner-Fischer2006-08-283-16/+24
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Various fixes, cleanups and shrinkage: saves 952 Bytes: text data bss dec hex filename 1087742 15853 790632 1894227 1ce753 ../busybox/busybox.old 1086790 15853 790632 1893275 1ce39b busybox via: # scripts/bloat-o-meter ../busybox/busybox_unstripped.old busybox_unstripped function old new delta ipcrm_main 756 822 +66 getval - 61 +61 maybe_set_utc - 40 +40 udhcpc_main 2896 2912 +16 md5_hash_block 428 437 +9 opt 8 16 +8 qgravechar 106 110 +4 make_bitmap 292 295 +3 inflate_unzip 2056 2059 +3 add_partition 1412 1414 +2 __parsespent 156 158 +2 qrealloc 41 42 +1 format - 1 +1 catv_main 313 314 +1 watch_main 293 292 -1 varunset 81 80 -1 part 1 - -1 check_if_skip 837 836 -1 start_stop_daemon_main 840 837 -3 create_lost_and_found 175 172 -3 supress_non_delimited_lines 4 - -4 static.l 4 - -4 static.c 5 1 -4 bsd_sum_file 237 233 -4 eval2 338 332 -6 arithmetic_common 166 158 -8 cmpfunc 22 5 -17 cksum_main 294 275 -19 cmp_main 465 439 -26 dd_main 1535 1508 -27 rmmod_main 376 333 -43 cut_file 727 644 -83 ipcs_main 3809 3721 -88 cut_main 722 614 -108 date_main 1443 1263 -180 remove_ids 222 - -222 ------------------------------------------------------------------------------ (add/remove: 3/4 grow/shrink: 11/18 up/down: 217/-853) Total: -636 bytes
* No real need for my_query_module() and this eliminates some type-punnedRob Landley2006-08-281-2/+0
| | | | pointer warning on certain gcc versions (and saves 38 bytes).
* Michael Opdenacker contributed a readahead applet.Rob Landley2006-08-202-0/+7
|
* Ok, features.h already defines _OPEN_SOURCE (and complains if it's alreadyRob Landley2006-08-101-1/+0
| | | | | defined), yet it's not doing it for scripts/individual for some reason. (I hate fighting with header files.)
* Another whack at scripts/individual. Now builds 212 applets.Rob Landley2006-08-092-0/+3
|