summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
* usage: trim a bitDenis Vlasenko2007-09-051-34/+32
| | | | | | | | | | | | function old new delta packed_usage 23113 23011 -102 ------------------------------------------------------------------------------ (add/remove: 0/0 grow/shrink: 0/1 up/down: 0/-102) Total: -102 bytes text data bss dec hex filename 770610 1051 10764 782425 bf059 busybox_old 770508 1051 10764 782323 beff3 busybox_unstripped
* watchdog: allow millisecond spec (-t 250ms)Denis Vlasenko2007-09-052-14/+22
| | | | | | | | | | | | function old new delta packed_usage 23069 23113 +44 static.suffixes - 24 +24 watchdog_main 147 160 +13 static.V - 1 +1 ------------------------------------------------------------------------------ (add/remove: 2/0 grow/shrink: 2/0 up/down: 82/0) Total: 82 bytes
* tar + gzip/bzip2/etc: support NOMMU machines (by Alex Landau ↵Denis Vlasenko2007-09-059-42/+92
| | | | <landau_alex@yahoo.com>)
* busybox --install -s: prevent puzzling "/bin/busybox: Invalid argument" messageDenis Vlasenko2007-09-053-14/+24
| | | | | libbb: comment out realpath, add readlink which doesn't warn
* tar: conditionally don't wait for vforked child to exec, as it alwaysDenis Vlasenko2007-09-043-37/+54
| | | | | | | | | | | | | | | works right on Linux, and anyway mayresult only on less-than-clear error message only, it will not cause tar to misbehave. function old new delta open_transformer 98 80 -18 writeTarFile 714 547 -167 ------------------------------------------------------------------------------ (add/remove: 0/0 grow/shrink: 0/2 up/down: 0/-185) Total: -185 bytes text data bss dec hex filename 770651 1051 10764 782466 bf082 busybox_old 770463 1051 10764 782278 befc6 busybox_unstripped
* mount: ignore NFS bg option on NOMMU machinesDenis Vlasenko2007-09-041-2/+13
|
* du: remove statics (by Bernhard Fischer <rep.dot.nop@gmail.com>)Denis Vlasenko2007-09-031-64/+64
| | | | | | | | | | | | | | | | | | | | | | | | | $ ./.cmk bloatcheck function old new delta du_main 340 348 +8 print 39 40 +1 status 129 125 -4 slink_depth 4 - -4 print_files 4 - -4 one_file_system 4 - -4 max_print_depth 4 - -4 du_depth 4 - -4 disp_hr 4 - -4 count_hardlinks 4 - -4 du 407 401 -6 dir_dev 8 - -8 ------------------------------------------------------------------------------ (add/remove: 0/8 grow/shrink: 2/2 up/down: 9/-46) Total: -37 bytes text data bss dec hex filename 864 12 28 904 388 busybox.t3/coreutils/du.o 867 0 0 867 363 busybox.t4/coreutils/du.o 770647 1063 10788 782498 bf0a2 busybox.t3/busybox_unstripped 770651 1051 10764 782466 bf082 busybox.t4/busybox_unstripped
* login: do reject wrong passwords with PAM authDenis Vlasenko2007-09-031-12/+21
|
* trylink: reinstate accidentally deleted --verboseDenis Vlasenko2007-09-031-34/+17
| | | | | trylink: remove commented-out parts
* - IFUPDOWN_IFSTATE_PATH depends on IFUPDOWNBernhard Reutner-Fischer2007-09-021-0/+1
|
* - Generally strip off -l that does not pull in a lib.Bernhard Reutner-Fischer2007-09-021-15/+11
| | | | If l_list is non-empty then add the group flags.
* - fix bug where we linked again -lm even though it is not needed.Bernhard Reutner-Fischer2007-09-021-2/+11
| | | | | | | | | For BBOX_LIB_LIST="crypt m" trylink ... with just applet true, we pulled in libm because in this case we tried to use invalid flags (plain "-l" without a lib) which of course failed, thus the script thought that -lm was needed. The fix is not to pass "-l" without a lib if we are about to check if any or the last remaining lib is really needed.
* isrv: use monotonic_secDenis Vlasenko2007-08-312-24/+30
| | | | | runsv: do not use clock_gettime if !MONOTONIC_CLOCK
* top: another readability fixDenis Vlasenko2007-08-291-3/+2
|
* vsz and rss are unsigned longs (ulong ~= width of void* =>Denis Vlasenko2007-08-292-5/+5
| | | | | | | suitable for expressing total RAM in system). We account for "32 bit in 64 bit" systems by storing kbytes, not bytes there. Should allow for up to ~2000 Gb RAM on 32 bits.
* top: don't wait before final bailout (try top -b -n1).Denis Vlasenko2007-08-291-37/+22
| | | | | top: make code a bit more readable.
* mount: allow (and ignore) -iDenis Vlasenko2007-08-291-1/+2
|
* smart_ulltoa5: emit small letters k,m,g... - makes topDenis Vlasenko2007-08-281-1/+2
| | | | | more readable
* top: use poll instead of select for waiting on one descriptorDenis Vlasenko2007-08-283-38/+48
| | | | | | | | | | | | | | | | | | | | | smart_ulltoa5: make it more cryptic. -50 bytes. function old new delta passwd_main 1095 1103 +8 getNum 557 565 +8 buffer_fill_and_print 73 76 +3 udhcpc_main 2393 2395 +2 mkfs_minix_main 3071 3070 -1 dname_enc 377 373 -4 expmeta 480 472 -8 smart_ulltoa5 334 283 -51 top_main 911 815 -96 ------------------------------------------------------------------------------ (add/remove: 0/0 grow/shrink: 4/5 up/down: 21/-160) Total: -139 bytes text data bss dec hex filename 770872 1063 10788 782723 bf183 busybox_old 770732 1063 10788 782583 bf0f7 busybox_unstripped
* mount: don't close fd twice in NFS codeDenis Vlasenko2007-08-281-5/+8
|
* cp: fix recursion check to not waste bytes remembering names of dirsDenis Vlasenko2007-08-271-6/+5
|
* cp: detect and prevent infinite recursionDenis Vlasenko2007-08-271-17/+35
|
* ps: fix RSS parsing (rss field in /proc/PID/stat is in pages, not bytes)Denis Vlasenko2007-08-262-7/+18
|
* add links to vda's pet projectsDenis Vlasenko2007-08-261-1/+4
|
* install: shrink a bit, fix two bugletsDenis Vlasenko2007-08-261-29/+38
|
* Start a small document "why ifupdown is bad"Denis Vlasenko2007-08-251-0/+44
|
* make copy_file() a bit easier to understand, and smallerDenis Vlasenko2007-08-254-71/+68
| | | | | | | | | | | function old new delta copy_file 1565 1447 -118 ------------------------------------------------------------------------------ (add/remove: 0/0 grow/shrink: 0/1 up/down: 0/-118) Total: -118 bytes text data bss dec hex filename 770938 1063 10788 782789 bf1c5 busybox_old 770814 1063 10788 782665 bf149 busybox_unstripped
* support "#!/bin/busybox"-style wrappers. Needed for SELinux.Denis Vlasenko2007-08-255-37/+94
| | | | | Patch by Yuichi Nakamura <ynakam@hitachisoft.jp>
* - add Yann's email-addrBernhard Reutner-Fischer2007-08-251-1/+1
|
* cp,mv: simpler arg[cv] handling -> smallish code savingsDenis Vlasenko2007-08-244-39/+45
|
* - cosmetic html cleanupBernhard Reutner-Fischer2007-08-241-2/+2
|
* - obfuscate addrs a little bitBernhard Reutner-Fischer2007-08-241-48/+48
|
* cp: make POSIX-me-harder mode complain with a bit less insane messageDenis Vlasenko2007-08-241-7/+8
|
* spelling fixes to websiteDenis Vlasenko2007-08-241-1/+1
|
* Cosmetic fixes to webpageDenis Vlasenko2007-08-241-2/+2
|
* add missed attribution to httpd sendfile supportDenis Vlasenko2007-08-241-1/+1
|
* Start 1.8.x cycleDenis Vlasenko2007-08-241-1/+1
|
* news.html: add 1.7.0 announcementDenis Vlasenko2007-08-241-0/+148
|
* Update defconfig; fix commentsDenis Vlasenko2007-08-243-10/+21
|
* build system: stop moaning about unset integer CONFIGs.Denis Vlasenko2007-08-231-1/+2
|
* *: compile fixes for 64-bit buildDenis Vlasenko2007-08-236-39/+41
|
* httpd: code shrink of dir indexer exampleDenis Vlasenko2007-08-231-185/+196
|
* login: fixes for PAM buildDenis Vlasenko2007-08-221-2/+6
|
* httpd: style fix in indexer exampleDenis Vlasenko2007-08-221-4/+4
|
* httpd: replace shell-based dir indexer cgi example with C-based one.Denis Vlasenko2007-08-222-50/+331
|
* httpd: fix buglet in hex conversion. Remove alloca NULL checksDenis Vlasenko2007-08-212-30/+30
| | | | | | (never happens, app just crashes if stack overflows) svlogd: cosmetic messages and style fixes
* login: optional support for PAMDenis Vlasenko2007-08-213-10/+71
|
* s/communal/common/ part 2Denis Vlasenko2007-08-211-0/+0
|
* s/communal/common/Denis Vlasenko2007-08-211-2/+2
|
* httpd: add optional support for error pages Denis Vlasenko2007-08-212-85/+166
| | | | | (by Pierre Metras <genepi@sympatico.ca>)