aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
* ash: fix bad interaction between ash -c '....&' and bash compatDenis Vlasenko2008-11-251-2/+6
|
* timeout: fix a few bugs. vda is stupidDenis Vlasenko2008-11-241-115/+2
|
* trim help text a bitDenis Vlasenko2008-11-242-3/+3
|
* timeout: new applet. 370 bytes. by Roberto Foglietta.Denis Vlasenko2008-11-248-4/+247
|
* vi: speedup and code shrink (Walter Harms)Denis Vlasenko2008-11-243-34/+32
| | | | | | networking/interface.c: silence warning (Vladimir) wget: more robust EINTR detection
* strings: code shrink -22 bytes by TitoDenis Vlasenko2008-11-231-5/+4
|
* diff: emit /dev/null if diff -rN diffs a file against /dev/nullDenis Vlasenko2008-11-231-9/+7
| | | | | | function old new delta diffreg 1782 1786 +4
* - documentation fixBernhard Reutner-Fischer2008-11-221-1/+1
|
* httpd: set $HOST to Host: header value. +83 bytes.Denis Vlasenko2008-11-221-0/+5
| | | | | by Tobias Poschwatta (tp AT fonz.de)
* modutils-24: small fixes by Harald Kuthe (harald-tuxbox AT arcor.de)Denis Vlasenko2008-11-221-21/+13
| | | | | | | | | | function old new delta obj_load 819 832 +13 obj_allocate_commons 488 462 -26 bb_init_module_24 4800 4759 -41 ------------------------------------------------------------------------------ (add/remove: 0/0 grow/shrink: 1/2 up/down: 13/-67) Total: -54 bytes
* networking/interface.c: better readability (by Walter Harms)Denis Vlasenko2008-11-222-76/+86
| | | | | mkfs_minix: whitespace fix
* tftpd: can also have TFTP_DEBUGDenis Vlasenko2008-11-221-1/+1
|
* insmod: clarify module_name / file_name distinctionDenis Vlasenko2008-11-224-11/+23
|
* ash: NTO2 needs #if ENABLE_ASH_BASH_COMPATDenis Vlasenko2008-11-221-0/+2
|
* ash: fix miscalculation of memory needed for eval treeDenis Vlasenko2008-11-211-33/+35
| | | | | found by Timo Teras (timo.teras AT iki.fi)
* dpkg: better and shorter code to compare versionsDenis Vlasenko2008-11-201-68/+59
| | | | | | | | | | | | | (taken from "official" dpkg). By Eugene T. Bordenkircher (eugebo AT gmail.com) function old new delta order - 48 +48 test_version 273 276 +3 version_compare_part 396 187 -209 ------------------------------------------------------------------------------ (add/remove: 1/0 grow/shrink: 1/1 up/down: 51/-209) Total: -158 bytes
* inotifyd: exit if x event happened for all filesDenis Vlasenko2008-11-202-22/+36
| | | | | | | | | | | | | fix FIONREAD parameter type fix default mask code shrink help text function old new delta inotifyd_main 497 506 +9 packed_usage 25446 25431 -15 ------------------------------------------------------------------------------ (add/remove: 0/0 grow/shrink: 1/1 up/down: 9/-15) Total: -6 bytes
* vi: fix several instances of major goof: when text grows, text[]Denis Vlasenko2008-11-191-45/+78
| | | | | | | | | | | | | | | | might get reallocated! We were keeping around pointers to old place... function old new delta colon 3017 3037 +20 char_insert 336 354 +18 stupid_insert 18 24 +6 string_insert 89 94 +5 do_cmd 4461 4465 +4 file_insert 328 329 +1 text_hole_make 134 120 -14 ------------------------------------------------------------------------------ (add/remove: 0/0 grow/shrink: 6/1 up/down: 54/-14) Total: 40 bytes
* klogd: fix small buglet in previous commitDenis Vlasenko2008-11-191-0/+1
|
* klogctl: fix a problem where we don't terminate read data with '\0'Denis Vlasenko2008-11-191-20/+17
| | | | | | | | and then misinterpret it. Code shrink while at it. function old new delta klogd_main 404 362 -42
* inotify: add x, o, and u eventsDenis Vlasenko2008-11-172-23/+36
|
* nslookup: glibc + IPv6 address of DNS server don't mix (yet)Denis Vlasenko2008-11-171-4/+9
|
* id: do not abort build if we use internal password/group functions.Denis Vlasenko2008-11-171-0/+2
|
* libbb: replace some memmove's with memcpy's (Ron (ron AT debian.org))Denis Vlasenko2008-11-161-6/+6
| | | | | bb_dump_dump 2674 2611 -63
* nslookup: allow usage of IPv6 addresses or hostnamesDenis Vlasenko2008-11-161-11/+26
| | | | | | for DNS server name; allow for port specification. Tested to work: "nslookup google.com [::1]:5353"
* id: abort the build of uclibc is less than 0.9.30Denis Vlasenko2008-11-161-0/+6
|
* man: better check for duplicated MANPATH. Also -10 bytes.Denis Vlasenko2008-11-161-47/+56
|
* inotifyd: fix "inotifyd with no params" caseDenis Vlasenko2008-11-142-2/+2
|
* inotify: document waiting behaviorDenis Vlasenko2008-11-142-5/+6
|
* inotify: fix buffer overflow and "unreaped zombies" problemDenis Vlasenko2008-11-141-22/+29
|
* ifupdown.c: allow options to udhcpc to be configurable from .configWade Berrier2008-11-142-2/+13
| | | | | | | | | | This allows more control over options that are passed to udhcpc that are not configurable via /etc/network/interfaces. Example: rather than quit when an initial lease isn't found, you could use "--background" so that udhcpc keeps running and continually attempts to get an ip. That way, when you plug in the ethernet after powering on the device, you'll still get an ip.
* stat: fix compile breakage (get_f_fsid() is used even if !FEATURE_STAT_FORMAT)Denis Vlasenko2008-11-131-14/+14
|
* libbb: sha_crypt -123 bytesDenis Vlasenko2008-11-131-30/+34
|
* libbb/pw_encrypt_sha: -28 bytesDenis Vlasenko2008-11-131-11/+9
|
* libbb: remove glibc-style bloat from sha_crypt. -1130 bytes.Denis Vlasenko2008-11-132-6/+44
| | | | | cryptpw: add more difficult test vectors.
* arp: stop using globalsDenis Vlasenko2008-11-132-33/+50
| | | | | | | | | | | | | | function old new delta hw_set 1 - -1 arp_main 1559 1558 -1 sockfd 8 4 -4 hw 4 - -4 device 4 - -4 ap 4 - -4 packed_usage 25402 25393 -9 ------------------------------------------------------------------------------ (add/remove: 0/4 grow/shrink: 0/3 up/down: 0/-27) Total: -27 bytes
* gzip: fix gzip -dc case caused by using stale getopt stateDenis Vlasenko2008-11-121-6/+19
|
* seq: shrink by 10 bytesDenis Vlasenko2008-11-121-8/+9
|
* correct help textsDenis Vlasenko2008-11-121-10/+7
|
* telnetd: fix compile problem for non-standalone telnetdDenis Vlasenko2008-11-121-10/+15
|
* - add support for seq -s <separator>Bernhard Reutner-Fischer2008-11-122-6/+12
|
* - add seq -w support (Natanael Copa)Bernhard Reutner-Fischer2008-11-123-6/+19
|
* modprobe-small: fix failure to load when no arguments are givenDenis Vlasenko2008-11-122-45/+63
| | | | | modutils-24: fix bad interaction of xzalloc with xrealloc_vector; style fixes
* cksum, printenv: report errors via exitcodeDenis Vlasenko2008-11-112-3/+10
| | | | | | | function old new delta cksum_main 296 315 +19 printenv_main 74 86 +12
* head: report file open errors with exitcode 1 (was happily returning 0)Denis Vlasenko2008-11-111-4/+4
| | | | | head_main 409 417 +8
* expr: on error, exit with exitcode 2Denis Vlasenko2008-11-111-7/+4
| | | | | expr_main 101 110 +9
* stat: make stat -f show filesystem "ID:" as coreutils doesDenis Vlasenko2008-11-111-6/+21
| | | | | print_statfs 358 370 +12
* env: support -uVAR=VALDenis Vlasenko2008-11-111-8/+10
| | | | | | function old new delta env_main 245 233 -12
* du: fix "du /dir /dir" caseDenis Vlasenko2008-11-112-48/+36
| | | | | | | | | reset_ino_dev_hashtable - 84 +84 du 388 376 -12 du_main 327 301 -26 ------------------------------------------------------------------------------ (add/remove: 1/0 grow/shrink: 0/2 up/down: 84/-38) Total: 46 bytes
* runsvdir: straighten some convoluted code. logic is unchangedDenis Vlasenko2008-11-111-8/+6
|