aboutsummaryrefslogtreecommitdiff
path: root/libbb (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* wget: wget $'-\207' ... should not be allowed to work. ever. :)Denis Vlasenko2006-10-252-20/+34
| | | | | So fix wget & getopt32. Also fix multiple --header options order: add and use rev_llist.
* cp: add support for -s, -l. Fix free(nonmalloc) bug.Denis Vlasenko2006-10-211-84/+126
| | | | | Add doc on POSIX's rules on -i and -f (insane!). ln: make "ln dangling_symlink new_link" work.
* readlink: do not emit errors if file doesnt not exist / not a linkDenis Vlasenko2006-10-201-0/+9
| | | | getopt32: add =N support
* message string changes, mostly for consistency, also -32 bytes in .rodataDenis Vlasenko2006-10-203-4/+4
|
* nc: fix 2 my own buglets, and few someone else's too.Denis Vlasenko2006-10-161-1/+1
|
* grep: add support for -rDenis Vlasenko2006-10-141-7/+7
|
* add open_read_close() and similar stuffDenis Vlasenko2006-10-146-103/+144
|
* xread/write can use full_read/write (smaller code)Denis Vlasenko2006-10-123-12/+8
|
* bb_get_[chomped]line_from_file wasn't descriptive enough.Denis Vlasenko2006-10-121-2/+2
| | | | Renaming...
* cut, mount: small improvementsDenis Vlasenko2006-10-121-0/+1
|
* small style fixesDenis Vlasenko2006-10-123-5/+9
|
* execable: no need to check getenv for NULL, it works anyway.Denis Vlasenko2006-10-121-2/+1
|
* execable.c: forgot to do "svn add" again...Denis Vlasenko2006-10-121-0/+62
|
* ifupdown: stop emitting annoying/misleading error messages.Denis Vlasenko2006-10-111-1/+1
| | | | Patch by Gabriel Somlo <somlo at cmu.edu>
* nmeter: new applet. ~4kDenis Vlasenko2006-10-111-10/+8
| | | | Fix build proble on x86_64
* 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
|