aboutsummaryrefslogtreecommitdiff
path: root/libbb (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* od: provide full-blown od from coreutils if CONFIG_DESKTOPDenis Vlasenko2006-10-101-0/+6
|
* fixes from Vladimir Dronnikov <dronnikov@gmail.ru>Denis Vlasenko2006-10-101-2/+7
|
* start_stop_daemon: add -N <nice> compatDenis Vlasenko2006-10-081-0/+5
| | | | | [re]nice: add support for -nNNN w/o spaces, -NNN (nice only), simplified code
* correct largefile support, add comments about it.Denis Vlasenko2006-10-082-6/+8
|
* attempt to regularize atoi mess.Denis Vlasenko2006-10-087-261/+326
|
* dnsd fix; option_mask32 added. dnsd needs more love.Denis Vlasenko2006-10-061-0/+4
|
* httpd: add -u user[:grp] supportDenis Vlasenko2006-10-051-2/+3
|
* build system overhaulDenis Vlasenko2006-10-0511-423/+87
|
* bb_applet_name -> applet_nameDenis Vlasenko2006-10-033-5/+5
|
* getopt_ulflags -> getopt32.Denis Vlasenko2006-10-032-75/+72
| | | | | | | | 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-036-6/+6
|
* fdformat: remove redundant checkDenis Vlasenko2006-10-031-1/+1
|
* random style fixesDenis Vlasenko2006-10-032-3/+3
|
* runit/chpst: "change process state" utilityDenis Vlasenko2006-10-032-27/+28
| | | | It's "nice" on steroids - can set uid/gid, mem/cpu limits etc. +3.5k
* sed: unbreak multiple -e, -f option handling (my fault)Denis Vlasenko2006-10-011-3/+3
|
* lsmod: repair indentationDenis Vlasenko2006-09-301-2/+2
| | | | httpd: ifdef CONFIG -> if ENABLE (shorted, catched typos)
* Yet another silly little byte saving. couldn't -> cannotDenis Vlasenko2006-09-291-1/+1
|
* top: add support for -b, -n <iterations>Denis Vlasenko2006-09-291-8/+0
|
* getopt_ulflags: fix indentation in comment (needs to be 8 _spaces_Denis Vlasenko2006-09-291-183/+189
| | | | | in order to look correct to both 4 tab and 8 tab population). Add comment about :: (which indicates optional argument).
* getopt_ulflags: formatting fixesDenis Vlasenko2006-09-291-71/+71
|
* xargs: simplify option parsingDenis Vlasenko2006-09-291-0/+1
|
* Tried to find sha1_crypt - nope... ok, save few bytes in md5_sha1_sum.cDenis Vlasenko2006-09-281-17/+16
| | | | (time to sleep, 02:28 in the morning)...
* usage.h: fix compile-time bugs exposed by previous changeDenis Vlasenko2006-09-271-3/+1
|
* kill: fix bugs (kill -l output was horrible), fix style, constify dataDenis Vlasenko2006-09-271-7/+6
|
* process utilities related style cleanupDenis Vlasenko2006-09-271-9/+8
|
* wget: add (configurable) large file support. Run tested.Denis Vlasenko2006-09-261-0/+34
|
* wget: fix bug where wget creates null file if there is no remote one.Denis Vlasenko2006-09-231-1/+1
| | | | add O_LARGEFILE support (not run tested :).
* remove unneeded #includes, fix indentationDenis Vlasenko2006-09-231-22/+17
|
* correct_password: undo whitespace damage.Denis Vlasenko2006-09-231-25/+13
| | | | vlock + correct_password: fix incorrect line breaks in messages.
* bb_askpass: shorten static password buffer. 256 is way too large.Denis Vlasenko2006-09-232-23/+19
| | | | | simplify code a bit.
* losetup: getopt_ulflags'ification + small fix for perror_nomsgDenis Vlasenko2006-09-221-1/+3
|
* Teach get_terminal_width_height to fall back to $LINES and $COLUMNS whenRob Landley2006-09-203-37/+27
| | | | used via things like a serial console.
* change char *string = "foo" -> char string[] = "foo"Denis Vlasenko2006-09-192-27/+27
| | | | | | | | | | | | | | | | | | 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-177-14/+14
|
* style fixesDenis Vlasenko2006-09-171-5/+4
|
* Strangely, using // in the comments I added was not a persistent accident.Rob Landley2006-09-141-65/+62
|
* - fix copy'n paste errors that got introduced when switching to the shorter ↵Bernhard Reutner-Fischer2006-09-133-3/+3
| | | | | | boilerplate. No object code changes.
* Remove pointless "const". Bloatcheck says 0 bytes difference.Rob Landley2006-09-121-1/+1
|
* - small trivia to be gentle to gcc-2.95.x which had no va_copy but only ↵Bernhard Reutner-Fischer2006-09-124-19/+2
| | | | __va_copy.
* - fix warning about discarding qualifiers in initializationBernhard Reutner-Fischer2006-09-121-1/+1
|
* - merge xstat.c into xfuncs.cBernhard Reutner-Fischer2006-09-113-13/+11
|
* tar: fix "xopen with O_CREAT" warning, improve zero padding writeDenis Vlasenko2006-09-091-8/+4
| | | | | (was doing zillions of 1-byte write syscalls)
* few random readability enhansements. No code changesDenis Vlasenko2006-09-081-0/+1
|
* login: style fixesDenis Vlasenko2006-09-081-6/+6
|
* getty, sulogin: convert to using bb_msg for syslog outputDenis Vlasenko2006-09-078-5/+17
|
* fix if (ENABLE_FEATURE_SYSLOG & (...)) - should be &&Denis Vlasenko2006-09-072-2/+2
|
* Add CONFIG_FEATURE_SYSLOG which controls whetherDenis Vlasenko2006-09-072-2/+2
| | | | | | | | bb_xx_msg will ever try to send output to syslog. Add "select CONFIG_FEATURE_SYSLOG" to relevant applets. This allows to omit syslog code if we do not have any syslog-capable applets in the build.
* adding files missed in prev updates (forgot about svn add)Denis Vlasenko2006-09-072-0/+53
|
* removed a lot of trailing \n in bb_msg() calls. It is addedDenis Vlasenko2006-09-061-1/+1
| | | | | automatically by function itself.
* Implement optional syslog logging using ordinaryDenis Vlasenko2006-09-0610-27/+40
| | | | | | bb_xx_msg calls, and convert networking/* to it. The rest of bbox will be converted gradually.